diff --git a/actions/apiaccountratelimitstatus.php b/actions/apiaccountratelimitstatus.php index 8d7f89eadc..8490e2965c 100644 --- a/actions/apiaccountratelimitstatus.php +++ b/actions/apiaccountratelimitstatus.php @@ -66,6 +66,7 @@ class ApiAccountRateLimitStatusAction extends ApiBareAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apiaccountupdatedeliverydevice.php b/actions/apiaccountupdatedeliverydevice.php index a36806b216..57e4fbfa00 100644 --- a/actions/apiaccountupdatedeliverydevice.php +++ b/actions/apiaccountupdatedeliverydevice.php @@ -88,7 +88,7 @@ class ApiAccountUpdateDeliveryDeviceAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( - // TRANS: Client error displayed handling a non-existing API method. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apiaccountupdateprofile.php b/actions/apiaccountupdateprofile.php index d0b9abe9b7..a572131f18 100644 --- a/actions/apiaccountupdateprofile.php +++ b/actions/apiaccountupdateprofile.php @@ -90,7 +90,7 @@ class ApiAccountUpdateProfileAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apiaccountupdateprofilebackgroundimage.php b/actions/apiaccountupdateprofilebackgroundimage.php index f26c30198d..36eaa6c411 100644 --- a/actions/apiaccountupdateprofilebackgroundimage.php +++ b/actions/apiaccountupdateprofilebackgroundimage.php @@ -88,7 +88,7 @@ class ApiAccountUpdateProfileBackgroundImageAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apiaccountupdateprofilecolors.php b/actions/apiaccountupdateprofilecolors.php index 4c102c4090..621b05b0d9 100644 --- a/actions/apiaccountupdateprofilecolors.php +++ b/actions/apiaccountupdateprofilecolors.php @@ -111,7 +111,7 @@ class ApiAccountUpdateProfileColorsAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( - // TRANS: Client error displayed trying to execute an unknown API method updating profile colours. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apiaccountverifycredentials.php b/actions/apiaccountverifycredentials.php index 26d4e2fc5c..359939b0cc 100644 --- a/actions/apiaccountverifycredentials.php +++ b/actions/apiaccountverifycredentials.php @@ -64,7 +64,7 @@ class ApiAccountVerifyCredentialsAction extends ApiAuthAction parent::handle($args); if (!in_array($this->format, array('xml', 'json'))) { - // TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); return; } diff --git a/actions/apiblockcreate.php b/actions/apiblockcreate.php index 6942a53bb8..766d91bd41 100644 --- a/actions/apiblockcreate.php +++ b/actions/apiblockcreate.php @@ -92,7 +92,7 @@ class ApiBlockCreateAction extends ApiAuthAction } if (empty($this->user) || empty($this->other)) { - // TRANS: Client error displayed when trying to block a non-existing user or a user from another site. + // TRANS: Client error displayed when trying to block a non-existing user or a user from another site. $this->clientError(_('No such user.'), 404, $this->format); return; } diff --git a/actions/apidirectmessage.php b/actions/apidirectmessage.php index e072e27b83..584decc747 100644 --- a/actions/apidirectmessage.php +++ b/actions/apidirectmessage.php @@ -153,7 +153,7 @@ class ApiDirectMessageAction extends ApiAuthAction $this->showJsonDirectMessages(); break; default: - // TRANS: Client error given when an API method was not found (404). + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); break; } diff --git a/actions/apifavoritecreate.php b/actions/apifavoritecreate.php index b2f6266ebf..b890d4af69 100644 --- a/actions/apifavoritecreate.php +++ b/actions/apifavoritecreate.php @@ -94,7 +94,7 @@ class ApiFavoriteCreateAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apifavoritedestroy.php b/actions/apifavoritedestroy.php index f86c985dc0..db121ac882 100644 --- a/actions/apifavoritedestroy.php +++ b/actions/apifavoritedestroy.php @@ -94,7 +94,7 @@ class ApiFavoriteDestroyAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apifriendshipscreate.php b/actions/apifriendshipscreate.php index 89557f8392..9932809818 100644 --- a/actions/apifriendshipscreate.php +++ b/actions/apifriendshipscreate.php @@ -95,7 +95,7 @@ class ApiFriendshipsCreateAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apifriendshipsdestroy.php b/actions/apifriendshipsdestroy.php index a5dff08bab..1534aa799f 100644 --- a/actions/apifriendshipsdestroy.php +++ b/actions/apifriendshipsdestroy.php @@ -95,7 +95,7 @@ class ApiFriendshipsDestroyAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apifriendshipsshow.php b/actions/apifriendshipsshow.php index 6b069c4fcf..1eaca49f0e 100644 --- a/actions/apifriendshipsshow.php +++ b/actions/apifriendshipsshow.php @@ -120,7 +120,7 @@ class ApiFriendshipsShowAction extends ApiBareAuthAction parent::handle($args); if (!in_array($this->format, array('xml', 'json'))) { - // TRANS: Client error displayed trying to execute an unknown API method showing friendship. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), 404); return; } diff --git a/actions/apigroupcreate.php b/actions/apigroupcreate.php index d01504bc80..8615bcff7e 100644 --- a/actions/apigroupcreate.php +++ b/actions/apigroupcreate.php @@ -134,7 +134,7 @@ class ApiGroupCreateAction extends ApiAuthAction break; default: $this->clientError( - // TRANS: Client error given when an API method was not found (404). + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apigroupismember.php b/actions/apigroupismember.php index 8d31c65ddb..13ed9e1fbf 100644 --- a/actions/apigroupismember.php +++ b/actions/apigroupismember.php @@ -111,7 +111,7 @@ class ApiGroupIsMemberAction extends ApiBareAuthAction break; default: $this->clientError( - // TRANS: Client error displayed trying to execute an unknown API method showing group membership. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 400, $this->format diff --git a/actions/apigroupjoin.php b/actions/apigroupjoin.php index 7124a4b0f0..6f3df0d8cd 100644 --- a/actions/apigroupjoin.php +++ b/actions/apigroupjoin.php @@ -144,7 +144,7 @@ class ApiGroupJoinAction extends ApiAuthAction break; default: $this->clientError( - // TRANS: Client error displayed trying to execute an unknown API method joining a group. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apigroupleave.php b/actions/apigroupleave.php index 35a4e04d78..9d2825b00e 100644 --- a/actions/apigroupleave.php +++ b/actions/apigroupleave.php @@ -134,7 +134,7 @@ class ApiGroupLeaveAction extends ApiAuthAction break; default: $this->clientError( - // TRANS: Client error displayed trying to execute an unknown API method leaving a group. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apigrouplist.php b/actions/apigrouplist.php index f80fbce932..c7518ca129 100644 --- a/actions/apigrouplist.php +++ b/actions/apigrouplist.php @@ -67,6 +67,7 @@ class ApiGroupListAction extends ApiBareAuthAction $this->user = $this->getTargetUser(null); if (empty($this->user)) { + // TRANS: Client error displayed when user not found for an action. $this->clientError(_('No such user.'), 404, $this->format); return false; } @@ -130,7 +131,7 @@ class ApiGroupListAction extends ApiBareAuthAction break; default: $this->clientError( - // TRANS: Client error displayed trying to execute an unknown API method checking group membership. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apigrouplistall.php b/actions/apigrouplistall.php index d05baa0992..65ff9ae59a 100644 --- a/actions/apigrouplistall.php +++ b/actions/apigrouplistall.php @@ -116,7 +116,7 @@ class ApiGroupListAllAction extends ApiPrivateAuthAction break; default: $this->clientError( - // TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apigroupmembership.php b/actions/apigroupmembership.php index 939d22d757..7ad8fb767e 100644 --- a/actions/apigroupmembership.php +++ b/actions/apigroupmembership.php @@ -101,7 +101,7 @@ class ApiGroupMembershipAction extends ApiPrivateAuthAction break; default: $this->clientError( - // TRANS: Client error displayed trying to execute an unknown API method showing group membership. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apigroupprofileupdate.php b/actions/apigroupprofileupdate.php index 9a629a47d7..379e01a428 100644 --- a/actions/apigroupprofileupdate.php +++ b/actions/apigroupprofileupdate.php @@ -85,6 +85,7 @@ class ApiGroupProfileUpdateAction extends ApiAuthAction if ($_SERVER['REQUEST_METHOD'] != 'POST') { $this->clientError( + // TRANS: Client error message. POST is a HTTP command. It should not be translated. _('This method requires a POST.'), 400, $this->format ); @@ -93,7 +94,7 @@ class ApiGroupProfileUpdateAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( - // TRANS: Client error displayed when using an unsupported API format. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format @@ -211,7 +212,7 @@ class ApiGroupProfileUpdateAction extends ApiAuthAction $this->showSingleJsonGroup($this->group); break; default: - // TRANS: Client error displayed when using an unsupported API format. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), 404, $this->format); break; } diff --git a/actions/apigroupshow.php b/actions/apigroupshow.php index 471aa141f9..a7385ffaaf 100644 --- a/actions/apigroupshow.php +++ b/actions/apigroupshow.php @@ -110,7 +110,7 @@ class ApiGroupShowAction extends ApiPrivateAuthAction $this->showSingleJsonGroup($this->group); break; default: - // TRANS: Client error displayed trying to execute an unknown API method showing a group. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), 404, $this->format); break; } diff --git a/actions/apihelptest.php b/actions/apihelptest.php index fbe5f12784..1bbbe572bf 100644 --- a/actions/apihelptest.php +++ b/actions/apihelptest.php @@ -80,7 +80,7 @@ class ApiHelpTestAction extends ApiPrivateAuthAction $this->endDocument('json'); } else { $this->clientError( - // TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apistatusesdestroy.php b/actions/apistatusesdestroy.php index d73e574b3c..b4a8870faa 100644 --- a/actions/apistatusesdestroy.php +++ b/actions/apistatusesdestroy.php @@ -97,7 +97,7 @@ class ApiStatusesDestroyAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( - // TRANS: Client error displayed trying to execute an unknown API method deleting a status. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404 ); diff --git a/actions/apistatusesretweets.php b/actions/apistatusesretweets.php index cc7caee19d..7220196836 100644 --- a/actions/apistatusesretweets.php +++ b/actions/apistatusesretweets.php @@ -106,7 +106,7 @@ class ApiStatusesRetweetsAction extends ApiAuthAction $this->showJsonTimeline($strm); break; default: - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); break; } diff --git a/actions/apistatusesshow.php b/actions/apistatusesshow.php index de4c4065c1..13cc88c2c7 100644 --- a/actions/apistatusesshow.php +++ b/actions/apistatusesshow.php @@ -101,7 +101,7 @@ class ApiStatusesShowAction extends ApiPrivateAuthAction parent::handle($args); if (!in_array($this->format, array('xml', 'json', 'atom'))) { - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), 404); return; } diff --git a/actions/apistatusesupdate.php b/actions/apistatusesupdate.php index 5773bdc2e8..b0f3527160 100644 --- a/actions/apistatusesupdate.php +++ b/actions/apistatusesupdate.php @@ -239,8 +239,8 @@ class ApiStatusesUpdateAction extends ApiAuthAction $this->clientError( sprintf( - // TRANS: Client error displayed when the parameter "status" is missing. - // TRANS: %d is the maximum number of character for a notice. + // TRANS: Client error displayed exceeding the maximum notice length. + // TRANS: %d is the maximum length for a notice. _m('That\'s too long. Maximum notice size is %d character.', 'That\'s too long. Maximum notice size is %d characters.', Notice::maxContent()), diff --git a/actions/apistatusnetconfig.php b/actions/apistatusnetconfig.php index b34c6cc544..7cd7c5ed6c 100644 --- a/actions/apistatusnetconfig.php +++ b/actions/apistatusnetconfig.php @@ -135,7 +135,7 @@ class ApiStatusnetConfigAction extends ApiAction break; default: $this->clientError( - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apistatusnetversion.php b/actions/apistatusnetversion.php index bc2babc3f2..3a7b150cab 100644 --- a/actions/apistatusnetversion.php +++ b/actions/apistatusnetversion.php @@ -87,7 +87,7 @@ class ApiStatusnetVersionAction extends ApiPrivateAuthAction break; default: $this->clientError( - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apisubscriptions.php b/actions/apisubscriptions.php index fc0a2638b6..84731ac00f 100644 --- a/actions/apisubscriptions.php +++ b/actions/apisubscriptions.php @@ -105,7 +105,7 @@ class ApiSubscriptionsAction extends ApiBareAuthAction parent::handle($args); if (!in_array($this->format, array('xml', 'json'))) { - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); return; } diff --git a/actions/apitimelinefavorites.php b/actions/apitimelinefavorites.php index 36fc3089f5..2c962b450a 100644 --- a/actions/apitimelinefavorites.php +++ b/actions/apitimelinefavorites.php @@ -178,7 +178,7 @@ class ApiTimelineFavoritesAction extends ApiBareAuthAction $this->raw($doc->asString()); break; default: - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); break; } diff --git a/actions/apitimelinefriends.php b/actions/apitimelinefriends.php index 0e356bb18b..00eb4de502 100644 --- a/actions/apitimelinefriends.php +++ b/actions/apitimelinefriends.php @@ -204,6 +204,8 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction $profile = $this->user->getProfile(); $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE); $sitename = common_config('site', 'name'); + // TRANS: Title of API timeline for a user and friends. + // TRANS: %s is a username. $title = sprintf(_("%s and friends"), $this->user->nickname); $taguribase = TagURI::base(); $id = "tag:$taguribase:FriendsTimeline:" . $this->user->id; @@ -272,7 +274,7 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction $this->raw($doc->asString()); break; default: - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); break; } diff --git a/actions/apitimelinehome.php b/actions/apitimelinehome.php index 023c9698a1..96642cbfab 100644 --- a/actions/apitimelinehome.php +++ b/actions/apitimelinehome.php @@ -177,7 +177,7 @@ class ApiTimelineHomeAction extends ApiBareAuthAction $this->raw($doc->asString()); break; default: - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); break; } diff --git a/actions/apitimelinementions.php b/actions/apitimelinementions.php index 2857bd41ea..ecd2a1a0e6 100644 --- a/actions/apitimelinementions.php +++ b/actions/apitimelinementions.php @@ -178,7 +178,7 @@ class ApiTimelineMentionsAction extends ApiBareAuthAction $this->raw($doc->asString()); break; default: - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); break; } diff --git a/actions/apitimelinepublic.php b/actions/apitimelinepublic.php index 353973b653..a786aa15cc 100644 --- a/actions/apitimelinepublic.php +++ b/actions/apitimelinepublic.php @@ -243,7 +243,7 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction $this->raw($doc->asString()); break; default: - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); break; } diff --git a/actions/apitimelineretweetedtome.php b/actions/apitimelineretweetedtome.php index 628dc40247..ef943f4f88 100644 --- a/actions/apitimelineretweetedtome.php +++ b/actions/apitimelineretweetedtome.php @@ -146,7 +146,7 @@ class ApiTimelineRetweetedToMeAction extends ApiAuthAction $this->raw($doc->asString()); break; default: - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); break; } diff --git a/actions/apitimelineretweetsofme.php b/actions/apitimelineretweetsofme.php index aec6877f15..d38e730ac6 100644 --- a/actions/apitimelineretweetsofme.php +++ b/actions/apitimelineretweetsofme.php @@ -101,6 +101,8 @@ class ApiTimelineRetweetsOfMeAction extends ApiAuthAction $profile = $this->auth_user->getProfile(); $subtitle = sprintf( + // TRANS: Subtitle of API time with retweets of me. + // TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. _('%1$s notices that %2$s / %3$s has repeated.'), $sitename, $this->auth_user->nickname, $profile->getBestName() ); @@ -143,7 +145,7 @@ class ApiTimelineRetweetsOfMeAction extends ApiAuthAction $this->raw($doc->asString()); break; default: - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), 404); break; } diff --git a/actions/apitimelinetag.php b/actions/apitimelinetag.php index 5fa76d0cd0..6c3b135ed9 100644 --- a/actions/apitimelinetag.php +++ b/actions/apitimelinetag.php @@ -161,7 +161,7 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction $this->raw($doc->asString()); break; default: - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); break; } diff --git a/actions/apitimelineuser.php b/actions/apitimelineuser.php index 3fe73c691c..b0681c191a 100644 --- a/actions/apitimelineuser.php +++ b/actions/apitimelineuser.php @@ -213,7 +213,7 @@ class ApiTimelineUserAction extends ApiBareAuthAction $this->raw($doc->asString()); break; default: - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); break; } diff --git a/actions/apiusershow.php b/actions/apiusershow.php index fbd4d60598..ab1bfb9c9c 100644 --- a/actions/apiusershow.php +++ b/actions/apiusershow.php @@ -96,7 +96,7 @@ class ApiUserShowAction extends ApiPrivateAuthAction } if (!in_array($this->format, array('xml', 'json'))) { - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); return; } diff --git a/actions/avatarsettings.php b/actions/avatarsettings.php index d9542a39c8..7cc55e1e3f 100644 --- a/actions/avatarsettings.php +++ b/actions/avatarsettings.php @@ -277,6 +277,7 @@ class AvatarsettingsAction extends SettingsAction $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. '. 'Try again, please.')); return; diff --git a/actions/cancelsubscription.php b/actions/cancelsubscription.php index 0cd922ff70..226fd0822e 100644 --- a/actions/cancelsubscription.php +++ b/actions/cancelsubscription.php @@ -53,7 +53,7 @@ class CancelsubscriptionAction extends Action StatusNet::setApi(true); } if (!common_logged_in()) { - // TRANS: Client error displayed when trying to leave a group while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return; } @@ -71,6 +71,7 @@ class CancelsubscriptionAction extends Action $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token. ' . 'Try again, please.')); return; diff --git a/actions/deleteapplication.php b/actions/deleteapplication.php index 9f9ac18971..8c3b8e0ba7 100644 --- a/actions/deleteapplication.php +++ b/actions/deleteapplication.php @@ -99,6 +99,7 @@ class DeleteapplicationAction extends Action // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token.')); return; } diff --git a/actions/deletenotice.php b/actions/deletenotice.php index c997bb756a..e3690c51d4 100644 --- a/actions/deletenotice.php +++ b/actions/deletenotice.php @@ -48,7 +48,7 @@ class DeletenoticeAction extends Action $this->user = common_current_user(); if (!$this->user) { - // TRANS: Error message displayed trying to delete a notice while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. common_user_error(_('Not logged in.')); exit; } @@ -174,6 +174,7 @@ class DeletenoticeAction extends Action $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. ' . 'Try again, please.')); return; diff --git a/actions/disfavor.php b/actions/disfavor.php index 39598d60bf..e9fc17c5b7 100644 --- a/actions/disfavor.php +++ b/actions/disfavor.php @@ -57,7 +57,7 @@ class DisfavorAction extends Action { parent::handle($args); if (!common_logged_in()) { - // TRANS: Client error displayed when trying to remove a favorite while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return; } diff --git a/actions/editapplication.php b/actions/editapplication.php index 4e67d9e57b..02fae3eb49 100644 --- a/actions/editapplication.php +++ b/actions/editapplication.php @@ -128,6 +128,7 @@ class EditApplicationAction extends OwnerDesignAction // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token.')); return; } diff --git a/actions/emailsettings.php b/actions/emailsettings.php index 6780928157..d515715eda 100644 --- a/actions/emailsettings.php +++ b/actions/emailsettings.php @@ -207,45 +207,45 @@ class EmailsettingsAction extends SettingsAction $this->elementStart('ul', 'form_data'); if (Event::handle('StartEmailFormData', array($this))) { - $this->elementStart('li'); - $this->checkbox('emailnotifysub', - // TRANS: Checkbox label in e-mail preferences form. - _('Send me notices of new subscriptions through email.'), - $user->emailnotifysub); - $this->elementEnd('li'); - $this->elementStart('li'); - $this->checkbox('emailnotifyfav', - // TRANS: Checkbox label in e-mail preferences form. - _('Send me email when someone '. - 'adds my notice as a favorite.'), - $user->emailnotifyfav); - $this->elementEnd('li'); - $this->elementStart('li'); - $this->checkbox('emailnotifymsg', - // TRANS: Checkbox label in e-mail preferences form. - _('Send me email when someone sends me a private message.'), - $user->emailnotifymsg); - $this->elementEnd('li'); - $this->elementStart('li'); - $this->checkbox('emailnotifyattn', - // TRANS: Checkbox label in e-mail preferences form. - _('Send me email when someone sends me an "@-reply".'), - $user->emailnotifyattn); - $this->elementEnd('li'); - $this->elementStart('li'); - $this->checkbox('emailnotifynudge', - // TRANS: Checkbox label in e-mail preferences form. - _('Allow friends to nudge me and send me an email.'), - $user->emailnotifynudge); - $this->elementEnd('li'); - $this->elementStart('li'); - $this->checkbox('emailmicroid', - // TRANS: Checkbox label in e-mail preferences form. - _('Publish a MicroID for my email address.'), - $user->emailmicroid); - $this->elementEnd('li'); - Event::handle('EndEmailFormData', array($this)); - } + $this->elementStart('li'); + $this->checkbox('emailnotifysub', + // TRANS: Checkbox label in e-mail preferences form. + _('Send me notices of new subscriptions through email.'), + $user->emailnotifysub); + $this->elementEnd('li'); + $this->elementStart('li'); + $this->checkbox('emailnotifyfav', + // TRANS: Checkbox label in e-mail preferences form. + _('Send me email when someone '. + 'adds my notice as a favorite.'), + $user->emailnotifyfav); + $this->elementEnd('li'); + $this->elementStart('li'); + $this->checkbox('emailnotifymsg', + // TRANS: Checkbox label in e-mail preferences form. + _('Send me email when someone sends me a private message.'), + $user->emailnotifymsg); + $this->elementEnd('li'); + $this->elementStart('li'); + $this->checkbox('emailnotifyattn', + // TRANS: Checkbox label in e-mail preferences form. + _('Send me email when someone sends me an "@-reply".'), + $user->emailnotifyattn); + $this->elementEnd('li'); + $this->elementStart('li'); + $this->checkbox('emailnotifynudge', + // TRANS: Checkbox label in e-mail preferences form. + _('Allow friends to nudge me and send me an email.'), + $user->emailnotifynudge); + $this->elementEnd('li'); + $this->elementStart('li'); + $this->checkbox('emailmicroid', + // TRANS: Checkbox label in e-mail preferences form. + _('Publish a MicroID for my email address.'), + $user->emailmicroid); + $this->elementEnd('li'); + Event::handle('EndEmailFormData', array($this)); + } $this->elementEnd('ul'); // TRANS: Button label to save e-mail preferences. $this->submit('save', _m('BUTTON','Save')); @@ -289,6 +289,7 @@ class EmailsettingsAction extends SettingsAction // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->show_form(_('There was a problem with your session token. '. 'Try again, please.')); return; @@ -319,48 +320,47 @@ class EmailsettingsAction extends SettingsAction */ function savePreferences() { - $user = common_current_user(); + $user = common_current_user(); - if (Event::handle('StartEmailSaveForm', array($this, &$user))) { + if (Event::handle('StartEmailSaveForm', array($this, &$user))) { + $emailnotifysub = $this->boolean('emailnotifysub'); + $emailnotifyfav = $this->boolean('emailnotifyfav'); + $emailnotifymsg = $this->boolean('emailnotifymsg'); + $emailnotifynudge = $this->boolean('emailnotifynudge'); + $emailnotifyattn = $this->boolean('emailnotifyattn'); + $emailmicroid = $this->boolean('emailmicroid'); + $emailpost = $this->boolean('emailpost'); - $emailnotifysub = $this->boolean('emailnotifysub'); - $emailnotifyfav = $this->boolean('emailnotifyfav'); - $emailnotifymsg = $this->boolean('emailnotifymsg'); - $emailnotifynudge = $this->boolean('emailnotifynudge'); - $emailnotifyattn = $this->boolean('emailnotifyattn'); - $emailmicroid = $this->boolean('emailmicroid'); - $emailpost = $this->boolean('emailpost'); + assert(!is_null($user)); // should already be checked - assert(!is_null($user)); // should already be checked + $user->query('BEGIN'); - $user->query('BEGIN'); + $original = clone($user); - $original = clone($user); + $user->emailnotifysub = $emailnotifysub; + $user->emailnotifyfav = $emailnotifyfav; + $user->emailnotifymsg = $emailnotifymsg; + $user->emailnotifynudge = $emailnotifynudge; + $user->emailnotifyattn = $emailnotifyattn; + $user->emailmicroid = $emailmicroid; + $user->emailpost = $emailpost; - $user->emailnotifysub = $emailnotifysub; - $user->emailnotifyfav = $emailnotifyfav; - $user->emailnotifymsg = $emailnotifymsg; - $user->emailnotifynudge = $emailnotifynudge; - $user->emailnotifyattn = $emailnotifyattn; - $user->emailmicroid = $emailmicroid; - $user->emailpost = $emailpost; + $result = $user->update($original); - $result = $user->update($original); + if ($result === false) { + common_log_db_error($user, 'UPDATE', __FILE__); + // TRANS: Server error thrown on database error updating e-mail preferences. + $this->serverError(_('Could not update user.')); + return; + } - if ($result === false) { - common_log_db_error($user, 'UPDATE', __FILE__); - // TRANS: Server error thrown on database error updating e-mail preferences. - $this->serverError(_('Could not update user.')); - return; - } + $user->query('COMMIT'); - $user->query('COMMIT'); + Event::handle('EndEmailSaveForm', array($this)); - Event::handle('EndEmailSaveForm', array($this)); - - // TRANS: Confirmation message for successful e-mail preferences save. - $this->showForm(_('Email preferences saved.'), true); - } + // TRANS: Confirmation message for successful e-mail preferences save. + $this->showForm(_('Email preferences saved.'), true); + } } /** diff --git a/actions/favor.php b/actions/favor.php index 61db235738..39d7735d00 100644 --- a/actions/favor.php +++ b/actions/favor.php @@ -58,7 +58,7 @@ class FavorAction extends Action { parent::handle($args); if (!common_logged_in()) { - // TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return; } @@ -72,6 +72,7 @@ class FavorAction extends Action $notice = Notice::staticGet($id); $token = $this->trimmed('token-'.$notice->id); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token. Try again, please.')); return; } diff --git a/actions/geocode.php b/actions/geocode.php index 123a839f56..9e208914c1 100644 --- a/actions/geocode.php +++ b/actions/geocode.php @@ -52,6 +52,7 @@ class GeocodeAction extends Action parent::prepare($args); $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token. '. 'Try again, please.')); } diff --git a/actions/groupblock.php b/actions/groupblock.php index d426563d8c..a597d47c29 100644 --- a/actions/groupblock.php +++ b/actions/groupblock.php @@ -56,12 +56,13 @@ class GroupblockAction extends RedirectingAction { parent::prepare($args); if (!common_logged_in()) { - // TRANS: Client error displayed trying to block a user from a group while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return false; } $token = $this->trimmed('token'); if (empty($token) || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token. Try again, please.')); return; } diff --git a/actions/groupunblock.php b/actions/groupunblock.php index de0af59821..c14ec04adc 100644 --- a/actions/groupunblock.php +++ b/actions/groupunblock.php @@ -56,12 +56,13 @@ class GroupunblockAction extends Action { parent::prepare($args); if (!common_logged_in()) { - // TRANS: Client error displayed when trying to unblock a user from a group while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return false; } $token = $this->trimmed('token'); if (empty($token) || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token. Try again, please.')); return; } diff --git a/actions/imsettings.php b/actions/imsettings.php index b887fdb231..e809981a3f 100644 --- a/actions/imsettings.php +++ b/actions/imsettings.php @@ -240,6 +240,7 @@ class ImsettingsAction extends SettingsAction // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. '. 'Try again, please.')); return; diff --git a/actions/invite.php b/actions/invite.php index bbb6b26c11..7a1f8b3f5b 100644 --- a/actions/invite.php +++ b/actions/invite.php @@ -57,6 +57,7 @@ class InviteAction extends CurrentUserDesignAction // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. Try again, please.')); return; } diff --git a/actions/logout.php b/actions/logout.php index 8e903db221..567d808cd1 100644 --- a/actions/logout.php +++ b/actions/logout.php @@ -65,7 +65,7 @@ class LogoutAction extends Action { parent::handle($args); if (!common_logged_in()) { - // TRANS: Client error displayed trying to log out when not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); } else { if (Event::handle('StartLogout', array($this))) { diff --git a/actions/makeadmin.php b/actions/makeadmin.php index 3613e1eb70..8ec8a7ce0c 100644 --- a/actions/makeadmin.php +++ b/actions/makeadmin.php @@ -58,12 +58,13 @@ class MakeadminAction extends RedirectingAction { parent::prepare($args); if (!common_logged_in()) { - // TRANS: Client error displayed when trying to access the "make admin" page while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return false; } $token = $this->trimmed('token'); if (empty($token) || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token. Try again, please.')); return; } diff --git a/actions/newapplication.php b/actions/newapplication.php index a2c4f58b8d..ca5d902a26 100644 --- a/actions/newapplication.php +++ b/actions/newapplication.php @@ -109,6 +109,7 @@ class NewApplicationAction extends OwnerDesignAction // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token.')); return; } diff --git a/actions/newmessage.php b/actions/newmessage.php index 8a03aebfac..dd7c5357ba 100644 --- a/actions/newmessage.php +++ b/actions/newmessage.php @@ -85,7 +85,7 @@ class NewmessageAction extends Action parent::handle($args); if (!common_logged_in()) { - // TRANS: Client error displayed trying to create a new direct message while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.'), 403); } else if ($_SERVER['REQUEST_METHOD'] == 'POST') { $this->saveNewMessage(); @@ -137,6 +137,7 @@ class NewmessageAction extends Action $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. ' . 'Try again, please.')); return; diff --git a/actions/newnotice.php b/actions/newnotice.php index f48134c3b2..a8a5fa932f 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -64,7 +64,7 @@ class NewnoticeAction extends Action function title() { // TRANS: Page title for sending a new notice. - return _('New notice'); + return _m('TITLE','New notice'); } /** @@ -83,7 +83,7 @@ class NewnoticeAction extends Action function handle($args) { if (!common_logged_in()) { - // TRANS: Client error displayed trying to send a notice while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); } else if ($_SERVER['REQUEST_METHOD'] == 'POST') { // check for this before token since all POST and FILES data @@ -101,6 +101,7 @@ class NewnoticeAction extends Action // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token. '. 'Try again, please.')); } @@ -180,6 +181,8 @@ class NewnoticeAction extends Action if (Notice::contentTooLong($content_shortened)) { $upload->delete(); + // TRANS: Client error displayed exceeding the maximum notice length. + // TRANS: %d is the maximum length for a notice. $this->clientError(sprintf(_m('Maximum notice size is %d character, including attachment URL.', 'Maximum notice size is %d characters, including attachment URL.', Notice::maxContent()), @@ -286,7 +289,8 @@ class NewnoticeAction extends Action { $this->startHTML('text/xml;charset=utf-8', true); $this->elementStart('head'); - $this->element('title', null, _('New notice')); + // TRANS: Title for form to send a new notice. + $this->element('title', null, _m('TITLE','New notice')); $this->elementEnd('head'); $this->elementStart('body'); diff --git a/actions/nudge.php b/actions/nudge.php index 61874c7505..a44915a2d6 100644 --- a/actions/nudge.php +++ b/actions/nudge.php @@ -60,7 +60,7 @@ class NudgeAction extends Action parent::handle($args); if (!common_logged_in()) { - // TRANS: Client error displayed trying to nudge a user without being logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return; } @@ -78,6 +78,7 @@ class NudgeAction extends Action $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token. Try again, please.')); return; } diff --git a/actions/oauthconnectionssettings.php b/actions/oauthconnectionssettings.php index bcef773ac6..5c66730931 100644 --- a/actions/oauthconnectionssettings.php +++ b/actions/oauthconnectionssettings.php @@ -132,6 +132,7 @@ class OauthconnectionssettingsAction extends SettingsAction $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. '. 'Try again, please.')); return; diff --git a/actions/passwordsettings.php b/actions/passwordsettings.php index d9a6d32ae0..3ac1a3f946 100644 --- a/actions/passwordsettings.php +++ b/actions/passwordsettings.php @@ -143,6 +143,7 @@ class PasswordsettingsAction extends SettingsAction $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. '. 'Try again, please.')); return; diff --git a/actions/pluginenable.php b/actions/pluginenable.php index 0f2b4ba670..156a604cf0 100644 --- a/actions/pluginenable.php +++ b/actions/pluginenable.php @@ -84,6 +84,7 @@ class PluginEnableAction extends Action $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token.'. ' Try again, please.')); return false; @@ -94,7 +95,7 @@ class PluginEnableAction extends Action $this->user = common_current_user(); if (empty($this->user)) { - // TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return false; } diff --git a/actions/profilesettings.php b/actions/profilesettings.php index 1961f94e9f..f380fe4d6d 100644 --- a/actions/profilesettings.php +++ b/actions/profilesettings.php @@ -203,6 +203,13 @@ class ProfilesettingsAction extends SettingsAction (empty($user->subscribe_policy)) ? User::SUBSCRIBE_POLICY_OPEN : $user->subscribe_policy); $this->elementEnd('li'); } + $this->elementStart('li'); + $this->checkbox('private_stream', + // TRANS: Checkbox label in profile settings. + _('Make updates visible only to my followers'), + ($this->arg('private_stream')) ? + $this->boolean('private_stream') : $user->private_stream); + $this->elementEnd('li'); $this->elementEnd('ul'); // TRANS: Button to save input in profile settings. $this->submit('save', _m('BUTTON','Save')); @@ -245,6 +252,7 @@ class ProfilesettingsAction extends SettingsAction $location = $this->trimmed('location'); $autosubscribe = $this->boolean('autosubscribe'); $subscribe_policy = $this->trimmed('subscribe_policy'); + $private_stream = $this->boolean('private_stream'); $language = $this->trimmed('language'); $timezone = $this->trimmed('timezone'); $tagstring = $this->trimmed('tags'); @@ -350,11 +358,14 @@ class ProfilesettingsAction extends SettingsAction } // XXX: XOR - if (($user->autosubscribe ^ $autosubscribe) || $user->subscribe_policy != $subscribe_policy) { + if (($user->autosubscribe ^ $autosubscribe) || + ($user->private_stream ^ $private_stream) || + ($user->subscribe_policy != $subscribe_policy)) { $original = clone($user); - $user->autosubscribe = $autosubscribe; + $user->autosubscribe = $autosubscribe; + $user->private_stream = $private_stream; $user->subscribe_policy = $subscribe_policy; $result = $user->update($original); diff --git a/actions/register.php b/actions/register.php index 084e3e6f1d..e5f3ef1080 100644 --- a/actions/register.php +++ b/actions/register.php @@ -160,6 +160,7 @@ class RegisterAction extends Action if (Event::handle('StartRegistrationTry', array($this))) { $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. '. 'Try again, please.')); return; @@ -211,6 +212,7 @@ class RegisterAction extends Action // TRANS: Form validation error displayed when trying to register with an invalid nickname. $this->showForm(_('Not a valid nickname.')); } else if ($this->emailExists($email)) { + // TRANS: Form validation error displayed when trying to register with an already registered e-mail address. $this->showForm(_('Email address already exists.')); } else if (!is_null($homepage) && (strlen($homepage) > 0) && !Validate::uri($homepage, diff --git a/actions/remotesubscribe.php b/actions/remotesubscribe.php index 66cee65cab..5514b9a98c 100644 --- a/actions/remotesubscribe.php +++ b/actions/remotesubscribe.php @@ -74,6 +74,7 @@ class RemotesubscribeAction extends Action /* Use a session token for CSRF protection. */ $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. '. 'Try again, please.')); return; diff --git a/actions/repeat.php b/actions/repeat.php index 44c57456fa..333e1cd02e 100644 --- a/actions/repeat.php +++ b/actions/repeat.php @@ -76,6 +76,7 @@ class RepeatAction extends Action $token = $this->trimmed('token-'.$id); if (empty($token) || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token. Try again, please.')); return false; } diff --git a/actions/showapplication.php b/actions/showapplication.php index 38e6f1953e..c9cdbf1848 100644 --- a/actions/showapplication.php +++ b/actions/showapplication.php @@ -113,6 +113,7 @@ class ShowApplicationAction extends OwnerDesignAction // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token.')); return; } diff --git a/actions/showstream.php b/actions/showstream.php index fed9685b35..a2320909fc 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -67,11 +67,11 @@ class ShowstreamAction extends ProfileAction if ($this->page == 1) { // TRANS: Page title showing tagged notices in one user's stream. // TRANS: %1$s is the username, %2$s is the hash tag. - return sprintf(_('%1$s tagged %2$s'), $base, $this->tag); + return sprintf(_('Notices by %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, %3$d is the page number. - return sprintf(_('%1$s tagged %2$s, page %3$d'), $base, $this->tag, $this->page); + return sprintf(_('Notices by %1$s tagged %2$s, page %3$d'), $base, $this->tag, $this->page); } } else { if ($this->page == 1) { @@ -79,7 +79,7 @@ class ShowstreamAction extends ProfileAction } else { // TRANS: Extended page title showing tagged notices in one user's stream. // TRANS: %1$s is the username, %2$d is the page number. - return sprintf(_('%1$s, page %2$d'), + return sprintf(_('Notices by %1$s, page %2$d'), $base, $this->page); } diff --git a/actions/smssettings.php b/actions/smssettings.php index 1545679c17..d151ff45d6 100644 --- a/actions/smssettings.php +++ b/actions/smssettings.php @@ -246,6 +246,7 @@ class SmssettingsAction extends SettingsAction $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. '. 'Try again, please.')); return; diff --git a/actions/subedit.php b/actions/subedit.php index 3b77aff584..7439904af0 100644 --- a/actions/subedit.php +++ b/actions/subedit.php @@ -29,7 +29,7 @@ class SubeditAction extends Action parent::prepare($args); if (!common_logged_in()) { - // TRANS: Client error displayed trying a change a subscription while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return false; } @@ -37,6 +37,7 @@ class SubeditAction extends Action $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token. '. 'Try again, please.')); return false; diff --git a/actions/subscribe.php b/actions/subscribe.php index fad153fc6e..b8c1cdd8f7 100644 --- a/actions/subscribe.php +++ b/actions/subscribe.php @@ -94,7 +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. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return false; } diff --git a/actions/unsubscribe.php b/actions/unsubscribe.php index 8f90619f64..ba9ecd8f00 100644 --- a/actions/unsubscribe.php +++ b/actions/unsubscribe.php @@ -48,7 +48,7 @@ class UnsubscribeAction extends Action { parent::handle($args); if (!common_logged_in()) { - // TRANS: Client error displayed when trying to unsubscribe while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return; } @@ -66,6 +66,7 @@ class UnsubscribeAction extends Action $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token. ' . 'Try again, please.')); return; diff --git a/actions/urlsettings.php b/actions/urlsettings.php index aaaa1b78dd..02a895955d 100644 --- a/actions/urlsettings.php +++ b/actions/urlsettings.php @@ -167,6 +167,7 @@ class UrlsettingsAction extends SettingsAction // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. '. 'Try again, please.')); return; diff --git a/actions/useradminpanel.php b/actions/useradminpanel.php index c8861bd834..19673189f5 100644 --- a/actions/useradminpanel.php +++ b/actions/useradminpanel.php @@ -54,7 +54,7 @@ class UseradminpanelAction extends AdminPanelAction */ function title() { - // TRANS: User admin panel title + // TRANS: User admin panel title. return _m('TITLE', 'User'); } @@ -172,6 +172,7 @@ class UseradminpanelAction extends AdminPanelAction } } +// @todo FIXME: Class documentation missing. class UserAdminPanelForm extends AdminForm { /** @@ -212,7 +213,8 @@ class UserAdminPanelForm extends AdminForm function formData() { $this->out->elementStart('fieldset', array('id' => 'settings_user-profile')); - $this->out->element('legend', null, _('Profile')); + // TRANS: Fieldset legend in user administration panel. + $this->out->element('legend', null, _m('LEGEND','Profile')); $this->out->elementStart('ul', 'form_data'); $this->li(); diff --git a/actions/userauthorization.php b/actions/userauthorization.php index e58a096bac..fd01cd7c02 100644 --- a/actions/userauthorization.php +++ b/actions/userauthorization.php @@ -50,6 +50,7 @@ class UserauthorizationAction extends Action $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { $srv = $this->getStoredParams(); + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm($srv->getRemoteUser(), _('There was a problem ' . 'with your session token. Try again, ' . 'please.')); diff --git a/actions/userrss.php b/actions/userrss.php index ba9f64f8ac..b60cc5e0c7 100644 --- a/actions/userrss.php +++ b/actions/userrss.php @@ -37,6 +37,7 @@ class UserrssAction extends Rss10Action $this->tag = $this->trimmed('tag'); if (!$this->user) { + // TRANS: Client error displayed when user not found for an action. $this->clientError(_('No such user.')); return false; } else { @@ -105,6 +106,7 @@ class UserrssAction extends Rss10Action $profile = $user->getProfile(); if (!$profile) { common_log_db_error($user, 'SELECT', __FILE__); + // TRANS: Server error displayed in user RSS when user does not have a matching profile. $this->serverError(_('User without matching profile.')); return null; } diff --git a/actions/userxrd.php b/actions/userxrd.php index 7691ff155b..1d888064d6 100644 --- a/actions/userxrd.php +++ b/actions/userxrd.php @@ -56,6 +56,7 @@ class UserxrdAction extends XrdAction } if (!$this->user) { + // TRANS: Client error displayed when user not found for an action. $this->clientError(_('No such user.'), 404); return false; } diff --git a/classes/Notice.php b/classes/Notice.php index 3d1639c26d..07fa373339 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -351,6 +351,7 @@ class Notice extends Memcached_DataObject $repeat = Notice::staticGet('id', $repeat_of); if (empty($repeat)) { + // TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. throw new ClientException(_('Cannot repeat; original notice is missing or deleted.')); } @@ -420,6 +421,18 @@ class Notice extends Memcached_DataObject $notice->scope = $scope; } + // For private streams + + $user = $profile->getUser(); + + if (!empty($user)) { + if ($user->private_stream && + ($notice->scope == Notice::PUBLIC_SCOPE || + $notice->scope == Notice::SITE_SCOPE)) { + $notice->scope |= Notice::FOLLOWER_SCOPE; + } + } + if (Event::handle('StartNoticeSave', array(&$notice))) { // XXX: some of these functions write to the DB diff --git a/classes/User.php b/classes/User.php index 93afc1e612..c229d70929 100644 --- a/classes/User.php +++ b/classes/User.php @@ -63,6 +63,7 @@ class User extends Memcached_DataObject public $inboxed; // tinyint(1) public $design_id; // int(4) public $viewdesigns; // tinyint(1) default_1 + public $private_stream; // tinyint(1) default_0 public $created; // datetime() not_null public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP diff --git a/classes/statusnet.ini b/classes/statusnet.ini index 63061527af..a5de206c7f 100644 --- a/classes/statusnet.ini +++ b/classes/statusnet.ini @@ -633,6 +633,7 @@ urlshorteningservice = 2 inboxed = 17 design_id = 1 viewdesigns = 17 +private_stream = 17 created = 142 modified = 384 diff --git a/db/core.php b/db/core.php index ed3be4341a..10d8e51b9b 100644 --- a/db/core.php +++ b/db/core.php @@ -123,6 +123,7 @@ $schema['user'] = array( 'inboxed' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'has an inbox been created for this user?'), 'design_id' => array('type' => 'int', 'description' => 'id of a design'), 'viewdesigns' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'whether to view user-provided designs'), + 'private_stream' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'whether to limit all notices to followers only'), 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'), 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), @@ -724,7 +725,8 @@ $schema['user_group'] = array( 'uri' => array('type' => 'varchar', 'length' => 255, 'description' => 'universal identifier'), 'mainpage' => array('type' => 'varchar', 'length' => 255, 'description' => 'page for group info to link to'), - 'join_policy' => array('type' => 'int', 'size' => 'tiny', 'description' => '0=open; 1=requires admin approval'), + 'join_policy' => array('type' => 'int', 'size' => 'tiny', 'description' => '0=open; 1=requires admin approval'), + 'force_scope' => array('type' => 'int', 'size' => 'tiny', 'description' => '0=never,1=sometimes,-1=always'), ), 'primary key' => array('id'), 'unique keys' => array( diff --git a/index.php b/index.php index c8d4fbee9b..3265f0c0e9 100644 --- a/index.php +++ b/index.php @@ -106,20 +106,20 @@ function handleError($error) $_cur = null; $msg = sprintf( - _( - 'The database for %s isn\'t responding correctly, '. - 'so the site won\'t work properly. '. - 'The site admins probably know about the problem, '. - 'but you can contact them at %s to make sure. '. - 'Otherwise, wait a few minutes and try again.' + // TRANS: Database error message. + _('The database for %1$s is not responding correctly, '. + 'so the site will not work properly. '. + 'The site admins probably know about the problem, '. + 'but you can contact them at %2$s to make sure. '. + 'Otherwise, wait a few minutes and try again.' ), common_config('site', 'name'), common_config('site', 'email') ); } else { - $msg = _( - 'An important error occured, probably related to email setup. '. - 'Check logfiles for more info..' + // TRANS: Error message. + $msg = _('An important error occured, probably related to email setup. '. + 'Check logfiles for more info.' ); } @@ -127,6 +127,7 @@ function handleError($error) $dac->showPage(); } catch (Exception $e) { + // TRANS: Error message. echo _('An error occurred.'); } exit(-1); @@ -250,9 +251,9 @@ function main() if (!_have_config()) { $msg = sprintf( - _( - "No configuration file found. Try running ". - "the installation program first." + // TRANS: Error message displayed when there is no StatusNet configuration file. + _("No configuration file found. Try running ". + "the installation program first." ) ); $sac = new ServerErrorAction($msg); @@ -281,6 +282,7 @@ function main() $args = $r->map($path); if (!$args) { + // TRANS: Error message displayed when trying to access a non-existing page. $cac = new ClientErrorAction(_('Unknown page'), 404); $cac->showPage(); return; @@ -335,6 +337,7 @@ function main() $action_class = ucfirst($action).'Action'; if (!class_exists($action_class)) { + // TRANS: Error message displayed when trying to perform an undefined action. $cac = new ClientErrorAction(_('Unknown action'), 404); $cac->showPage(); } else { diff --git a/lib/action.php b/lib/action.php index f06803a248..5678344ca6 100644 --- a/lib/action.php +++ b/lib/action.php @@ -165,7 +165,7 @@ class Action extends HTMLOutputter // lawsuit { $this->element('title', null, // TRANS: Page title. %1$s is the title, %2$s is the site name. - sprintf(_("%1\$s - %2\$s"), + sprintf(_('%1$s - %2$s'), $this->title(), common_config('site', 'name'))); } @@ -181,7 +181,7 @@ class Action extends HTMLOutputter // lawsuit function title() { // TRANS: Page title for a page without a title set. - return _("Untitled page"); + return _('Untitled page'); } /** @@ -615,17 +615,16 @@ class Action extends HTMLOutputter // lawsuit */ function showNoticeForm() { - $tabs = array('status' => _('Status')); + // TRANS: Tab on the notice form. + $tabs = array('status' => _m('TAB','Status')); $this->elementStart('div', 'input_forms'); if (Event::handle('StartShowEntryForms', array(&$tabs))) { - $this->elementStart('ul', array('class' => 'nav', 'id' => 'input_form_nav')); foreach ($tabs as $tag => $title) { - $attrs = array('id' => 'input_form_nav_'.$tag, 'class' => 'input_form_nav_tab'); @@ -653,7 +652,6 @@ class Action extends HTMLOutputter // lawsuit $this->elementEnd('div'); foreach ($tabs as $tag => $title) { - $attrs = array('class' => 'input_form', 'id' => 'input_form_'.$tag); diff --git a/lib/activity.php b/lib/activity.php index b781e49846..83a115d160 100644 --- a/lib/activity.php +++ b/lib/activity.php @@ -704,11 +704,18 @@ class Activity return ActivityUtils::child($element, $tag, $namespace); } + /** + * For consistency, we'll always output UTC rather than local time. + * Note that clients *should* accept any timezone we give them as long + * as it's properly formatted. + * + * @param int $tm Unix timestamp + * @return string + */ static function iso8601Date($tm) { $dateStr = date('d F Y H:i:s', $tm); $d = new DateTime($dateStr, new DateTimeZone('UTC')); - $d->setTimezone(new DateTimeZone(common_timezone())); return $d->format('c'); } } diff --git a/lib/activitymover.php b/lib/activitymover.php index b308ad5624..3380a92c82 100644 --- a/lib/activitymover.php +++ b/lib/activitymover.php @@ -81,7 +81,8 @@ class ActivityMover extends QueueHandler function moveActivity($act, $sink, $user, $remote) { if (empty($user)) { - throw new Exception(sprintf(_("No such user %s."),$act->actor->id)); + // TRANS: Exception thrown if no user is provided. %s is a user ID. + throw new Exception(sprintf(_('No such user "%s".'),$act->actor->id)); } switch ($act->verb) { diff --git a/lib/adminpanelaction.php b/lib/adminpanelaction.php index 5e7e284b5c..5642c68d62 100644 --- a/lib/adminpanelaction.php +++ b/lib/adminpanelaction.php @@ -67,7 +67,7 @@ class AdminPanelAction extends Action // User must be logged in. if (!common_logged_in()) { - // TRANS: Client error message thrown when trying to access the admin panel while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return false; } diff --git a/lib/adminpanelnav.php b/lib/adminpanelnav.php index 2c9d83ceba..b64a2a6a96 100644 --- a/lib/adminpanelnav.php +++ b/lib/adminpanelnav.php @@ -4,7 +4,7 @@ * Copyright (C) 2011, StatusNet, Inc. * * Menu for admin panels - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -45,7 +45,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class AdminPanelNav extends Menu { /** @@ -62,11 +61,15 @@ class AdminPanelNav extends Menu // Stub section w/ home link $this->action->elementStart('ul'); - $this->action->element('h3', null, _('Home')); + // TRANS: Header in administrator navigation panel. + $this->action->element('h3', null, _m('HEADER','Home')); $this->action->elementStart('ul', 'nav'); $this->out->menuItem(common_local_url('all', array('nickname' => $nickname)), - _('Home'), + // TRANS: Menu item in administrator navigation panel. + _m('MENU','Home'), + // TRANS: Menu item title in administrator navigation panel. + // TRANS: %s is a username. sprintf(_('%s and friends'), $name), $this->action == 'all', 'nav_timeline_personal'); @@ -74,88 +77,89 @@ class AdminPanelNav extends Menu $this->action->elementEnd('ul'); $this->action->elementStart('ul'); - $this->action->element('h3', null, _('Admin')); + // TRANS: Header in administrator navigation panel. + $this->action->element('h3', null, _m('HEADER','Admin')); $this->action->elementStart('ul', array('class' => 'nav')); if (Event::handle('StartAdminPanelNav', array($this))) { if (AdminPanelAction::canAdmin('site')) { - // TRANS: Menu item title/tooltip + // TRANS: Menu item title in administrator navigation panel. $menu_title = _('Basic site configuration'); - // TRANS: Menu item for site administration + // TRANS: Menu item in administrator navigation panel. $this->out->menuItem(common_local_url('siteadminpanel'), _m('MENU', 'Site'), $menu_title, $action_name == 'siteadminpanel', 'nav_site_admin_panel'); } if (AdminPanelAction::canAdmin('design')) { - // TRANS: Menu item title/tooltip + // TRANS: Menu item title in administrator navigation panel. $menu_title = _('Design configuration'); - // TRANS: Menu item for site administration + // TRANS: Menu item in administrator navigation panel. $this->out->menuItem(common_local_url('designadminpanel'), _m('MENU', 'Design'), $menu_title, $action_name == 'designadminpanel', 'nav_design_admin_panel'); } if (AdminPanelAction::canAdmin('user')) { - // TRANS: Menu item title/tooltip + // TRANS: Menu item title in administrator navigation panel. $menu_title = _('User configuration'); - // TRANS: Menu item for site administration - $this->out->menuItem(common_local_url('useradminpanel'), _('User'), + // TRANS: Menu item in administrator navigation panel. + $this->out->menuItem(common_local_url('useradminpanel'), _m('MENU','User'), $menu_title, $action_name == 'useradminpanel', 'nav_user_admin_panel'); } if (AdminPanelAction::canAdmin('access')) { - // TRANS: Menu item title/tooltip + // TRANS: Menu item title in administrator navigation panel. $menu_title = _('Access configuration'); - // TRANS: Menu item for site administration - $this->out->menuItem(common_local_url('accessadminpanel'), _('Access'), + // TRANS: Menu item in administrator navigation panel. + $this->out->menuItem(common_local_url('accessadminpanel'), _m('MENU','Access'), $menu_title, $action_name == 'accessadminpanel', 'nav_access_admin_panel'); } if (AdminPanelAction::canAdmin('paths')) { - // TRANS: Menu item title/tooltip + // TRANS: Menu item title in administrator navigation panel. $menu_title = _('Paths configuration'); - // TRANS: Menu item for site administration - $this->out->menuItem(common_local_url('pathsadminpanel'), _('Paths'), + // TRANS: Menu item in administrator navigation panel. + $this->out->menuItem(common_local_url('pathsadminpanel'), _m('MENU','Paths'), $menu_title, $action_name == 'pathsadminpanel', 'nav_paths_admin_panel'); } if (AdminPanelAction::canAdmin('sessions')) { - // TRANS: Menu item title/tooltip + // TRANS: Menu item title in administrator navigation panel. $menu_title = _('Sessions configuration'); - // TRANS: Menu item for site administration - $this->out->menuItem(common_local_url('sessionsadminpanel'), _('Sessions'), + // TRANS: Menu item in administrator navigation panel. + $this->out->menuItem(common_local_url('sessionsadminpanel'), _m('MENU','Sessions'), $menu_title, $action_name == 'sessionsadminpanel', 'nav_sessions_admin_panel'); } if (AdminPanelAction::canAdmin('sitenotice')) { - // TRANS: Menu item title/tooltip + // TRANS: Menu item title in administrator navigation panel. $menu_title = _('Edit site notice'); - // TRANS: Menu item for site administration - $this->out->menuItem(common_local_url('sitenoticeadminpanel'), _('Site notice'), + // TRANS: Menu item in administrator navigation panel. + $this->out->menuItem(common_local_url('sitenoticeadminpanel'), _m('MENU','Site notice'), $menu_title, $action_name == 'sitenoticeadminpanel', 'nav_sitenotice_admin_panel'); } if (AdminPanelAction::canAdmin('snapshot')) { - // TRANS: Menu item title/tooltip + // TRANS: Menu item title in administrator navigation panel. $menu_title = _('Snapshots configuration'); - // TRANS: Menu item for site administration - $this->out->menuItem(common_local_url('snapshotadminpanel'), _('Snapshots'), + // TRANS: Menu item in administrator navigation panel. + $this->out->menuItem(common_local_url('snapshotadminpanel'), _m('MENU','Snapshots'), $menu_title, $action_name == 'snapshotadminpanel', 'nav_snapshot_admin_panel'); } if (AdminPanelAction::canAdmin('license')) { - // TRANS: Menu item title/tooltip + // TRANS: Menu item title in administrator navigation panel. $menu_title = _('Set site license'); - // TRANS: Menu item for site administration - $this->out->menuItem(common_local_url('licenseadminpanel'), _('License'), + // TRANS: Menu item in administrator navigation panel. + $this->out->menuItem(common_local_url('licenseadminpanel'), _m('MENU','License'), $menu_title, $action_name == 'licenseadminpanel', 'nav_license_admin_panel'); } if (AdminPanelAction::canAdmin('plugins')) { - // TRANS: Menu item title/tooltip + // TRANS: Menu item title in administrator navigation panel. $menu_title = _('Plugins configuration'); - // TRANS: Menu item for site administration - $this->out->menuItem(common_local_url('pluginsadminpanel'), _('Plugins'), + // TRANS: Menu item in administrator navigation panel. + $this->out->menuItem(common_local_url('pluginsadminpanel'), _m('MENU','Plugins'), $menu_title, $action_name == 'pluginsadminpanel', 'nav_design_admin_panel'); } diff --git a/lib/apiauth.php b/lib/apiauth.php index 8a1af8c27d..42d32dd624 100644 --- a/lib/apiauth.php +++ b/lib/apiauth.php @@ -199,6 +199,7 @@ class ApiAuthAction extends ApiAction $user = User::staticGet('id', $appUser->profile_id); if (!empty($user)) { if (!$user->hasRight(Right::API)) { + // TRANS: Authorization exception thrown when a user without API access tries to access the API. throw new AuthorizationException(_('Not allowed to use API.')); } } @@ -225,7 +226,7 @@ class ApiAuthAction extends ApiAction throw new OAuthException(_('Bad access token.')); } } else { - // Also should not happen + // Also should not happen. // TRANS: OAuth exception given when no user was found for a given token (no token was found). throw new OAuthException(_('No user for that token.')); } @@ -281,6 +282,7 @@ class ApiAuthAction extends ApiAction if (!empty($user)) { if (!$user->hasRight(Right::API)) { + // TRANS: Authorization exception thrown when a user without API access tries to access the API. throw new AuthorizationException(_('Not allowed to use API.')); } $this->auth_user = $user; diff --git a/lib/apioauthstore.php b/lib/apioauthstore.php index f1f88b13a1..ac53ec210c 100644 --- a/lib/apioauthstore.php +++ b/lib/apioauthstore.php @@ -21,6 +21,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } require_once INSTALLDIR . '/lib/oauthstore.php'; +// @todo FIXME: Class documentation missing. class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore { function lookup_consumer($consumerKey) @@ -65,7 +66,7 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore $id = $app->insert(); if (!$id) { - // TRANS: Server error displayed when trying to create an anynymous OAuth application. + // TRANS: Server error displayed when trying to create an anynymous OAuth application. $this->serverError(_("Could not create anonymous OAuth application.")); } } @@ -90,7 +91,7 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore ); if (empty($req_token)) { - common_debug("couldn't get request token from oauth datastore"); + common_debug("Couldn't get request token from oauth datastore"); return null; } @@ -312,8 +313,8 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore if (!$result) { common_log_db_error($appUser, 'INSERT', __FILE__); - // TRANS: Server error displayed when a database error occurs. throw new Exception( + // TRANS: Exception thrown when a database error occurs. _('Database error inserting OAuth application user.') ); } @@ -340,8 +341,8 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore if (!$result) { common_log_db_error($appUser, 'UPDATE', __FILE__); - // TRANS: Server error displayed when a database error occurs. throw new Exception( + // TRANS: Exception thrown when a database error occurs. _('Database error updating OAuth application user.') ); } diff --git a/lib/applicationeditform.php b/lib/applicationeditform.php index ec6702cd64..dda61dbb69 100644 --- a/lib/applicationeditform.php +++ b/lib/applicationeditform.php @@ -198,7 +198,7 @@ class ApplicationEditForm extends Form if ($maxDesc > 0) { // TRANS: Form input field instructions. // TRANS: %d is the number of available characters for the description. - $descInstr = sprintf(ngettext('Describe your application in %d character','Describe your application in %d characters',$maxDesc), + $descInstr = sprintf(_m('Describe your application in %d character','Describe your application in %d characters',$maxDesc), $maxDesc); } else { // TRANS: Form input field instructions. diff --git a/lib/applicationlist.php b/lib/applicationlist.php index 3f50f110ba..ca7dce8328 100644 --- a/lib/applicationlist.php +++ b/lib/applicationlist.php @@ -237,13 +237,16 @@ class ConnectedAppsList extends Widget $this->out->elementEnd('a'); if ($app->name == 'anonymous') { - $this->out->element('span', 'fn', "Unknown application"); + // TRANS: Name for an anonymous application in application list. + $this->out->element('span', 'fn', _('Unknown application')); } $this->out->elementEnd('span'); if ($app->name != 'anonymous') { // @todo FIXME: i18n trouble. + // TRANS: Message has a leading space and a trailing space. Used in application list. + // TRANS: Before this message the application name is put, behind it the organisation that manages it. $this->out->raw(_(' by ')); $this->out->element( @@ -267,6 +270,7 @@ class ConnectedAppsList extends Widget // TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") $txt = sprintf(_('Approved %1$s - "%2$s" access.'), $modifiedDate, $access); + // @todo FIXME: i18n trouble. $this->out->raw(" - $txt"); if (!empty($app->description)) { $this->out->element( @@ -294,7 +298,7 @@ class ConnectedAppsList extends Widget $this->out->elementStart('fieldset'); $this->out->hidden('oauth_token', $this->connection->token); $this->out->hidden('token', common_session_token()); - // TRANS: Button label + // TRANS: Button label in application list to revoke access to user data. $this->out->submit('revoke', _m('BUTTON','Revoke')); $this->out->elementEnd('fieldset'); $this->out->elementEnd('form'); diff --git a/lib/atom10feed.php b/lib/atom10feed.php index 8d4b66d8b8..d5faafa1b3 100644 --- a/lib/atom10feed.php +++ b/lib/atom10feed.php @@ -108,8 +108,8 @@ class Atom10Feed extends XMLStringer if (!empty($name)) { $xs->element('name', null, $name); } else { - // TRANS: Atom feed exception thrown when an author element does not contain a name element. throw new Atom10FeedException( + // TRANS: Atom feed exception thrown when an author element does not contain a name element. _('Author element must contain a name element.') ); } diff --git a/lib/command.php b/lib/command.php index 35c0f5a62a..a922aa73ac 100644 --- a/lib/command.php +++ b/lib/command.php @@ -922,7 +922,7 @@ class SubscriptionsCommand extends Command // TRANS: Text shown after requesting other users a user is subscribed to. // TRANS: This message supports plural forms. This message is followed by a // TRANS: hard coded space and a comma separated list of subscribed users. - $out = ngettext('You are subscribed to this person:', + $out = _m('You are subscribed to this person:', 'You are subscribed to these people:', count($nicknames)); $out .= ' '; @@ -949,7 +949,7 @@ class SubscribersCommand extends Command // TRANS: Text shown after requesting other users that are subscribed to a user (followers). // TRANS: This message supports plural forms. This message is followed by a // TRANS: hard coded space and a comma separated list of subscribing users. - $out = ngettext('This person is subscribed to you:', + $out = _m('This person is subscribed to you:', 'These people are subscribed to you:', count($nicknames)); $out .= ' '; @@ -976,7 +976,7 @@ class GroupsCommand extends Command // TRANS: Text shown after requesting groups a user is subscribed to. // TRANS: This message supports plural forms. This message is followed by a // TRANS: hard coded space and a comma separated list of subscribed groups. - $out = ngettext('You are a member of this group:', + $out = _m('You are a member of this group:', 'You are a member of these groups:', count($nicknames)); $out.=implode(', ',$groups); diff --git a/lib/dberroraction.php b/lib/dberroraction.php index 0a6fce1005..8f628fba17 100644 --- a/lib/dberroraction.php +++ b/lib/dberroraction.php @@ -56,6 +56,7 @@ class DBErrorAction extends ServerErrorAction function title() { + // TRANS: Page title for when a database error occurs. return _('Database error'); } diff --git a/lib/defaultlocalnav.php b/lib/defaultlocalnav.php index 7af3c9673f..b9b45c8e01 100644 --- a/lib/defaultlocalnav.php +++ b/lib/defaultlocalnav.php @@ -4,7 +4,7 @@ * Copyright (C) 2011, StatusNet, Inc. * * Default local nav - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -44,7 +44,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class DefaultLocalNav extends Menu { function show() @@ -55,11 +54,13 @@ class DefaultLocalNav extends Menu if (!empty($user)) { $pn = new PersonalGroupNav($this->action); - $this->submenu(_m('Home'), $pn); + // TRANS: Menu item in default local navigation panel. + $this->submenu(_m('MENU','Home'), $pn); } $bn = new PublicGroupNav($this->action); - $this->submenu(_('Public'), $bn); + // TRANS: Menu item in default local navigation panel. + $this->submenu(_m('MENU','Public'), $bn); $this->action->elementEnd('ul'); } diff --git a/lib/deletegroupform.php b/lib/deletegroupform.php index 9d8012d33b..65bc34812e 100644 --- a/lib/deletegroupform.php +++ b/lib/deletegroupform.php @@ -47,13 +47,11 @@ if (!defined('STATUSNET')) { * @see UnsubscribeForm * @fixme merge a bunch of this stuff with similar form types to reduce boilerplate */ - class DeleteGroupForm extends Form { /** * group for user to delete */ - var $group = null; /** @@ -62,7 +60,6 @@ class DeleteGroupForm extends Form * @param HTMLOutputter $out output channel * @param group $group group to join */ - function __construct($out=null, $group=null) { parent::__construct($out); @@ -75,7 +72,6 @@ class DeleteGroupForm extends Form * * @return string ID of the form */ - function id() { return 'group-delete-' . $this->group->id; @@ -86,7 +82,6 @@ class DeleteGroupForm extends Form * * @return string of the form class */ - function formClass() { return 'form_group_delete'; @@ -97,7 +92,6 @@ class DeleteGroupForm extends Form * * @return string URL of the action */ - function action() { return common_local_url('deletegroup', @@ -115,9 +109,9 @@ class DeleteGroupForm extends Form * * @return void */ - function formActions() { - $this->out->submit('submit', _('Delete')); + // TRANS: Button text for deleting a group. + $this->out->submit('submit', _m('BUTTON','Delete')); } } diff --git a/lib/designform.php b/lib/designform.php index 7702b873fe..a584b61adb 100644 --- a/lib/designform.php +++ b/lib/designform.php @@ -45,7 +45,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @link http://status.net/ * */ - class DesignForm extends Form { /** @@ -62,7 +61,6 @@ class DesignForm extends Form * @param Design $design initial design * @param Design $actionurl url of action (for form posting) */ - function __construct($out, $design, $actionurl) { parent::__construct($out); @@ -76,7 +74,6 @@ class DesignForm extends Form * * @return int ID of the form */ - function id() { return 'design'; @@ -87,7 +84,6 @@ class DesignForm extends Form * * @return string class of the form */ - function formClass() { return 'form_design'; @@ -98,7 +94,6 @@ class DesignForm extends Form * * @return string URL of the action */ - function action() { return $this->actionurl; @@ -111,6 +106,7 @@ class DesignForm extends Form */ function formLegend() { + // TRANS: Form legend of form for changing the page design. $this->out->element('legend', null, _('Change design')); } @@ -119,7 +115,6 @@ class DesignForm extends Form * * @return void */ - function formData() { $this->backgroundData(); @@ -137,7 +132,7 @@ class DesignForm extends Form // TRANS: Button text on profile design page to immediately reset all colour settings to default. $this->out->submit('defaults', _('Use defaults'), 'submit form_action-default', // TRANS: Title for button on profile design page to reset all colour settings to default. - 'defaults', _('Restore default designs')); + 'defaults', _('Restore default designs.')); $this->out->element('input', array('id' => 'settings_design_reset', 'type' => 'reset', @@ -145,7 +140,7 @@ class DesignForm extends Form 'value' => _m('BUTTON', 'Reset'), 'class' => 'submit form_action-primary', // TRANS: Title for button on profile design page to reset all colour settings to default without saving. - 'title' => _('Reset back to default'))); + 'title' => _('Reset back to default.'))); } function backgroundData() @@ -161,7 +156,7 @@ class DesignForm extends Form 'id' => 'design_background-image_file')); // TRANS: Instructions for form on profile design page. $this->out->element('p', 'form_guide', _('You can upload your personal ' . - 'background image. The maximum file size is 2Mb.')); + 'background image. The maximum file size is 2MB.')); $this->out->element('input', array('name' => 'MAX_FILE_SIZE', 'type' => 'hidden', 'id' => 'MAX_FILE_SIZE', @@ -319,6 +314,6 @@ class DesignForm extends Form // TRANS: Button text on profile design page to save settings. $this->out->submit('save', _m('BUTTON','Save'), 'submit form_action-secondary', // TRANS: Title for button on profile design page to save settings. - 'save', _('Save design')); + 'save', _('Save design.')); } } diff --git a/lib/designsettings.php b/lib/designsettings.php index eb3a5908e6..cb65ca14cb 100644 --- a/lib/designsettings.php +++ b/lib/designsettings.php @@ -119,6 +119,7 @@ class DesignSettingsAction extends SettingsAction // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. '. 'Try again, please.')); return; @@ -213,7 +214,7 @@ class DesignSettingsAction extends SettingsAction if ($result === false) { common_log_db_error($design, 'UPDATE', __FILE__); // TRANS: Error message displayed if design settings could not be saved. - $this->showForm(_('Couldn\'t update your design.')); + $this->showForm(_('Could not update your design.')); return; } } @@ -235,7 +236,7 @@ class DesignSettingsAction extends SettingsAction if ($result === false) { common_log_db_error($design, 'DELETE', __FILE__); // TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". - $this->showForm(_('Couldn\'t update your design.')); + $this->showForm(_('Could not update your design.')); return; } } diff --git a/lib/feed.php b/lib/feed.php index 5902653679..e5a97a0cb8 100644 --- a/lib/feed.php +++ b/lib/feed.php @@ -81,12 +81,16 @@ class Feed { switch ($this->type) { case Feed::RSS1: + // TRANS: Feed type name. return _('RSS 1.0'); case Feed::RSS2: + // TRANS: Feed type name. return _('RSS 2.0'); case Feed::ATOM: + // TRANS: Feed type name. return _('Atom'); case Feed::FOAF: + // TRANS: Feed type name. FOAF stands for Friend of a Friend. return _('FOAF'); default: return null; diff --git a/lib/feedimporter.php b/lib/feedimporter.php index e46858cc51..466093534e 100644 --- a/lib/feedimporter.php +++ b/lib/feedimporter.php @@ -4,7 +4,7 @@ * Copyright (C) 2010, StatusNet, Inc. * * Importer for feeds of activities - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -47,7 +47,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class FeedImporter extends QueueHandler { /** @@ -55,7 +54,6 @@ class FeedImporter extends QueueHandler * * @return string identifier for this queue handler */ - public function transport() { return 'feedimp'; @@ -72,13 +70,15 @@ class FeedImporter extends QueueHandler if ($feed->namespaceURI != Activity::ATOM || $feed->localName != 'feed') { - throw new ClientException(_("Not an atom feed.")); + // TRANS: Client exception thrown when an imported feed is not an Atom feed. + throw new ClientException(_("Not an Atom feed.")); } $author = ActivityUtils::getFeedAuthor($feed); if (empty($author)) { + // TRANS: Client exception thrown when an imported feed does not have an author. throw new ClientException(_("No author in the feed.")); } @@ -86,7 +86,9 @@ class FeedImporter extends QueueHandler if ($trusted) { $user = $this->userFromAuthor($author); } else { - throw new ClientException(_("Can't import without a user.")); + // TRANS: Client exception thrown when an imported feed does not have an author that + // TRANS: can be associated with a user. + throw new ClientException(_("Cannot import without a user.")); } } @@ -127,7 +129,6 @@ class FeedImporter extends QueueHandler /** * Sort activities oldest-first */ - static function activitySort($a, $b) { if ($a->time == $b->time) { @@ -154,7 +155,7 @@ class FeedImporter extends QueueHandler $profile = $user->getProfile(); Ostatus_profile::updateProfile($profile, $author); - // FIXME: Update avatar + // @todo FIXME: Update avatar return $user; } } diff --git a/lib/galleryaction.php b/lib/galleryaction.php index 275a7bb57b..ba60c195c7 100644 --- a/lib/galleryaction.php +++ b/lib/galleryaction.php @@ -27,6 +27,7 @@ require_once INSTALLDIR.'/lib/profilelist.php'; define('AVATARS_PER_PAGE', 80); +// @todo FIXME: Class documentation missing. class GalleryAction extends OwnerDesignAction { var $profile = null; @@ -56,6 +57,7 @@ class GalleryAction extends OwnerDesignAction $this->user = User::staticGet('nickname', $nickname); if (!$this->user) { + // TRANS: Client error displayed when trying to perform a gallery action with an unknown user. $this->clientError(_('No such user.'), 404); return false; } @@ -63,6 +65,7 @@ class GalleryAction extends OwnerDesignAction $this->profile = $this->user->getProfile(); if (!$this->profile) { + // TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. $this->serverError(_('User has no profile.')); return false; } @@ -125,7 +128,8 @@ class GalleryAction extends OwnerDesignAction common_local_url($this->trimmed('action'), array('nickname' => $this->user->nickname))), - _('All')); + // TRANS: List element on gallery action page to show all tags. + _m('TAGS','All')); $this->elementEnd('li'); $this->elementStart('li', array('id'=>'filter_tags_item')); $this->elementStart('form', array('name' => 'bytag', @@ -133,11 +137,15 @@ class GalleryAction extends OwnerDesignAction 'action' => common_path('?action=' . $this->trimmed('action')), 'method' => 'post')); $this->elementStart('fieldset'); + // TRANS: Fieldset legend on gallery action page. $this->element('legend', null, _('Select tag to filter')); + // TRANS: Dropdown field label on gallery action page for a list containing tags. $this->dropdown('tag', _('Tag'), $content, - _('Choose a tag to narrow list'), false, $tag); + // TRANS: Dropdown field title on gallery action page for a list containing tags. + _('Choose a tag to narrow list.'), false, $tag); $this->hidden('nickname', $this->user->nickname); - $this->submit('submit', _('Go')); + // TRANS: Submit button text on gallery action page. + $this->submit('submit', _m('BUTTON','Go')); $this->elementEnd('fieldset'); $this->elementEnd('form'); $this->elementEnd('li'); @@ -146,7 +154,6 @@ class GalleryAction extends OwnerDesignAction } // Get list of tags we tagged other users with - function getTags($lst, $usr) { $profile_tag = new Notice_tag(); diff --git a/lib/grantroleform.php b/lib/grantroleform.php index b5f952746e..6887e07e5d 100644 --- a/lib/grantroleform.php +++ b/lib/grantroleform.php @@ -42,7 +42,6 @@ if (!defined('STATUSNET')) { * * @see UnSandboxForm */ - class GrantRoleForm extends ProfileActionForm { function __construct($role, $label, $writer, $profile, $r2args) @@ -57,7 +56,6 @@ class GrantRoleForm extends ProfileActionForm * * @return string Name of the action, lowercased. */ - function target() { return 'grantrole'; @@ -68,7 +66,6 @@ class GrantRoleForm extends ProfileActionForm * * @return string Title of the form, internationalized */ - function title() { return $this->label; @@ -85,9 +82,9 @@ class GrantRoleForm extends ProfileActionForm * * @return string description of the form, internationalized */ - function description() { + // TRANS: Description on form for granting a role. return sprintf(_('Grant this user the "%s" role'), $this->label); } } diff --git a/lib/groupeditform.php b/lib/groupeditform.php index 1adfdea4ee..bb0ab4f7fb 100644 --- a/lib/groupeditform.php +++ b/lib/groupeditform.php @@ -205,7 +205,9 @@ class GroupEditForm extends Form $this->out->dropdown('join_policy', // TRANS: Dropdown fieldd label on group edit form. _('Membership policy'), + // TRANS: Group membership policy option. array(User_group::JOIN_POLICY_OPEN => _('Open to all'), + // TRANS: Group membership policy option. User_group::JOIN_POLICY_MODERATE => _('Admin must approve all members')), // TRANS: Dropdown field title on group edit form. _('Whether admin approval is required to join this group.'), diff --git a/lib/implugin.php b/lib/implugin.php index c75e6a38af..d096c41a28 100644 --- a/lib/implugin.php +++ b/lib/implugin.php @@ -42,7 +42,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - abstract class ImPlugin extends Plugin { //name of this IM transport @@ -249,7 +248,7 @@ abstract class ImPlugin extends Plugin } /** - * send a confirmation code to a user + * Send a confirmation code to a user * * @param string $screenname screenname sending to * @param string $code the confirmation code @@ -259,12 +258,16 @@ abstract class ImPlugin extends Plugin */ function sendConfirmationCode($screenname, $code, $user) { - $body = sprintf(_('User "%s" on %s has said that your %s screenname belongs to them. ' . - 'If that\'s true, you can confirm by clicking on this URL: ' . - '%s' . + // @todo FIXME: parameter 4 is not being used. Should para3 and para4 be a markdown link? + // TRANS: Body text for confirmation code e-mail. + // TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, + // TRANS: %3$s is the display name of an IM plugin. + $body = sprintf(_('User "%1$s" on %2$s has said that your %3$s screenname belongs to them. ' . + 'If that is true, you can confirm by clicking on this URL: ' . + '%4$s' . ' . (If you cannot click it, copy-and-paste it into the ' . - 'address bar of your browser). If that user isn\'t you, ' . - 'or if you didn\'t request this confirmation, just ignore this message.'), + 'address bar of your browser). If that user is not you, ' . + 'or if you did not request this confirmation, just ignore this message.'), $user->nickname, common_config('site', 'name'), $this->getDisplayName(), common_local_url('confirmaddress', array('code' => $code))); return $this->sendMessage($screenname, $body); @@ -316,7 +319,6 @@ abstract class ImPlugin extends Plugin function broadcastNotice($notice) { - $ni = $notice->whoGets(); foreach ($ni as $user_id => $reason) { @@ -346,7 +348,9 @@ abstract class ImPlugin extends Plugin case NOTICE_INBOX_SOURCE_GROUP: break; default: - throw new Exception(sprintf(_("Unknown inbox source %d."), $reason)); + // TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. + // TRANS: %d is the unknown inbox ID (number). + throw new Exception(sprintf(_('Unknown inbox source %d.'), $reason)); } common_log(LOG_INFO, @@ -483,6 +487,8 @@ abstract class ImPlugin extends Plugin $content_shortened = common_shorten_links($body); if (Notice::contentTooLong($content_shortened)) { $this->sendFromSite($screenname, + // TRANS: Message given when a status is too long. %1$s is the maximum number of characters, + // TRANS: %2$s is the number of characters sent (used for plural). sprintf(_m('Message too long - maximum is %1$d character, you sent %2$d.', 'Message too long - maximum is %1$d characters, you sent %2$d.', Notice::maxContent()), @@ -619,11 +625,13 @@ abstract class ImPlugin extends Plugin { if( ! common_config('queue', 'enabled')) { - throw new ServerException("Queueing must be enabled to use IM plugins"); + // TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. + throw new ServerException(_('Queueing must be enabled to use IM plugins.')); } if(is_null($this->transport)){ - throw new ServerException('transport cannot be null'); + // TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. + throw new ServerException(_('Transport cannot be null.')); } } } diff --git a/lib/joinform.php b/lib/joinform.php index 0918133a55..a1a6189b08 100644 --- a/lib/joinform.php +++ b/lib/joinform.php @@ -46,13 +46,11 @@ require_once INSTALLDIR.'/lib/form.php'; * * @see UnsubscribeForm */ - class JoinForm extends Form { /** * group for user to join */ - var $group = null; /** @@ -61,7 +59,6 @@ class JoinForm extends Form * @param HTMLOutputter $out output channel * @param group $group group to join */ - function __construct($out=null, $group=null) { parent::__construct($out); @@ -74,7 +71,6 @@ class JoinForm extends Form * * @return string ID of the form */ - function id() { return 'group-join-' . $this->group->id; @@ -85,7 +81,6 @@ class JoinForm extends Form * * @return string of the form class */ - function formClass() { return 'form_group_join ajax'; @@ -96,7 +91,6 @@ class JoinForm extends Form * * @return string URL of the action */ - function action() { return common_local_url('joingroup', @@ -108,9 +102,9 @@ class JoinForm extends Form * * @return void */ - function formActions() { - $this->out->submit('submit', _('Join')); + // TRANS: Button text for joining a group. + $this->out->submit('submit', _m('BUTTON','Join')); } } diff --git a/lib/jsonsearchresultslist.php b/lib/jsonsearchresultslist.php index 80d4036aad..8bf3678d4f 100644 --- a/lib/jsonsearchresultslist.php +++ b/lib/jsonsearchresultslist.php @@ -256,9 +256,9 @@ class ResultItem * * @return string a fully rendered source of the Notice */ - function getSourceLink($source) { + // Gettext translations for the below source types are available. $source_name = _($source); switch ($source) { case 'web': @@ -277,5 +277,4 @@ class ResultItem return $source_name; } - } diff --git a/lib/leaveform.php b/lib/leaveform.php index 34671f5f8d..a32af18eda 100644 --- a/lib/leaveform.php +++ b/lib/leaveform.php @@ -46,7 +46,6 @@ require_once INSTALLDIR.'/lib/form.php'; * * @see UnsubscribeForm */ - class LeaveForm extends Form { /** @@ -61,7 +60,6 @@ class LeaveForm extends Form * @param HTMLOutputter $out output channel * @param group $group group to leave */ - function __construct($out=null, $group=null) { parent::__construct($out); @@ -74,7 +72,6 @@ class LeaveForm extends Form * * @return string ID of the form */ - function id() { return 'group-leave-' . $this->group->id; @@ -85,7 +82,6 @@ class LeaveForm extends Form * * @return string of the form class */ - function formClass() { return 'form_group_leave ajax'; @@ -96,7 +92,6 @@ class LeaveForm extends Form * * @return string URL of the action */ - function action() { return common_local_url('leavegroup', @@ -108,9 +103,9 @@ class LeaveForm extends Form * * @return void */ - function formActions() { - $this->out->submit('submit', _('Leave')); + // TRANS: Button text on form to leave a group. + $this->out->submit('submit', _m('BUTTON','Leave')); } } diff --git a/lib/mailbox.php b/lib/mailbox.php index e9e4f78c6b..7c6567c6c1 100644 --- a/lib/mailbox.php +++ b/lib/mailbox.php @@ -42,7 +42,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @see InboxAction * @see OutboxAction */ - class MailboxAction extends CurrentUserDesignAction { var $page = null; @@ -71,12 +70,12 @@ class MailboxAction extends CurrentUserDesignAction * * @return void */ - function handle($args) { parent::handle($args); if (!$this->user) { + // TRANS: Client error displayed when trying to access a mailbox without providing a user. $this->clientError(_('No such user.'), 404); return; } @@ -84,6 +83,7 @@ class MailboxAction extends CurrentUserDesignAction $cur = common_current_user(); if (!$cur || $cur->id != $this->user->id) { + // TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. $this->clientError(_('Only the user can read their own mailboxes.'), 403); return; @@ -114,8 +114,9 @@ class MailboxAction extends CurrentUserDesignAction $this->trimmed('action'), array('nickname' => $this->user->nickname)); } else { - $this->element('p', - 'guide', + $this->element('p', + 'guide', + // TRANS: Message displayed when there are no private messages in the inbox of a user. _('You have no private messages. '. 'You can send private message to engage other users in conversation. '. 'People can send you messages for your eyes only.')); @@ -139,7 +140,6 @@ class MailboxAction extends CurrentUserDesignAction * * @return void */ - function showPageNotice() { $instr = $this->getInstructions(); @@ -157,7 +157,6 @@ class MailboxAction extends CurrentUserDesignAction * * @return boolean */ - function isReadOnly($args) { return true; diff --git a/lib/mailboxmenu.php b/lib/mailboxmenu.php index d2d3607dce..49e7dce21a 100644 --- a/lib/mailboxmenu.php +++ b/lib/mailboxmenu.php @@ -4,7 +4,7 @@ * Copyright (C) 2011, StatusNet, Inc. * * Private mailboxes menu - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -44,7 +44,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class MailboxMenu extends Menu { function show() @@ -56,15 +55,18 @@ class MailboxMenu extends Menu $this->item('inbox', array('nickname' => $nickname), - _('Inbox'), - _('Your incoming messages')); + // TRANS: Menu item in mailbox menu. Leads to incoming private messages. + _m('MENU','Inbox'), + // TRANS: Menu item title in mailbox menu. Leads to incoming private messages. + _('Your incoming messages.')); $this->item('outbox', array('nickname' => $nickname), - _('Outbox'), - _('Your sent messages')); + // TRANS: Menu item in mailbox menu. Leads to outgoing private messages. + _m('MENU','Outbox'), + // TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. + _('Your sent messages.')); $this->out->elementEnd('ul'); } - } diff --git a/lib/mailhandler.php b/lib/mailhandler.php index bbeb69a8f9..65c5622de3 100644 --- a/lib/mailhandler.php +++ b/lib/mailhandler.php @@ -21,7 +21,7 @@ require_once(INSTALLDIR . '/lib/mail.php'); require_once(INSTALLDIR . '/lib/mediafile.php'); require_once('Mail/mimeDecode.php'); -// FIXME: we use both Mail_mimeDecode and mailparse +// @todo FIXME: we use both Mail_mimeDecode and mailparse // Need to move everything to mailparse class MailHandler @@ -34,19 +34,23 @@ class MailHandler { list($from, $to, $msg, $attachments) = $this->parse_message($rawmessage); if (!$from || !$to || !$msg) { + // TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. $this->error(null, _('Could not parse message.')); } common_log(LOG_INFO, "Mail from $from to $to with ".count($attachments) .' attachment(s): ' .substr($msg, 0, 20)); $user = $this->user_from_header($from); if (!$user) { + // TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. $this->error($from, _('Not a registered user.')); return false; } if (!$this->user_match_to($user, $to)) { + // TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. $this->error($from, _('Sorry, that is not your incoming email address.')); return false; } if (!$user->emailpost) { + // TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. $this->error($from, _('Sorry, no incoming email allowed.')); return false; } @@ -57,7 +61,8 @@ class MailHandler $msg = $this->cleanup_msg($msg); $msg = $user->shortenLinks($msg); if (Notice::contentTooLong($msg)) { - $this->error($from, sprintf(_('That\'s too long. Maximum notice size is %d character.', + // TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. + $this->error($from, sprintf(_m('That\'s too long. Maximum notice size is %d character.', 'That\'s too long. Maximum notice size is %d characters.', Notice::maxContent()), Notice::maxContent())); @@ -66,7 +71,6 @@ class MailHandler $mediafiles = array(); foreach($attachments as $attachment){ - $mf = null; try { @@ -137,9 +141,9 @@ class MailHandler function respond($from, $to, $response) { - $headers['From'] = $to; $headers['To'] = $from; + // TRANS: E-mail subject for reply to an e-mail command. $headers['Subject'] = _('Command complete'); return mail_send(array($from), $headers, $response); @@ -226,7 +230,9 @@ class MailHandler function unsupported_type($type) { - $this->error(null, sprintf(_('Unsupported message type: %s'), $type)); + // TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. + // TRANS: %s is the unsupported type. + $this->error(null, sprintf(_('Unsupported message type: %s.'), $type)); } function cleanup_msg($msg) diff --git a/lib/messageform.php b/lib/messageform.php index 733e83cd15..bd46d7389d 100644 --- a/lib/messageform.php +++ b/lib/messageform.php @@ -46,19 +46,16 @@ require_once INSTALLDIR.'/lib/form.php'; * * @see HTMLOutputter */ - class MessageForm extends Form { /** * User to send a direct message to */ - var $to = null; /** * Pre-filled content of the form */ - var $content = null; /** @@ -68,7 +65,6 @@ class MessageForm extends Form * @param User $to user to send a message to * @param string $content content to pre-fill */ - function __construct($out=null, $to=null, $content=null) { parent::__construct($out); @@ -82,7 +78,6 @@ class MessageForm extends Form * * @return string ID of the form */ - function id() { return 'form_notice-direct'; @@ -93,7 +88,6 @@ class MessageForm extends Form * * @return string class of the form */ - function formClass() { return 'form_notice ajax-notice'; @@ -104,7 +98,6 @@ class MessageForm extends Form * * @return string URL of the action */ - function action() { return common_local_url('newmessage'); @@ -117,6 +110,7 @@ class MessageForm extends Form */ function formLegend() { + // TRANS: Form legend for direct notice. $this->out->element('legend', null, _('Send a direct notice')); } @@ -125,7 +119,6 @@ class MessageForm extends Form * * @return void */ - function formData() { $user = common_current_user(); @@ -133,7 +126,9 @@ class MessageForm extends Form $mutual_users = $user->mutuallySubscribedUsers(); $mutual = array(); - // TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. + // TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. + // TRANS: This is the default entry in the drop-down box, doubling as instructions + // TRANS: and a brake against accidental submissions with the first user in the list. $mutual[0] = _('Select recipient:'); while ($mutual_users->fetch()) { @@ -150,6 +145,7 @@ class MessageForm extends Form $mutual[0] = _('No mutual subscribers.'); } + // TRANS: Dropdown label in direct notice form. $this->out->dropdown('to', _('To'), $mutual, null, false, ($this->to) ? $this->to->id : null); @@ -173,13 +169,13 @@ class MessageForm extends Form * * @return void */ - function formActions() { $this->out->element('input', array('id' => 'notice_action-submit', 'class' => 'submit', 'name' => 'message_send', 'type' => 'submit', + // TRANS: Button text for sending a direct notice. 'value' => _m('Send button for sending notice', 'Send'))); } } diff --git a/lib/messagelist.php b/lib/messagelist.php index da7e9a6c27..0185977285 100644 --- a/lib/messagelist.php +++ b/lib/messagelist.php @@ -4,7 +4,7 @@ * Copyright (C) 2011, StatusNet, Inc. * * The message list widget - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -44,7 +44,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - abstract class MessageList extends Widget { var $message; @@ -60,10 +59,10 @@ abstract class MessageList extends Widget parent::__construct($out); $this->message = $message; } - + /** * Show the widget - * + * * Uses newItem() to create each new item. * * @return integer count of messages seen. @@ -74,6 +73,7 @@ abstract class MessageList extends Widget $this->out->elementStart('div', array('id' =>'notices_primary')); + // TRANS: Header in message list. $this->out->element('h2', null, _('Messages')); $this->out->elementStart('ul', 'notices messages'); @@ -85,7 +85,7 @@ abstract class MessageList extends Widget if ($cnt > MESSAGES_PER_PAGE) { break; } - + $mli = $this->newItem($this->message); $mli->show(); diff --git a/lib/messagelistitem.php b/lib/messagelistitem.php index 44e6976454..ba8cf834af 100644 --- a/lib/messagelistitem.php +++ b/lib/messagelistitem.php @@ -4,7 +4,7 @@ * Copyright (C) 2011, StatusNet, Inc. * * A single list item for showing in a message list - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -65,7 +65,6 @@ abstract class MessageListItem extends Widget * * @return void */ - function show() { $this->out->elementStart('li', array('class' => 'hentry notice', @@ -120,6 +119,7 @@ abstract class MessageListItem extends Widget if ($this->message->source) { $this->out->elementStart('span', 'source'); // FIXME: bad i18n. Device should be a parameter (from %s). + // TRANS: Followed by notice source (usually the client used to send the notice). $this->out->text(_('from')); $this->showSource($this->message->source); $this->out->elementEnd('span'); @@ -129,6 +129,29 @@ abstract class MessageListItem extends Widget $this->out->elementEnd('li'); } + /** + * Dummy method. Serves no other purpose than to make strings available used + * in self::showSource() through xgettext. + * + * @return void + */ + function messageListItemDummyMessages() + { + // A dummy array with messages. These will get extracted by xgettext and + // are used in self::showSource(). + $dummy_messages = array( + // TRANS: A possible notice source (web interface). + _m('SOURCE','web'), + // TRANS: A possible notice source (XMPP). + _m('SOURCE','xmpp'), + // TRANS: A possible notice source (e-mail). + _m('SOURCE','mail'), + // TRANS: A possible notice source (OpenMicroBlogging). + _m('SOURCE','omb'), + // TRANS: A possible notice source (Application Programming Interface). + _m('SOURCE','api'), + ); + } /** * Show the source of the message @@ -142,7 +165,7 @@ abstract class MessageListItem extends Widget */ function showSource($source) { - $source_name = _($source); + $source_name = _m('SOURCE',$source); switch ($source) { case 'web': case 'xmpp': diff --git a/lib/microappplugin.php b/lib/microappplugin.php index 0266f5184c..cd325560d3 100644 --- a/lib/microappplugin.php +++ b/lib/microappplugin.php @@ -4,7 +4,7 @@ * Copyright (C) 2011, StatusNet, Inc. * * Superclass for microapp plugin - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -39,8 +39,8 @@ if (!defined('STATUSNET')) { * * This class lets you define micro-applications with different kinds of activities. * - * The applications work more-or-less like other - * + * The applications work more-or-less like other + * * @category Microapp * @package StatusNet * @author Evan Prodromou @@ -48,7 +48,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - abstract class MicroAppPlugin extends Plugin { /** @@ -255,10 +254,9 @@ abstract class MicroAppPlugin extends Plugin * by calling the overridable $this->deleteRelated(). * * @param Notice $notice Notice being deleted - * + * * @return boolean hook value */ - function onNoticeDeleteRelated($notice) { if ($this->isMyNotice($notice)) { @@ -277,7 +275,6 @@ abstract class MicroAppPlugin extends Plugin * * @fixme WARNING WARNING WARNING this closes a 'div' that is implicitly opened in BookmarkPlugin's showNotice implementation */ - function onStartShowNoticeItem($nli) { if (!$this->isMyNotice($nli->notice)) { @@ -294,9 +291,9 @@ abstract class MicroAppPlugin extends Plugin $nli->showNoticeLocation(); $nli->showContext(); $nli->showRepeat(); - + $out->elementEnd('div'); - + $nli->showNoticeOptions(); return false; @@ -310,7 +307,6 @@ abstract class MicroAppPlugin extends Plugin * * @return boolean hook value */ - function onStartActivityObjectFromNotice($notice, &$object) { if ($this->isMyNotice($notice)) { @@ -329,7 +325,6 @@ abstract class MicroAppPlugin extends Plugin * * @return boolean hook value */ - function onStartHandleFeedEntryWithProfile($activity, $oprofile) { if ($this->isMyActivity($activity)) { @@ -337,7 +332,8 @@ abstract class MicroAppPlugin extends Plugin $actor = $oprofile->checkAuthorship($activity); if (empty($actor)) { - throw new ClientException(_('Can\'t get author for activity.')); + // TRANS: Client exception thrown when no author for an activity was found. + throw new ClientException(_('Cannot get author for activity.')); } $object = $activity->objects[0]; @@ -368,31 +364,32 @@ abstract class MicroAppPlugin extends Plugin function onStartHandleSalmonTarget($activity, $target) { if ($this->isMyActivity($activity)) { - $this->log(LOG_INFO, "Checking {$activity->id} as a valid Salmon slap."); if ($target instanceof User_group) { $uri = $target->getUri(); if (!in_array($uri, $activity->context->attention)) { - throw new ClientException(_("Bookmark not posted ". - "to this group.")); + // @todo FIXME: please document (i18n). + // TRANS: Client exception. + throw new ClientException(_('Bookmark not posted to this group.')); } } else if ($target instanceof User) { $uri = $target->uri; $original = null; if (!empty($activity->context->replyToID)) { - $original = Notice::staticGet('uri', - $activity->context->replyToID); + $original = Notice::staticGet('uri', + $activity->context->replyToID); } if (!in_array($uri, $activity->context->attention) && (empty($original) || $original->profile_id != $target->id)) { - throw new ClientException(_("Object not posted ". - "to this user.")); + // @todo FIXME: Please document (i18n). + // TRANS: Client exception. + throw new ClientException(_('Object not posted to this user.')); } } else { - throw new ServerException(_("Don't know how to handle ". - "this kind of target.")); + // TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. + throw new ServerException(_('Do not know how to handle this kind of target.')); } $actor = Ostatus_profile::ensureActivityObjectProfile($activity->actor); @@ -422,7 +419,6 @@ abstract class MicroAppPlugin extends Plugin * * @return boolean hook value */ - function onStartAtomPubNewActivity(&$activity, $user, &$notice) { if ($this->isMyActivity($activity)) { @@ -451,7 +447,6 @@ abstract class MicroAppPlugin extends Plugin * * @return boolean hook value */ - function onStartImportActivity($user, $author, $activity, $trusted, &$done) { if ($this->isMyActivity($activity)) { diff --git a/lib/noticeform.php b/lib/noticeform.php index ee4e2ca967..bc47dd1bd3 100644 --- a/lib/noticeform.php +++ b/lib/noticeform.php @@ -256,6 +256,7 @@ class NoticeForm extends Form 'data-api' => common_local_url('geocode'))); // @fixme checkbox method allows no way to change the id without changing the name + //// TRANS: Checkbox label to allow sharing geo location in notices. //$this->out->checkbox('notice_data-geo', _('Share my location'), true); $this->out->elementStart('label', 'notice_data-geo'); $this->out->element('input', array( diff --git a/lib/noticelist.php b/lib/noticelist.php index dbe2a0996f..273bf3a231 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -53,7 +53,6 @@ require_once INSTALLDIR.'/lib/attachmentlist.php'; * @see NoticeListItem * @see ProfileNoticeList */ - class NoticeList extends Widget { /** the current stream of notices being displayed. */ @@ -65,7 +64,6 @@ class NoticeList extends Widget * * @param Notice $notice stream of notices from DB_DataObject */ - function __construct($notice, $out=null) { parent::__construct($out); @@ -80,11 +78,11 @@ class NoticeList extends Widget * * @return int count of notices listed. */ - function show() { $this->out->elementStart('div', array('id' =>'notices_primary')); - $this->out->element('h2', null, _('Notices')); + // TRANS: Header in notice list. + $this->out->element('h2', null, _m('HEADER','Notices')); $this->out->elementStart('ol', array('class' => 'notices xoxo')); $cnt = 0; @@ -122,10 +120,8 @@ class NoticeList extends Widget * * @return NoticeListItem a list item for displaying the notice */ - function newListItem($notice) { return new NoticeListItem($notice, $this->out); } } - diff --git a/lib/noticelistitem.php b/lib/noticelistitem.php index 5942415c51..9c50966406 100644 --- a/lib/noticelistitem.php +++ b/lib/noticelistitem.php @@ -4,7 +4,7 @@ * Copyright (C) 2010, StatusNet, Inc. * * An item in a notice list - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -348,15 +348,20 @@ class NoticeListItem extends Widget if (empty($name)) { $latdms = $this->decimalDegreesToDMS(abs($lat)); $londms = $this->decimalDegreesToDMS(abs($lon)); - // TRANS: Used in coordinates as abbreviation of north + // TRANS: Used in coordinates as abbreviation of north. $north = _('N'); - // TRANS: Used in coordinates as abbreviation of south + // TRANS: Used in coordinates as abbreviation of south. $south = _('S'); - // TRANS: Used in coordinates as abbreviation of east + // TRANS: Used in coordinates as abbreviation of east. $east = _('E'); - // TRANS: Used in coordinates as abbreviation of west + // TRANS: Used in coordinates as abbreviation of west. $west = _('W'); $name = sprintf( + // TRANS: Coordinates message. + // TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, + // TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, + // TRANS: %5$s is longitude degrees, %6$s is longitude minutes, + // TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, _('%1$u°%2$u\'%3$u"%4$s %5$u°%6$u\'%7$u"%8$s'), $latdms['deg'],$latdms['min'], $latdms['sec'],($lat>0? $north:$south), $londms['deg'],$londms['min'], $londms['sec'],($lon>0? $east:$west)); @@ -366,6 +371,7 @@ class NoticeListItem extends Widget $this->out->text(' '); $this->out->elementStart('span', array('class' => 'location')); + // TRANS: Followed by geo location. $this->out->text(_('at')); $this->out->text(' '); if (empty($url)) { @@ -414,10 +420,12 @@ class NoticeListItem extends Widget $ns = $this->notice->getSource(); if ($ns) { - $source_name = (empty($ns->name)) ? ($ns->code ? _($ns->code) : _('web')) : _($ns->name); + // TRANS: A possible notice source (web interface). + $source_name = (empty($ns->name)) ? ($ns->code ? _($ns->code) : _m('SOURCE','web')) : _($ns->name); $this->out->text(' '); $this->out->elementStart('span', 'source'); // FIXME: probably i18n issue. If "from" is followed by text, that should be a parameter to "from" (from %s). + // TRANS: Followed by notice source. $this->out->text(_('from')); $this->out->text(' '); @@ -434,7 +442,6 @@ class NoticeListItem extends Widget // if $ns->name and $ns->url are populated we have // configured a source attr somewhere if (!empty($name) && !empty($url)) { - $this->out->elementStart('span', 'device'); $attrs = array( @@ -479,6 +486,7 @@ class NoticeListItem extends Widget array( 'href' => $convurl.'#notice-'.$this->notice->id, 'class' => 'response'), + // TRANS: Addition in notice list item if notice is part of a conversation. _('in context') ); } else { @@ -513,6 +521,7 @@ class NoticeListItem extends Widget $this->out->elementStart('span', 'repeat vcard'); + // TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. $this->out->raw(_('Repeated by')); $this->out->elementStart('a', $attrs); @@ -539,7 +548,9 @@ class NoticeListItem extends Widget array('replyto' => $this->profile->nickname, 'inreplyto' => $this->notice->id)); $this->out->elementStart('a', array('href' => $reply_url, 'class' => 'notice_reply', + // TRANS: Link title in notice list item to reply to a notice. 'title' => _('Reply to this notice'))); + // TRANS: Link text in notice list item to reply to a notice. $this->out->text(_('Reply')); $this->out->text(' '); $this->out->element('span', 'notice_id', $this->notice->id); @@ -565,7 +576,10 @@ class NoticeListItem extends Widget array('notice' => $todel->id)); $this->out->element('a', array('href' => $deleteurl, 'class' => 'notice_delete', - 'title' => _('Delete this notice')), _('Delete')); + // TRANS: Link title in notice list item to delete a notice. + 'title' => _('Delete this notice')), + // TRANS: Link text in notice list item to delete a notice. + _('Delete')); } } diff --git a/lib/noticeplaceholderform.php b/lib/noticeplaceholderform.php index 788a2021d9..87e64fb8d0 100644 --- a/lib/noticeplaceholderform.php +++ b/lib/noticeplaceholderform.php @@ -51,6 +51,7 @@ class NoticePlaceholderForm extends Widget function show() { // Similar to that for inline replies, but not quite! + // TRANS: Field label for notice text. $placeholder = _('Update your status...'); $this->out->elementStart('div', 'form_notice_placeholder'); $this->out->element('input', array('class' => 'placeholder', diff --git a/lib/nudgeform.php b/lib/nudgeform.php index 18a008122d..9a86576a89 100644 --- a/lib/nudgeform.php +++ b/lib/nudgeform.php @@ -46,13 +46,11 @@ require_once INSTALLDIR.'/lib/form.php'; * * @see DisfavorForm */ - class NudgeForm extends Form { /** * Profile of user to nudge */ - var $profile = null; /** @@ -61,7 +59,6 @@ class NudgeForm extends Form * @param HTMLOutputter $out output channel * @param Profile $profile profile of user to nudge */ - function __construct($out=null, $profile=null) { parent::__construct($out); @@ -74,7 +71,6 @@ class NudgeForm extends Form * * @return int ID of the form */ - function id() { return 'form_user_nudge'; @@ -86,7 +82,6 @@ class NudgeForm extends Form * * @return string of the form class */ - function formClass() { return 'form_user_nudge ajax'; @@ -98,7 +93,6 @@ class NudgeForm extends Form * * @return string URL of the action */ - function action() { return common_local_url('nudge', @@ -113,6 +107,7 @@ class NudgeForm extends Form */ function formLegend() { + // TRANS: Form legend of form to nudge/ping another user. $this->out->element('legend', null, _('Nudge this user')); } @@ -122,9 +117,14 @@ class NudgeForm extends Form * * @return void */ - function formActions() { - $this->out->submit('submit', _('Nudge'), 'submit', null, _('Send a nudge to this user')); + $this->out->submit('submit', + // TRANS: Button text to nudge/ping another user. + _m('BUTTON','Nudge'), + 'submit', + null, + // TRANS: Button title to nudge/ping another user. + _('Send a nudge to this user.')); } } diff --git a/lib/oauthstore.php b/lib/oauthstore.php index a52f6cee33..570343b82d 100644 --- a/lib/oauthstore.php +++ b/lib/oauthstore.php @@ -21,9 +21,9 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } require_once 'libomb/datastore.php'; +// @todo FIXME: Class documentation missing. class StatusNetOAuthDataStore extends OAuthDataStore { - // We keep a record of who's contacted us function lookup_consumer($consumer_key) { @@ -69,9 +69,7 @@ class StatusNetOAuthDataStore extends OAuthDataStore // http://oauth.net/core/1.0/#nonce // "The Consumer SHALL then generate a Nonce value that is unique for // all requests with that timestamp." - // XXX: It's not clear why the token is here - function lookup_nonce($consumer, $token, $nonce, $timestamp) { $n = new Nonce(); @@ -104,7 +102,6 @@ class StatusNetOAuthDataStore extends OAuthDataStore } // defined in OAuthDataStore, but not implemented anywhere - function fetch_request_token($consumer) { return $this->new_request_token($consumer); @@ -161,7 +158,6 @@ class StatusNetOAuthDataStore extends OAuthDataStore } // defined in OAuthDataStore, but not implemented anywhere - function fetch_access_token($consumer) { return $this->new_access_token($consumer); @@ -232,7 +228,7 @@ class StatusNetOAuthDataStore extends OAuthDataStore **/ public function getProfile($identifier_uri) { /* getProfile is only used for remote profiles by libomb. - TODO: Make it work with local ones anyway. */ + @TODO: Make it work with local ones anyway. */ $remote = Remote_profile::staticGet('uri', $identifier_uri); if (!$remote) throw new Exception('No such remote profile'); $profile = Profile::staticGet('id', $remote->id); @@ -291,6 +287,7 @@ class StatusNetOAuthDataStore extends OAuthDataStore $profile->created = DB_DataObject_Cast::dateTime(); # current time $id = $profile->insert(); if (!$id) { + // TRANS: Exception thrown when creating a new profile fails in OAuth store. throw new Exception(_('Error inserting new profile.')); } $remote->id = $id; @@ -299,6 +296,7 @@ class StatusNetOAuthDataStore extends OAuthDataStore $avatar_url = $omb_profile->getAvatarURL(); if ($avatar_url) { if (!$this->add_avatar($profile, $avatar_url)) { + // TRANS: Exception thrown when creating a new avatar fails in OAuth store. throw new Exception(_('Error inserting avatar.')); } } else { @@ -314,11 +312,13 @@ class StatusNetOAuthDataStore extends OAuthDataStore if ($exists) { if (!$remote->update($orig_remote)) { + // TRANS: Exception thrown when updating a remote profile fails in OAuth store. throw new Exception(_('Error updating remote profile.')); } } else { $remote->created = DB_DataObject_Cast::dateTime(); # current time if (!$remote->insert()) { + // TRANS: Exception thrown when creating a remote profile fails in OAuth store. throw new Exception(_('Error inserting remote profile.')); } } @@ -479,6 +479,7 @@ class StatusNetOAuthDataStore extends OAuthDataStore if (!$subscriber->hasRight(Right::SUBSCRIBE)) { common_log(LOG_INFO, __METHOD__ . ": remote subscriber banned ($subscriber_uri subbing to $subscribed_user_uri)"); + // TRANS: Error message displayed to a banned user when they try to subscribe. return _('You have been banned from subscribing.'); } @@ -504,7 +505,8 @@ class StatusNetOAuthDataStore extends OAuthDataStore if (!$result) { common_log_db_error($sub, ($sub_exists) ? 'UPDATE' : 'INSERT', __FILE__); - throw new Exception(_('Couldn\'t insert new subscription.')); + // TRANS: Exception thrown when creating a new subscription fails in OAuth store. + throw new Exception(_('Could not insert new subscription.')); return; } @@ -516,4 +518,3 @@ class StatusNetOAuthDataStore extends OAuthDataStore } } } -?> diff --git a/lib/personalgroupnav.php b/lib/personalgroupnav.php index 28bf8c529f..812e7194ef 100644 --- a/lib/personalgroupnav.php +++ b/lib/personalgroupnav.php @@ -43,7 +43,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class PersonalGroupNav extends Menu { /** @@ -56,7 +55,7 @@ class PersonalGroupNav extends Menu $user = common_current_user(); if (empty($user)) { - throw new ServerException('Do not show personal group nav with no current user.'); + throw new ServerException('Cannot show personal group navigation without a current user.'); } $user_profile = $user->getProfile(); @@ -71,24 +70,38 @@ class PersonalGroupNav extends Menu if (Event::handle('StartPersonalGroupNav', array($this))) { $this->out->menuItem(common_local_url('all', array('nickname' => $nickname)), - _('Home'), + // TRANS: Menu item in personal group navigation menu. + _m('MENU','Home'), + // TRANS: Menu item title in personal group navigation menu. + // TRANS: %s is a username. sprintf(_('%s and friends'), $name), $mine && $action =='all', 'nav_timeline_personal'); $this->out->menuItem(common_local_url('showstream', array('nickname' => $nickname)), - _('Profile'), + // TRANS: Menu item in personal group navigation menu. + _m('MENU','Profile'), + // TRANS: Menu item title in personal group navigation menu. _('Your profile'), $mine && $action =='showstream', 'nav_profile'); $this->out->menuItem(common_local_url('replies', array('nickname' => $nickname)), - _('Replies'), + // TRANS: Menu item in personal group navigation menu. + _m('MENU','Replies'), + // TRANS: Menu item title in personal group navigation menu. + // TRANS: %s is a username. sprintf(_('Replies to %s'), $name), $mine && $action =='replies', 'nav_timeline_replies'); $this->out->menuItem(common_local_url('showfavorites', array('nickname' => $nickname)), - _('Favorites'), - sprintf(_('%s\'s favorite notices'), ($user_profile) ? $name : _('User')), + // TRANS: Menu item in personal group navigation menu. + _m('MENU','Favorites'), + // @todo i18n FIXME: Need to make this two messages. + // TRANS: Menu item title in personal group navigation menu. + // TRANS: %s is a username. + sprintf(_('%s\'s favorite notices'), + // TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) + ($user_profile) ? $name : _m('FIXME','User')), $mine && $action =='showfavorites', 'nav_timeline_favorites'); $this->out->menuItem(common_local_url('peopletagsbyuser', array('nickname' => $nickname)), @@ -104,7 +117,9 @@ class PersonalGroupNav extends Menu $this->out->menuItem(common_local_url('inbox', array('nickname' => $nickname)), - _('Messages'), + // TRANS: Menu item in personal group navigation menu. + _m('MENU','Messages'), + // TRANS: Menu item title in personal group navigation menu. _('Your incoming messages'), $mine && $action =='inbox'); } diff --git a/lib/pluginlist.php b/lib/pluginlist.php index 07a17ba397..0bd1a15355 100644 --- a/lib/pluginlist.php +++ b/lib/pluginlist.php @@ -43,7 +43,6 @@ require INSTALLDIR . "/lib/plugindisableform.php"; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class PluginList extends Widget { var $plugins = array(); @@ -116,7 +115,7 @@ class PluginListItem extends Widget $this->out->elementEnd('a'); } $this->out->elementEnd('div'); - + $form = $this->getControlForm(); $form->show(); @@ -192,6 +191,7 @@ class PluginListItem extends Widget return $found; } else { return array('name' => $this->plugin, + // TRANS: Plugin description for a disabled plugin. 'rawdescription' => _m('plugin-description', '(Plugin descriptions unavailable when disabled.)')); } diff --git a/lib/primarynav.php b/lib/primarynav.php index 7748d7a1c7..7a9815af7b 100644 --- a/lib/primarynav.php +++ b/lib/primarynav.php @@ -4,7 +4,7 @@ * Copyright (C) 2011, StatusNet, Inc. * * Primary nav, show on all pages - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -54,34 +54,44 @@ class PrimaryNav extends Menu if (Event::handle('StartPrimaryNav', array($this->action))) { if (!empty($user)) { $this->action->menuItem(common_local_url('profilesettings'), - _m('Settings'), - _m('Change your personal settings'), + // TRANS: Menu item in primary navigation panel. + _m('MENU','Settings'), + // TRANS: Menu item title in primary navigation panel. + _('Change your personal settings.'), false, 'nav_account'); if ($user->hasRight(Right::CONFIGURESITE)) { $this->action->menuItem(common_local_url('siteadminpanel'), - _m('Admin'), - _m('Site configuration'), + // TRANS: Menu item in primary navigation panel. + _m('MENU','Admin'), + // TRANS: Menu item title in primary navigation panel. + _('Site configuration.'), false, 'nav_admin'); } $this->action->menuItem(common_local_url('logout'), - _m('Logout'), - _m('Logout from the site'), + // TRANS: Menu item in primary navigation panel. + _m('MENU','Logout'), + // TRANS: Menu item title in primary navigation panel. + _('Logout from the site.'), false, 'nav_logout'); } else { $this->action->menuItem(common_local_url('login'), - _m('Login'), - _m('Login to the site'), + // TRANS: Menu item in primary navigation panel. + _m('MENU','Login'), + // TRANS: Menu item title in primary navigation panel. + _('Login to the site.'), false, 'nav_login'); } if (!empty($user) || !common_config('site', 'private')) { $this->action->menuItem(common_local_url('noticesearch'), - _m('Search'), - _m('Search the site'), + // TRANS: Menu item in primary navigation panel. + _m('MENU','Search'), + // TRANS: Menu item title in primary navigation panel. + _('Search the site.'), false, 'nav_search'); } diff --git a/lib/profileformaction.php b/lib/profileformaction.php index 5706528223..b5f2e5d2a3 100644 --- a/lib/profileformaction.php +++ b/lib/profileformaction.php @@ -59,7 +59,7 @@ class ProfileFormAction extends RedirectingAction if (!common_logged_in()) { if ($_SERVER['REQUEST_METHOD'] == 'POST') { - // TRANS: Client error displayed when trying to change user options while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); } else { // Redirect to login. diff --git a/lib/publicgroupnav.php b/lib/publicgroupnav.php index 16916ca6bb..6f7b7febc3 100644 --- a/lib/publicgroupnav.php +++ b/lib/publicgroupnav.php @@ -45,7 +45,6 @@ require_once INSTALLDIR.'/lib/widget.php'; * * @see Widget */ - class PublicGroupNav extends Menu { /** @@ -53,7 +52,6 @@ class PublicGroupNav extends Menu * * @return void */ - function show() { $action_name = $this->action->trimmed('action'); @@ -61,13 +59,19 @@ class PublicGroupNav extends Menu $this->action->elementStart('ul', array('class' => 'nav')); if (Event::handle('StartPublicGroupNav', array($this))) { - $this->out->menuItem(common_local_url('public'), _('Public'), + // TRANS: Menu item in search group navigation panel. + $this->out->menuItem(common_local_url('public'), _m('MENU','Public'), + // TRANS: Menu item title in search group navigation panel. _('Public timeline'), $action_name == 'public', 'nav_timeline_public'); - $this->out->menuItem(common_local_url('groups'), _('Groups'), + // TRANS: Menu item in search group navigation panel. + $this->out->menuItem(common_local_url('groups'), _m('MENU','Groups'), + // TRANS: Menu item title in search group navigation panel. _('User groups'), $action_name == 'groups', 'nav_groups'); - $this->out->menuItem(common_local_url('publictagcloud'), _('Recent tags'), + // TRANS: Menu item in search group navigation panel. + $this->out->menuItem(common_local_url('publictagcloud'), _m('MENU','Recent tags'), + // TRANS: Menu item title in search group navigation panel. _('Recent tags'), $action_name == 'publictagcloud', 'nav_recent-tags'); $this->out->menuItem(common_local_url('publicpeopletagcloud'), _('People tags'), @@ -75,12 +79,16 @@ class PublicGroupNav extends Menu 'peopletag', 'selftag')), 'nav_people-tags'); if (count(common_config('nickname', 'featured')) > 0) { - $this->out->menuItem(common_local_url('featured'), _('Featured'), + // TRANS: Menu item in search group navigation panel. + $this->out->menuItem(common_local_url('featured'), _m('MENU','Featured'), + // TRANS: Menu item title in search group navigation panel. _('Featured users'), $action_name == 'featured', 'nav_featured'); } - $this->out->menuItem(common_local_url('favorited'), _('Popular'), - _("Popular notices"), $action_name == 'favorited', 'nav_timeline_favorited'); + // TRANS: Menu item in search group navigation panel. + $this->out->menuItem(common_local_url('favorited'), _m('MENU','Popular'), + // TRANS: Menu item title in search group navigation panel. + _('Popular notices'), $action_name == 'favorited', 'nav_timeline_favorited'); Event::handle('EndPublicGroupNav', array($this)); } diff --git a/lib/redirectingaction.php b/lib/redirectingaction.php index 3a358f891c..0827f11a0a 100644 --- a/lib/redirectingaction.php +++ b/lib/redirectingaction.php @@ -42,21 +42,18 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - - class RedirectingAction extends Action { - /** * Redirect browser to the page our hidden parameters requested, * or if none given, to the url given by $this->defaultReturnTo(). - * + * * To be called only after successful processing. - * + * * Note: this was named returnToArgs() up through 0.9.2, which * caused problems because there's an Action::returnToArgs() * already which does something different. - * + * * @return void */ function returnToPrevious() @@ -87,11 +84,12 @@ class RedirectingAction extends Action * If we reached this form without returnto arguments, where should * we go? May be overridden by subclasses to a reasonable destination * for that action; default implementation throws an exception. - * + * * @return string URL */ function defaultReturnTo() { - $this->clientError(_("No return-to arguments.")); + // TRANS: Client error displayed when return-to was defined without a target. + $this->clientError(_('No return-to arguments.')); } } diff --git a/lib/repeatform.php b/lib/repeatform.php index 4f1c8aa320..67fc47b8de 100644 --- a/lib/repeatform.php +++ b/lib/repeatform.php @@ -40,13 +40,11 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class RepeatForm extends Form { /** * Notice to repeat */ - var $notice = null; /** @@ -55,7 +53,6 @@ class RepeatForm extends Form * @param HTMLOutputter $out output channel * @param Notice $notice notice to repeat */ - function __construct($out=null, $notice=null) { parent::__construct($out); @@ -68,7 +65,6 @@ class RepeatForm extends Form * * @return int ID of the form */ - function id() { return 'repeat-' . $this->notice->id; @@ -79,7 +75,6 @@ class RepeatForm extends Form * * @return string URL of the action */ - function action() { return common_local_url('repeat'); @@ -90,7 +85,6 @@ class RepeatForm extends Form * * @return void */ - function sessionToken() { $this->out->hidden('token-' . $this->notice->id, @@ -104,6 +98,7 @@ class RepeatForm extends Form */ function formLegend() { + // TRANS: For legend for notice repeat form. $this->out->element('legend', null, _('Repeat this notice?')); } @@ -112,7 +107,6 @@ class RepeatForm extends Form * * @return void */ - function formData() { $this->out->hidden('notice-n'.$this->notice->id, @@ -125,11 +119,13 @@ class RepeatForm extends Form * * @return void */ - function formActions() { $this->out->submit('repeat-submit-' . $this->notice->id, - _('Yes'), 'submit', null, _('Repeat this notice')); + // TRANS: Button text to repeat a notice on notice repeat form. + _m('BUTTON','Yes'), 'submit', null, + // TRANS: Button title to repeat a notice on notice repeat form. + _('Repeat this notice.')); } /** @@ -137,7 +133,6 @@ class RepeatForm extends Form * * @return string the form's class */ - function formClass() { return 'form_repeat'; diff --git a/lib/revokeroleform.php b/lib/revokeroleform.php index ec24b99101..f33951bb40 100644 --- a/lib/revokeroleform.php +++ b/lib/revokeroleform.php @@ -42,7 +42,6 @@ if (!defined('STATUSNET')) { * * @see UnSandboxForm */ - class RevokeRoleForm extends ProfileActionForm { function __construct($role, $label, $writer, $profile, $r2args) @@ -57,7 +56,6 @@ class RevokeRoleForm extends ProfileActionForm * * @return string Name of the action, lowercased. */ - function target() { return 'revokerole'; @@ -68,7 +66,6 @@ class RevokeRoleForm extends ProfileActionForm * * @return string Title of the form, internationalized */ - function title() { return $this->label; @@ -85,9 +82,9 @@ class RevokeRoleForm extends ProfileActionForm * * @return string description of the form, internationalized */ - function description() { + // TRANS: Description of role revoke form. %s is the role to be revoked. return sprintf(_('Revoke the "%s" role from this user'), $this->label); } } diff --git a/lib/sandboxform.php b/lib/sandboxform.php index 7a98e0a5f9..d1e4fea963 100644 --- a/lib/sandboxform.php +++ b/lib/sandboxform.php @@ -42,7 +42,6 @@ if (!defined('STATUSNET')) { * * @see UnSandboxForm */ - class SandboxForm extends ProfileActionForm { /** @@ -50,7 +49,6 @@ class SandboxForm extends ProfileActionForm * * @return string Name of the action, lowercased. */ - function target() { return 'sandbox'; @@ -61,10 +59,10 @@ class SandboxForm extends ProfileActionForm * * @return string Title of the form, internationalized */ - function title() { - return _('Sandbox'); + // TRANS: Title of form to sandbox a user. + return _m('TITLE','Sandbox'); } /** @@ -72,9 +70,9 @@ class SandboxForm extends ProfileActionForm * * @return string description of the form, internationalized */ - function description() { + // TRANS: Description of form to sandbox a user. return _('Sandbox this user'); } } diff --git a/lib/searchaction.php b/lib/searchaction.php index 7038424fab..030d2bb724 100644 --- a/lib/searchaction.php +++ b/lib/searchaction.php @@ -138,22 +138,18 @@ class SearchAction extends Action } function searchSuggestions($q) { - // @todo FIXME: i18n issue: This formatting does not make this string get picked up by gettext. - // TRANS: Standard search suggestions shown when a search does not give any results. - $message = _(<<elementStart('div', 'help instructions'); $this->raw(common_markup_to_html($message)); diff --git a/lib/searchgroupnav.php b/lib/searchgroupnav.php index cfe8fde353..40fe6a6375 100644 --- a/lib/searchgroupnav.php +++ b/lib/searchgroupnav.php @@ -42,7 +42,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * * @see Widget */ - class SearchGroupNav extends Menu { var $q = null; @@ -52,7 +51,6 @@ class SearchGroupNav extends Menu * * @param Action $action current action, used for output */ - function __construct($action=null, $q = null) { parent::__construct($action); @@ -64,7 +62,6 @@ class SearchGroupNav extends Menu * * @return void */ - function show() { $action_name = $this->action->trimmed('action'); @@ -73,13 +70,18 @@ class SearchGroupNav extends Menu if ($this->q) { $args['q'] = $this->q; } - $this->out->menuItem(common_local_url('peoplesearch', $args), _('People'), + // TRANS: Menu item in search group navigation panel. + $this->out->menuItem(common_local_url('peoplesearch', $args), _m('MENU','People'), + // TRANS: Menu item title in search group navigation panel. _('Find people on this site'), $action_name == 'peoplesearch', 'nav_search_people'); - $this->out->menuItem(common_local_url('noticesearch', $args), _('Notices'), + // TRANS: Menu item in search group navigation panel. + $this->out->menuItem(common_local_url('noticesearch', $args), _m('MENU','Notices'), + // TRANS: Menu item title in search group navigation panel. _('Find content of notices'), $action_name == 'noticesearch', 'nav_search_notice'); - $this->out->menuItem(common_local_url('groupsearch', $args), _('Groups'), + // TRANS: Menu item in search group navigation panel. + $this->out->menuItem(common_local_url('groupsearch', $args), _m('MENU','Groups'), + // TRANS: Menu item title in search group navigation panel. _('Find groups on this site'), $action_name == 'groupsearch', 'nav_search_group'); $this->action->elementEnd('ul'); } } - diff --git a/lib/secondarynav.php b/lib/secondarynav.php index 542de51ac1..7d38e74ffc 100644 --- a/lib/secondarynav.php +++ b/lib/secondarynav.php @@ -44,7 +44,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class SecondaryNav extends Menu { function show() @@ -53,36 +52,36 @@ class SecondaryNav extends Menu 'id' => 'site_nav_global_secondary')); if (Event::handle('StartSecondaryNav', array($this->action))) { $this->out->menuItem(common_local_url('doc', array('title' => 'help')), - // TRANS: Secondary navigation menu option leading to help on StatusNet. - _('Help')); + // TRANS: Secondary navigation menu item leading to help on StatusNet. + _m('MENU','Help')); $this->out->menuItem(common_local_url('doc', array('title' => 'about')), - // TRANS: Secondary navigation menu option leading to text about StatusNet site. - _('About')); + // TRANS: Secondary navigation menu item leading to text about StatusNet site. + _m('MENU','About')); $this->out->menuItem(common_local_url('doc', array('title' => 'faq')), - // TRANS: Secondary navigation menu option leading to Frequently Asked Questions. - _('FAQ')); + // TRANS: Secondary navigation menu item leading to Frequently Asked Questions. + _m('MENU','FAQ')); $bb = common_config('site', 'broughtby'); if (!empty($bb)) { $this->out->menuItem(common_local_url('doc', array('title' => 'tos')), - // TRANS: Secondary navigation menu option leading to Terms of Service. - _('TOS')); + // TRANS: Secondary navigation menu item leading to Terms of Service. + _m('MENU','TOS')); } $this->out->menuItem(common_local_url('doc', array('title' => 'privacy')), - // TRANS: Secondary navigation menu option leading to privacy policy. - _('Privacy')); + // TRANS: Secondary navigation menu item leading to privacy policy. + _m('MENU','Privacy')); $this->out->menuItem(common_local_url('doc', array('title' => 'source')), - // TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. - _('Source')); + // TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. + _m('MENU','Source')); $this->out->menuItem(common_local_url('version'), - // TRANS: Secondary navigation menu option leading to version information on the StatusNet site. - _('Version')); + // TRANS: Secondary navigation menu item leading to version information on the StatusNet site. + _m('MENU','Version')); $this->out->menuItem(common_local_url('doc', array('title' => 'contact')), - // TRANS: Secondary navigation menu option leading to e-mail contact information on the + // TRANS: Secondary navigation menu item leading to e-mail contact information on the // TRANS: StatusNet site, where to report bugs, ... - _('Contact')); + _m('MENU','Contact')); $this->out->menuItem(common_local_url('doc', array('title' => 'badge')), - // TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. - _('Badge')); + // TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. + _m('MENU','Badge')); Event::handle('EndSecondaryNav', array($this->action)); } $this->out->elementEnd('ul'); diff --git a/lib/section.php b/lib/section.php index 53a3a70fa7..753a37efa4 100644 --- a/lib/section.php +++ b/lib/section.php @@ -45,7 +45,6 @@ require_once INSTALLDIR.'/lib/widget.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class Section extends Widget { /** @@ -56,7 +55,6 @@ class Section extends Widget * @return void * @see Widget::show() */ - function show() { $this->out->elementStart('div', @@ -86,12 +84,14 @@ class Section extends Widget function title() { + // TRANS: Default title for section/sidebar widget. return _('Untitled section'); } function showContent() { $this->out->element('p', null, + // TRANS: Default content for section/sidebar widget. _('(None)')); return false; } @@ -103,6 +103,7 @@ class Section extends Widget function moreTitle() { + // TRANS: Default "More..." title for section/sidebar widget. return _('More...'); } } diff --git a/lib/settingsaction.php b/lib/settingsaction.php index c7113d15c2..c70a5ffa8d 100644 --- a/lib/settingsaction.php +++ b/lib/settingsaction.php @@ -69,6 +69,7 @@ class SettingsAction extends CurrentUserDesignAction { parent::handle($args); if (!common_logged_in()) { + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return; } else if (!common_is_real_login()) { diff --git a/lib/settingsnav.php b/lib/settingsnav.php index 2987e36ea9..14eab6dc1d 100644 --- a/lib/settingsnav.php +++ b/lib/settingsnav.php @@ -4,7 +4,7 @@ * Copyright (C) 2010,2011, StatusNet, Inc. * * Settings menu - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -45,7 +45,6 @@ if (!defined('STATUSNET')) { * * @see HTMLOutputter */ - class SettingsNav extends Menu { /** @@ -53,7 +52,6 @@ class SettingsNav extends Menu * * @return void */ - function show() { $actionName = $this->action->trimmed('action'); @@ -63,11 +61,15 @@ class SettingsNav extends Menu // Stub section w/ home link $this->action->elementStart('ul'); - $this->action->element('h3', null, _('Home')); + // TRANS: Header in settings navigation panel. + $this->action->element('h3', null, _m('HEADER','Home')); $this->action->elementStart('ul', 'nav'); $this->out->menuItem(common_local_url('all', array('nickname' => $nickname)), - _('Home'), + // TRANS: Menu item in settings navigation panel. + _m('MENU','Home'), + // TRANS: Menu item title in settings navigation panel. + // TRANS: %s is a username. sprintf(_('%s and friends'), $name), $this->action == 'all', 'nav_timeline_personal'); @@ -75,58 +77,77 @@ class SettingsNav extends Menu $this->action->elementEnd('ul'); $this->action->elementStart('ul'); - $this->action->element('h3', null, _('Settings')); + // TRANS: Header in settings navigation panel. + $this->action->element('h3', null, _m('HEADER','Settings')); $this->action->elementStart('ul', array('class' => 'nav')); if (Event::handle('StartAccountSettingsNav', array(&$this->action))) { $this->action->menuItem(common_local_url('profilesettings'), - _('Profile'), + // TRANS: Menu item in settings navigation panel. + _m('MENU','Profile'), + // TRANS: Menu item title in settings navigation panel. _('Change your profile settings'), $actionName == 'profilesettings'); $this->action->menuItem(common_local_url('avatarsettings'), - _('Avatar'), + // TRANS: Menu item in settings navigation panel. + _m('MENU','Avatar'), + // TRANS: Menu item title in settings navigation panel. _('Upload an avatar'), $actionName == 'avatarsettings'); $this->action->menuItem(common_local_url('passwordsettings'), - _('Password'), + // TRANS: Menu item in settings navigation panel. + _m('MENU','Password'), + // TRANS: Menu item title in settings navigation panel. _('Change your password'), $actionName == 'passwordsettings'); $this->action->menuItem(common_local_url('emailsettings'), - _('Email'), + // TRANS: Menu item in settings navigation panel. + _m('MENU','Email'), + // TRANS: Menu item title in settings navigation panel. _('Change email handling'), $actionName == 'emailsettings'); $this->action->menuItem(common_local_url('userdesignsettings'), - _('Design'), + // TRANS: Menu item in settings navigation panel. + _m('MENU','Design'), + // TRANS: Menu item title in settings navigation panel. _('Design your profile'), $actionName == 'userdesignsettings'); $this->action->menuItem(common_local_url('urlsettings'), - _('URL'), + // TRANS: Menu item in settings navigation panel. + _m('MENU','URL'), + // TRANS: Menu item title in settings navigation panel. _('URL shorteners'), $actionName == 'urlsettings'); Event::handle('EndAccountSettingsNav', array(&$this->action)); - + if (common_config('xmpp', 'enabled')) { $this->action->menuItem(common_local_url('imsettings'), - _m('IM'), + // TRANS: Menu item in settings navigation panel. + _m('MENU','IM'), + // TRANS: Menu item title in settings navigation panel. _('Updates by instant messenger (IM)'), $actionName == 'imsettings'); } if (common_config('sms', 'enabled')) { $this->action->menuItem(common_local_url('smssettings'), - _m('SMS'), + // TRANS: Menu item in settings navigation panel. + _m('MENU','SMS'), + // TRANS: Menu item title in settings navigation panel. _('Updates by SMS'), $actionName == 'smssettings'); } $this->action->menuItem(common_local_url('oauthconnectionssettings'), - _('Connections'), + // TRANS: Menu item in settings navigation panel. + _m('MENU','Connections'), + // TRANS: Menu item title in settings navigation panel. _('Authorized connected applications'), $actionName == 'oauthconnectionsettings'); diff --git a/lib/silenceform.php b/lib/silenceform.php index 9673fa1208..9d05f5d09f 100644 --- a/lib/silenceform.php +++ b/lib/silenceform.php @@ -42,7 +42,6 @@ if (!defined('STATUSNET')) { * * @see UnSilenceForm */ - class SilenceForm extends ProfileActionForm { /** @@ -50,7 +49,6 @@ class SilenceForm extends ProfileActionForm * * @return string Name of the action, lowercased. */ - function target() { return 'silence'; @@ -61,10 +59,10 @@ class SilenceForm extends ProfileActionForm * * @return string Title of the form, internationalized */ - function title() { - return _('Silence'); + // TRANS: Title of form to silence a user. + return _m('TITLE','Silence'); } /** @@ -72,9 +70,9 @@ class SilenceForm extends ProfileActionForm * * @return string description of the form, internationalized */ - function description() { + // TRANS: Description of form to silence a user. return _('Silence this user'); } } diff --git a/lib/subgroupnav.php b/lib/subgroupnav.php index 75c9a71c7b..abadaee622 100644 --- a/lib/subgroupnav.php +++ b/lib/subgroupnav.php @@ -108,6 +108,7 @@ class SubGroupNav extends Menu array('nickname' => $this->user->nickname)), // TRANS: Menu item in local navigation menu. + // TRANS: %d is the number of pending subscription requests. sprintf(_m('MENU','Pending (%d)'), $pending), // TRANS: Menu item title in local navigation menu. sprintf(_('Approve pending subscription requests.'), diff --git a/lib/subscribeform.php b/lib/subscribeform.php index 1cc5b4e48e..f10d884ed8 100644 --- a/lib/subscribeform.php +++ b/lib/subscribeform.php @@ -46,13 +46,11 @@ require_once INSTALLDIR.'/lib/form.php'; * * @see UnsubscribeForm */ - class SubscribeForm extends Form { /** * Profile of user to subscribe to */ - var $profile = null; /** @@ -61,7 +59,6 @@ class SubscribeForm extends Form * @param HTMLOutputter $out output channel * @param Profile $profile profile of user to subscribe to */ - function __construct($out=null, $profile=null) { parent::__construct($out); @@ -74,37 +71,31 @@ class SubscribeForm extends Form * * @return int ID of the form */ - function id() { return 'subscribe-' . $this->profile->id; } - /** * class of the form * * @return string of the form class */ - function formClass() { return 'form_user_subscribe ajax'; } - /** * Action of the form * * @return string URL of the action */ - function action() { return common_local_url('subscribe'); } - /** * Legend of the Form * @@ -112,6 +103,7 @@ class SubscribeForm extends Form */ function formLegend() { + // TRANS: Form of form to subscribe to a user. $this->out->element('legend', null, _('Subscribe to this user')); } @@ -120,7 +112,6 @@ class SubscribeForm extends Form * * @return void */ - function formData() { $this->out->hidden('subscribeto-' . $this->profile->id, @@ -133,9 +124,11 @@ class SubscribeForm extends Form * * @return void */ - function formActions() { - $this->out->submit('submit', _('Subscribe'), 'submit', null, _('Subscribe to this user')); + // TRANS: Button text to subscribe to a user. + $this->out->submit('submit', _m('BUTTON','Subscribe'), 'submit', null, + // TRANS: Button title to subscribe to a user. + _('Subscribe to this user.')); } } diff --git a/lib/subscriberspeopleselftagcloudsection.php b/lib/subscriberspeopleselftagcloudsection.php index b4ada901c0..ddbf389868 100644 --- a/lib/subscriberspeopleselftagcloudsection.php +++ b/lib/subscriberspeopleselftagcloudsection.php @@ -40,23 +40,19 @@ 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 SubscribersPeopleSelfTagCloudSection extends SubPeopleTagCloudSection { function title() { + // TRANS: Title of personal tag cloud section. return _('People Tagcloud as self-tagged'); } function query() { // return 'select tag, count(tag) as weight from subscription left join profile_tag on tagger = subscriber where subscribed=%d and subscribed != subscriber and tagger = tagged group by tag order by weight desc'; - return 'select profile_tag.tag, count(profile_tag.tag) as weight from subscription left join (profile_tag, profile_list) on profile_list.tag = profile_tag.tag and profile_list.tagger = profile_tag.tagger and profile_tag.tagger = subscriber where subscribed=%d and subscribed != subscriber and profile_tag.tagger = tagged and profile_list.private = false and profile_tag.tag is not null group by profile_tag.tag order by weight desc'; // return 'select tag, count(tag) as weight from subscription left join profile_tag on tagger = subscribed where subscriber=%d and subscribed != subscriber and tagger = tagged and tag is not null group by tag order by weight desc'; - - } } - diff --git a/lib/subscriberspeopletagcloudsection.php b/lib/subscriberspeopletagcloudsection.php index 65c4a4f066..c3602a6b46 100644 --- a/lib/subscriberspeopletagcloudsection.php +++ b/lib/subscriberspeopletagcloudsection.php @@ -40,11 +40,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 SubscribersPeopleTagCloudSection extends SubPeopleTagCloudSection { function title() { + // TRANS: Title of personal tag cloud section. return _('People Tagcloud as tagged'); } @@ -58,4 +58,3 @@ class SubscribersPeopleTagCloudSection extends SubPeopleTagCloudSection return 'select profile_tag.tag, count(profile_tag.tag) as weight from subscription left join (profile_tag, profile_list) on subscriber=profile_tag.tagged and subscribed=profile_tag.tagger and profile_tag.tagger = profile_list.tagger and profile_tag.tag = profile_list.tag where subscribed=%d and subscriber != subscribed and profile_list.private = false and profile_tag.tag is not null group by profile_tag.tag order by weight desc'; } } - diff --git a/lib/subscriptionlist.php b/lib/subscriptionlist.php index 3ca4603948..ea0aa7f1ab 100644 --- a/lib/subscriptionlist.php +++ b/lib/subscriptionlist.php @@ -1,5 +1,4 @@ isOwn()) { $this->out->element('a', array('href' => common_local_url('tagother', array('id' => $this->profile->id))), + // TRANS: Description for link to "tag other users" in widget to show a list of profiles. _('Tags')); } else { + // TRANS: Text widget to show a list of profiles with their tags. $this->out->text(_('Tags')); } if ($tags) { @@ -120,6 +121,7 @@ class SubscriptionListItem extends ProfileListItem } $this->out->elementEnd('ul'); } else { + // TRANS: Text if there are no tags in widget to show a list of profiles by tag. $this->out->text(_('(None)')); } } diff --git a/lib/subscriptionspeopleselftagcloudsection.php b/lib/subscriptionspeopleselftagcloudsection.php index cb87ae0440..7334234fc6 100644 --- a/lib/subscriptionspeopleselftagcloudsection.php +++ b/lib/subscriptionspeopleselftagcloudsection.php @@ -40,22 +40,19 @@ 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 SubscriptionsPeopleSelfTagCloudSection extends SubPeopleTagCloudSection { function title() { + // TRANS: Title of personal tag cloud section. return _('People Tagcloud as self-tagged'); } function query() { // return 'select tag, count(tag) as weight from subscription left join profile_tag on tagger = subscriber where subscribed=%d and subscriber != subscribed and tagger = tagged group by tag order by weight desc'; - - return 'select profile_tag.tag, count(profile_tag.tag) as weight from subscription left join (profile_tag, profile_list) on profile_tag.tagger = subscribed and profile_tag.tag = profile_list.tag and profile_tag.tagger = profile_tag.tagger where subscriber=%d and subscribed != subscriber and profile_tag.tagger = profile_tag.tagged and profile_list.private = false and profile_tag.tag is not null group by profile_tag.tag order by weight desc'; // return 'select tag, count(tag) as weight from subscription left join profile_tag on tagger = subscriber where subscribed=%d and subscribed != subscriber and tagger = tagged and tag is not null group by tag order by weight desc'; } } - diff --git a/lib/subscriptionspeopletagcloudsection.php b/lib/subscriptionspeopletagcloudsection.php index 1a42bf90be..e1016404c1 100644 --- a/lib/subscriptionspeopletagcloudsection.php +++ b/lib/subscriptionspeopletagcloudsection.php @@ -40,11 +40,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 SubscriptionsPeopleTagCloudSection extends SubPeopleTagCloudSection { function title() { + // TRANS: Title of personal tag cloud section. return _('People Tagcloud as tagged'); } @@ -58,4 +58,3 @@ class SubscriptionsPeopleTagCloudSection extends SubPeopleTagCloudSection return 'select profile_tag.tag, count(profile_tag.tag) as weight from subscription left join (profile_tag, profile_list) on subscriber=profile_tag.tagger and subscribed=tagged and profile_tag.tag = profile_list.tag and profile_tag.tagger = profile_list.tagger where subscriber=%d and subscriber != subscribed and profile_list.private = false and profile_tag.tag is not null group by profile_tag.tag order by weight desc'; } } - diff --git a/lib/tagcloudsection.php b/lib/tagcloudsection.php index 692f5d9662..561ffb077f 100644 --- a/lib/tagcloudsection.php +++ b/lib/tagcloudsection.php @@ -45,7 +45,6 @@ define('TAGS_PER_SECTION', 20); * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class TagCloudSection extends Section { function showContent() @@ -53,7 +52,8 @@ class TagCloudSection extends Section $tags = $this->getTags(); if (!$tags) { - $this->out->element('p', null, _('None')); + // TRANS: Content displayed in a tag cloud section if there are no tags. + $this->out->element('p', null, _m('NOTAGS','None')); return false; } @@ -68,7 +68,8 @@ class TagCloudSection extends Section } if ($cnt == 0) { - $this->out->element('p', null, _('(None)')); + // TRANS: Content displayed in a tag cloud section if there are no tags. + $this->out->element('p', null, _m('NOTAGS','None')); return false; } diff --git a/lib/themeuploader.php b/lib/themeuploader.php index b7b14d7b9e..a68231d844 100644 --- a/lib/themeuploader.php +++ b/lib/themeuploader.php @@ -34,7 +34,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { /** * Encapsulation of the validation-and-save process when dealing with * a user-uploaded StatusNet theme archive... - * + * * @todo extract theme metadata from css/display.css * @todo allow saving multiple themes */ @@ -47,7 +47,8 @@ class ThemeUploader public function __construct($filename) { if (!class_exists('ZipArchive')) { - throw new Exception(_("This server cannot handle theme uploads without ZIP support.")); + // TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. + throw new Exception(_('This server cannot handle theme uploads without ZIP support.')); } $this->sourceFile = $filename; } @@ -55,10 +56,12 @@ class ThemeUploader public static function fromUpload($name) { if (!isset($_FILES[$name]['error'])) { - throw new ServerException(_("The theme file is missing or the upload failed.")); + // TRANS: Server exception thrown when uploading a theme fails. + throw new ServerException(_('The theme file is missing or the upload failed.')); } if ($_FILES[$name]['error'] != UPLOAD_ERR_OK) { - throw new ServerException(_("The theme file is missing or the upload failed.")); + // TRANS: Server exception thrown when uploading a theme fails. + throw new ServerException(_('The theme file is missing or the upload failed.')); } return new ThemeUploader($_FILES[$name]['tmp_name']); } @@ -88,7 +91,8 @@ class ThemeUploader $this->loud(); if (!$ok) { common_log(LOG_ERR, "Could not move old custom theme from $destDir to $killDir"); - throw new ServerException(_("Failed saving theme.")); + // TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. + throw new ServerException(_('Failed saving theme.')); } } else { $killDir = false; @@ -99,7 +103,8 @@ class ThemeUploader $this->loud(); if (!$ok) { common_log(LOG_ERR, "Could not move saved theme from $tmpDir to $destDir"); - throw new ServerException(_("Failed saving theme.")); + // TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. + throw new ServerException(_('Failed saving theme.')); } if ($killDir) { @@ -108,7 +113,7 @@ class ThemeUploader } /** - * + * */ protected function traverseArchive($zip, $outdir=false) { @@ -144,7 +149,8 @@ class ThemeUploader $commonBaseDir = $baseDir; } else { if ($commonBaseDir != $baseDir) { - throw new ClientException(_("Invalid theme: bad directory structure.")); + // TRANS: Server exception thrown when an uploaded theme has an incorrect structure. + throw new ClientException(_('Invalid theme: Bad directory structure.')); } } @@ -158,11 +164,13 @@ class ThemeUploader if ($localFile == 'css/display.css') { $hasMain = true; } - + $size = $data['size']; $estSize = $blockSize * max(1, intval(ceil($size / $blockSize))); $totalSize += $estSize; if ($totalSize > $sizeLimit) { + // TRANS: Client exception thrown when an uploaded theme is larger than the limit. + // TRANS: %d is the number of bytes of the uncompressed theme. $msg = sprintf(_m('Uploaded theme is too large; must be less than %d byte uncompressed.', 'Uploaded theme is too large; must be less than %d bytes uncompressed.', $sizeLimit), @@ -176,8 +184,9 @@ class ThemeUploader } if (!$hasMain) { - throw new ClientException(_("Invalid theme archive: " . - "missing file css/display.css")); + // TRANS: Server exception thrown when an uploaded theme is incomplete. + throw new ClientException(_('Invalid theme archive: ' . + "Missing file css/display.css")); } } @@ -216,13 +225,15 @@ class ThemeUploader { if (!preg_match('/^[a-z0-9_\.-]+$/i', $name)) { common_log(LOG_ERR, "Bad theme filename: $name"); + // TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. $msg = _("Theme contains invalid file or folder name. " . - "Stick with ASCII letters, digits, underscore, and minus sign."); + 'Stick with ASCII letters, digits, underscore, and minus sign.'); throw new ClientException($msg); } if (preg_match('/\.(php|cgi|asp|aspx|js|vb)\w/i', $name)) { common_log(LOG_ERR, "Unsafe theme filename: $name"); - $msg = _("Theme contains unsafe file extension names; may be unsafe."); + // TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. + $msg = _('Theme contains unsafe file extension names; may be unsafe.'); throw new ClientException($msg); } return true; @@ -239,8 +250,9 @@ class ThemeUploader // theme.ini exception return true; } - $msg = sprintf(_("Theme contains file of type '.%s', " . - "which is not allowed."), + // TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. + // TRANS: %s is the file type that is not allowed. + $msg = sprintf(_('Theme contains file of type ".%s", which is not allowed.'), $ext); throw new ClientException($msg); } @@ -253,11 +265,12 @@ class ThemeUploader protected function openArchive() { $zip = new ZipArchive; - $ok = $zip->open($this->sourceFile); + $ok = $zip->open($this->sourceFile); if ($ok !== true) { common_log(LOG_ERR, "Error opening theme zip archive: " . "{$this->sourceFile} code: {$ok}"); - throw new Exception(_("Error opening theme archive.")); + // TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. + throw new Exception(_('Error opening theme archive.')); } return $zip; } @@ -276,11 +289,13 @@ class ThemeUploader $this->loud(); if (!$ok) { common_log(LOG_ERR, "Failed to mkdir $dir while uploading theme"); - throw new ServerException(_("Failed saving theme.")); + // TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. + throw new ServerException(_('Failed saving theme.')); } } else if (!is_dir($dir)) { common_log(LOG_ERR, "Output directory $dir not a directory while uploading theme"); - throw new ServerException(_("Failed saving theme.")); + // TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. + throw new ServerException(_('Failed saving theme.')); } // ZipArchive::extractTo would be easier, but won't let us alter @@ -288,14 +303,16 @@ class ThemeUploader $in = $zip->getStream($from); if (!$in) { common_log(LOG_ERR, "Couldn't open archived file $from while uploading theme"); - throw new ServerException(_("Failed saving theme.")); + // TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. + throw new ServerException(_('Failed saving theme.')); } $this->quiet(); $out = fopen($to, "wb"); $this->loud(); if (!$out) { common_log(LOG_ERR, "Couldn't open output file $to while uploading theme"); - throw new ServerException(_("Failed saving theme.")); + // TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. + throw new ServerException(_('Failed saving theme.')); } while (!feof($in)) { $buffer = fread($in, 65536); @@ -333,5 +350,4 @@ class ThemeUploader $list->close(); rmdir($dir); } - } diff --git a/lib/threadednoticelist.php b/lib/threadednoticelist.php index ce620916a1..700b6ed1ee 100644 --- a/lib/threadednoticelist.php +++ b/lib/threadednoticelist.php @@ -329,7 +329,7 @@ class ThreadedNoticeListReplyItem extends NoticeListItem function showMiniForm() { $this->out->element('input', array('class' => 'placeholder', - // TRANS: Field label for reply mini form. + // TRANS: Field label for reply mini form. 'value' => _('Write a reply...'))); } } @@ -423,8 +423,7 @@ class ThreadedNoticeListFavesItem extends NoticeListActorsItem } else { // TRANS: List message for favoured notices. // TRANS: %d is the number of users that have favoured a notice. - return sprintf(_m('FAVELIST', - 'One person has favored this notice.', + return sprintf(_m('One person has favored this notice.', '%d people have favored this notice.', $count), $count); @@ -482,8 +481,7 @@ class ThreadedNoticeListRepeatsItem extends NoticeListActorsItem } else { // TRANS: List message for repeated notices. // TRANS: %d is the number of users that have repeated a notice. - return sprintf(_m('REPEATLIST', - 'One person has repeated this notice.', + return sprintf(_m('One person has repeated this notice.', '%d people have repeated this notice.', $count), $count); diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 02a4a0a682..3947731741 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -12,22 +12,56 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:35+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:36+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "غير معروفة" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "إجراء غير معروف" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "نفاذ" @@ -79,7 +113,9 @@ msgstr "حفظ إعدادت الوصول" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -91,6 +127,7 @@ msgstr "احفظ" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "لا صفحة كهذه." @@ -109,6 +146,7 @@ msgstr "لا صفحة كهذه." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -133,8 +171,11 @@ msgstr "لا صفحة كهذه." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "لا مستخدم كهذا." @@ -147,7 +188,15 @@ msgstr "%1$s والأصدقاء, الصفحة %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s والأصدقاء" @@ -215,28 +264,14 @@ msgstr "أنت والأصدقاء" msgid "Updates from %1$s and friends on %2$s!" msgstr "الإشعارات التي فضلها %1$s في %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "لم يتم العثور على وسيلة API." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -270,6 +305,7 @@ msgstr "تعذّر تحديث المستخدم." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "ليس للمستخدم ملف شخصي." @@ -309,6 +345,8 @@ msgstr "تعذّر حفظ إعدادات تصميمك." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "تعذّر تحديث تصميمك." @@ -694,9 +732,12 @@ msgstr "لا تملك تصريحًا." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -842,16 +883,6 @@ msgstr "لا يسمح لك بحذف حالة مستخدم آخر." msgid "No such notice." msgstr "لا إشعار كهذا." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "لا يمكنك تكرار ملحوظتك الخاصة." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "كرر بالفعل هذه الملاحظة." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -894,8 +925,11 @@ msgstr "حُذِف الإشعار %d" msgid "Client must provide a 'status' parameter with a value." msgstr "" +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -912,6 +946,8 @@ msgstr "تعذر إيجاد الإشعار الوالد." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -986,6 +1022,8 @@ msgstr "الإشعارات التي فضلها %1$s في %2$s!" msgid "Repeats of %s" msgstr "تكرارات %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "لقد أضاف %s (@%s) إشعارك إلى مفضلاته" @@ -1000,6 +1038,8 @@ msgstr "الإشعارات الموسومة ب%s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "الإشعارات التي فضلها %1$s في %2$s!" @@ -1106,9 +1146,8 @@ msgstr "لا اسم مستعار." #. TRANS: Client error displayed trying to approve group membership while not logged in. #. TRANS: Client error displayed when trying to leave a group while not logged in. -#, fuzzy msgid "Must be logged in." -msgstr "لست والجًا." +msgstr "يجب أن تلج." #. TRANS: Client error displayed trying to approve group membership while not a group administrator. #. TRANS: Client error displayed when trying to approve or cancel a group join request without @@ -1117,11 +1156,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "ليس للمستخدم ملف شخصي." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1129,10 +1170,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "قائمة بمستخدمي هذه المجموعة." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1157,6 +1200,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "قائمة بمستخدمي هذه المجموعة." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "لم يمكن ضم المستخدم %1$s إلى المجموعة %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "حالة %1$s في يوم %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "أُذِن للاشتراك" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "ألغي التصريح." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1192,8 +1263,8 @@ msgstr "مفضلة فعلا." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "عضوية %s في المجموعات" #. TRANS: Subtitle for group membership feed. @@ -1206,8 +1277,7 @@ msgstr "المجموعات التي %1$s عضو فيها على %2$s" msgid "Cannot add someone else's membership." msgstr "تعذّرت إضافة عضوية شخص آخر." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "يمكن التعامل مع نشاطات الانضمام فقط." @@ -1323,6 +1393,7 @@ msgstr "بإمكانك رفع أفتارك الشخصي. أقصى حجم للم #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "المستخدم بدون ملف مطابق." @@ -1349,6 +1420,7 @@ msgstr "معاينة" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "احذف" @@ -1465,6 +1537,7 @@ msgstr "لا تمنع هذا المستخدم." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "نعم" @@ -1521,6 +1594,33 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s ترك المجموعة %2$s" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "لست والجًا." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +#, fuzzy +msgid "No profile ID in request." +msgstr "لا طلب استيثاق." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "لا ملف شخصي بهذه الهوية." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "غير مشترك" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "لا رمز تأكيد." @@ -1656,6 +1756,7 @@ msgstr "لم يوجد التطبيق." msgid "You are not the owner of this application." msgstr "أنت لست مالك هذا التطبيق." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "" @@ -1692,15 +1793,15 @@ msgstr "لا يسمح لك بحذف هذه المجموعة." #. TRANS: Server error displayed if a group could not be deleted. #. TRANS: %s is the name of the group that could not be deleted. -#, fuzzy, php-format +#, php-format msgid "Could not delete group %s." -msgstr "تعذر تحديث المجموعة." +msgstr "تعذّر حذف المجموعة %s." #. TRANS: Message given after deleting a group. #. TRANS: %s is the deleted group's name. -#, fuzzy, php-format +#, php-format msgid "Deleted group %s" -msgstr "%1$s ترك المجموعة %2$s" +msgstr "حُذِفت المجموعة %s" #. TRANS: Title of delete group page. #. TRANS: Form legend for deleting a group. @@ -1725,24 +1826,6 @@ msgstr "لا تحذف هذه المجموعة." msgid "Delete this group." msgstr "احذف هذه المجموعة." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "لست والجًا." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1927,14 +2010,17 @@ msgid "Use defaults" msgstr "استخدم المبدئية" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." msgstr "استعد التصاميم المبدئية." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "ارجع إلى المبدئيات." #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." msgstr "احفظ التصميم." @@ -2242,15 +2328,13 @@ 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. -#, fuzzy msgid "Could not update user record." msgstr "تعذّر تحديث سجل المستخدم." #. TRANS: Message given after successfully removing an incoming e-mail address. #. TRANS: Confirmation text after updating SMS settings. -#, fuzzy msgid "Incoming email address removed." -msgstr "لا عنوان بريد إلكتروني وارد." +msgstr "حُذِف عنوان البريد الإلكتروني الوارد." #. TRANS: Message given after successfully adding an incoming e-mail address. #. TRANS: Confirmation text after updating SMS settings. @@ -2269,6 +2353,7 @@ msgstr "ألغِ تفضيل المفضلة" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "إشعارات محبوبة" @@ -2304,6 +2389,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "إشعارات %s المُفضلة" @@ -2316,6 +2403,7 @@ msgstr "الإشعارات التي فضلها %1$s في %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "مستخدمون مختارون" @@ -2378,6 +2466,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "" #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "خطأ أثناء تحديث الملف الشخصي البعيد." @@ -2416,14 +2505,6 @@ msgstr "لدى المستخدم هذا الدور من قبل." msgid "No profile specified." msgstr "لا ملف شخصي مُحدّد." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "لا ملف شخصي بهذه الهوية." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2705,17 +2786,16 @@ msgid "IM Preferences" msgstr "تفضيلات المحادثة الفورية" #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Send me notices" -msgstr "أرسل إشعارًا" +msgstr "أرسل لي الإشعارات" #. TRANS: Checkbox label in IM preferences form. msgid "Post a notice when my status changes." -msgstr "" +msgstr "أرسل إشعارًا عندما تتغير حالتي." #. TRANS: Checkbox label in IM preferences form. msgid "Send me replies from people I'm not subscribed to." -msgstr "" +msgstr "أرسل لي ردود الأشخاص الذين لست مشتركا بهم." #. TRANS: Checkbox label in IM preferences form. msgid "Publish a MicroID" @@ -2799,20 +2879,19 @@ msgstr "تم تعطيل الدعوات." #. TRANS: Client error displayed when trying to sent invites while not logged in. #. TRANS: %s is the StatusNet site name. -#, fuzzy, php-format +#, php-format msgid "You must be logged in to invite other users to use %s." -msgstr "يجب أن تلج لتُعدّل المجموعات." +msgstr "يجب أن تلج لتدعو مستخدمين آخرين إلى استخدام %s." #. TRANS: Form validation message when providing an e-mail address that does not validate. #. TRANS: %s is an invalid e-mail address. -#, fuzzy, php-format +#, php-format msgid "Invalid email address: %s." -msgstr "عنوان بريد إلكتروني غير صالح: %s" +msgstr "عنوان بريد غير صالح: %s." #. TRANS: Page title when invitations have been sent. -#, fuzzy msgid "Invitations sent" -msgstr "أُرسلت الدعوة" +msgstr "أرسلت الدعوات" #. TRANS: Page title when inviting potential users. msgid "Invite new users" @@ -2845,9 +2924,9 @@ msgid "This person is already a user and you were automatically subscribed:" msgid_plural "" "These people are already users and you were automatically subscribed to them:" msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[1] "هذان الشخصان مستخدمان فعلا وتم اشتراكك بهما تلقائيًا:" +msgstr[2] "هذا الشخص مستخدم فعلا وتم اشتراكك به تلقائيًا:" +msgstr[3] "هؤلاء الأشخاص مستخدمون فعلا وتم اشتراكك بهم تلقائيًا:" msgstr[4] "" msgstr[5] "" @@ -2857,9 +2936,9 @@ msgstr[5] "" msgid "Invitation sent to the following person:" msgid_plural "Invitations sent to the following people:" msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[1] "أرسلت الدعوة إلى الشخص التالي:" +msgstr[2] "أرسلت الدعوتين إلى الشخصين التاليين:" +msgstr[3] "أرسلت الدعوات إلى الأشخاص التالين:" msgstr[4] "" msgstr[5] "" @@ -2869,6 +2948,8 @@ msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" +"سوف يتم بإبلاغك عندما يقبل من دعوتهم دعوتك ويسجلوا في الموقع. شكرا لك على " +"إنماء المجتمع!" #. TRANS: Form instructions. msgid "" @@ -2881,7 +2962,7 @@ msgstr "عناوين البريد الإلكتروني" #. TRANS: Tooltip for field label for a list of e-mail addresses. msgid "Addresses of friends to invite (one per line)." -msgstr "" +msgstr "عناوين الأصدقاء الذين تريد دعوتهم (واحد لكل سطر)." #. TRANS: Field label for a personal message to send to invitees. msgid "Personal message" @@ -2889,7 +2970,7 @@ msgstr "رسالة شخصية" #. TRANS: Tooltip for field label for a personal message to send to invitees. msgid "Optionally add a personal message to the invitation." -msgstr "" +msgstr "يمكنك إضافة رسالة شخصية اختيارية إلى الدعوة." #. TRANS: Send button for inviting friends #. TRANS: Button text for sending notice. @@ -2900,9 +2981,9 @@ msgstr "أرسل" #. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral #. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is #. TRANS: the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s يستمع الآن إلى إشعاراتك على %2$s." +msgstr "يدعوك %1$s إلى الانضمام إلى %2$s" #. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral #. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, %2$s is the @@ -2938,21 +3019,43 @@ msgid "" "\n" "Sincerely, %2$s\n" msgstr "" +"يدعوك %1$s إلى الانضمام إلى %2$s (%3$s).\n" +"\n" +"%2$s خدمة تدوين مصغر تمكنك من التواصل مع الأشخاص الذين تعرفهم والذين " +"يشاركونك نفس الاهتمامات.\n" +"\n" +"تستطيع أيضًا أن تشارك أخبارك وآراءك وما تفعل على الإنترنت مع من تعرف كما أنها " +"مكان رائع للالتقاء بأشخاص جدد يشاركونك اهتماماتك.\n" +"\n" +"يقول %1$s:\n" +"\n" +"%4$s\n" +"\n" +"يمكنك رؤية صفحة %1$s الشخصية على %2$s هنا:\n" +"\n" +"%5$s\n" +"\n" +"إذا أردت تجربة الخدمة، انقر على الوصلة أدناه لتقبل الدعوة.\n" +"\n" +"%6$s\n" +"\n" +"يمكنك تجاهل هذه الرسالة إذا لم ترغب بذلك وشكرا على وقتك.\n" +"\n" +"مع التقدير، %2$s\n" #. TRANS: Client error displayed when trying to join a group while not logged in. msgid "You must be logged in to join a group." msgstr "يجب أن تلج لتنضم إلى مجموعة." #. TRANS: Title for join group page after joining. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s joined group %2$s" -msgstr "%1$s انضم للمجموعة %2$s" +msgstr "انضم %1$s إلى المجموعة %2$s" #. TRANS: Exception thrown when there is an unknown error joining a group. -#, fuzzy msgid "Unknown error joining group." -msgstr "مجموعة غير معروفة." +msgstr "خطأ غير معروف عند الانضمام إلى المجموعة." #. TRANS: Client error displayed when trying to join a group while already a member. #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. @@ -2979,31 +3082,31 @@ msgid "" msgstr "" #. TRANS: Client error displayed selecting a too long license title in the license admin panel. -#, fuzzy msgid "Invalid license title. Maximum length is 255 characters." -msgstr "رسالة ترحيب غير صالحة. أقصى طول هو 255 حرف." +msgstr "رخصة غير صالحة. أقصى طول 255 حرف." #. TRANS: Client error displayed specifying an invalid license URL in the license admin panel. msgid "Invalid license URL." -msgstr "" +msgstr "مسار رخصة غير صالح." #. TRANS: Client error displayed specifying an invalid license image URL in the license admin panel. msgid "Invalid license image URL." -msgstr "" +msgstr "مسار صورة الرخصة غير صالح." #. TRANS: Client error displayed specifying an invalid license URL in the license admin panel. msgid "License URL must be blank or a valid URL." -msgstr "" +msgstr "يمكن أن تترك مسار الرخصة فارغًا أو أن تضع عنوانًا صالحًا." #. TRANS: Client error displayed specifying an invalid license image URL in the license admin panel. msgid "License image must be blank or valid URL." -msgstr "" +msgstr "يمكن أن تترك مسار صورة الرخصة فارغًا أو أن تضع عنوانًا صالحًا." #. TRANS: Form legend in the license admin panel. msgid "License selection" -msgstr "" +msgstr "اختيار الرخصة" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "خاص" @@ -3025,7 +3128,7 @@ msgstr "اختر رخصة." #. TRANS: Form legend in the license admin panel. msgid "License details" -msgstr "" +msgstr "تفاصيل الرخصة" #. TRANS: Field label in the license admin panel. msgid "Owner" @@ -3037,11 +3140,11 @@ msgstr "" #. TRANS: Field label in the license admin panel. msgid "License Title" -msgstr "" +msgstr "عنوان الرخصة" #. TRANS: Field title in the license admin panel. msgid "The title of the license." -msgstr "" +msgstr "عنوان الرخصة" #. TRANS: Field label in the license admin panel. msgid "License URL" @@ -3235,6 +3338,9 @@ msgid "Ajax Error" msgstr "خطأ أجاكس" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "إشعار جديد" @@ -3361,21 +3467,20 @@ msgstr "" #. TRANS: Server error displayed in oEmbed action when path not found. #. TRANS: %s is a path. -#, fuzzy, php-format +#, php-format msgid "\"%s\" not found." -msgstr "لم يُعثرعلى المستخدم." +msgstr "لم يعثر على \"%s\"." #. TRANS: Server error displayed in oEmbed action when notice not found. #. TRANS: %s is a notice. -#, fuzzy, php-format +#, php-format msgid "Notice %s not found." -msgstr "لم يتم العثور على وسيلة API." +msgstr "لم يعثر على الإشعار %s." #. TRANS: Server error displayed in oEmbed action when notice has not profile. #. TRANS: Server error displayed trying to show a notice without a connected profile. -#, fuzzy msgid "Notice has no profile." -msgstr "ليس للمستخدم ملف شخصي." +msgstr "لا صفحة للإشعار." #. TRANS: oEmbed title. %1$s is the author name, %2$s is the creation date. #. TRANS: Title of the page that shows a notice. @@ -3386,9 +3491,9 @@ msgstr "حالة %1$s في يوم %2$s" #. TRANS: Server error displayed in oEmbed action when attachment not found. #. TRANS: %d is an attachment ID. -#, fuzzy, php-format +#, php-format msgid "Attachment %s not found." -msgstr "لم يُعثر على المستخدم المستلم." +msgstr "لم يعثر على المرفق %s." #. TRANS: Server error displayed in oEmbed request when a path is not supported. #. TRANS: %s is a path. @@ -3397,9 +3502,9 @@ msgid "\"%s\" not supported for oembed requests." msgstr "" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') -#, fuzzy, php-format +#, php-format msgid "Content type %s not supported." -msgstr "نوع المحتوى " +msgstr "نوع المحتوى %s غير مدعوم." #. TRANS: Error message displaying attachments. %s is the site's base URL. #, php-format @@ -3527,7 +3632,6 @@ msgid "Password saved." msgstr "حُفظت كلمة السر." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "المسارات" @@ -3585,9 +3689,8 @@ msgid "Site path." msgstr "مسار الموقع." #. TRANS: Field label in Paths admin panel. -#, fuzzy msgid "Locale directory" -msgstr "دليل السمات" +msgstr "دليل المحليات" #. TRANS: Field title in Paths admin panel. #, fuzzy @@ -3723,6 +3826,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "مطلقا" @@ -3874,9 +3978,12 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "تكلم عن نفسك واهتمامتك في %d حرف" msgstr[1] "تكلم عن نفسك واهتمامتك في %d حرف" msgstr[2] "تكلم عن نفسك واهتمامتك في %d حرف" @@ -3885,10 +3992,11 @@ msgstr[4] "تكلم عن نفسك واهتمامتك في %d حرف" msgstr[5] "تكلم عن نفسك واهتمامتك في %d حرف" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +msgid "Describe yourself and your interests." msgstr "صِف نفسك واهتماماتك" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3901,7 +4009,9 @@ msgid "Location" msgstr "الموقع" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "مكان تواجدك، على سبيل المثال \"المدينة، الولاية (أو المنطقة)، الدولة\"" #. TRANS: Checkbox label in form for profile settings. @@ -3909,6 +4019,9 @@ msgid "Share my current location when posting notices" msgstr "شارك مكاني الحالي عند إرسال إشعارات" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "الوسوم" @@ -3943,6 +4056,27 @@ msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "اشترك تلقائيًا بأي شخص يشترك بي (يفضل أن يستخدم لغير البشر)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "الاشتراكات" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -3979,7 +4113,7 @@ msgstr "وسم غير صالح: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "تعذّر تحديث سجل المستخدم." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -3988,6 +4122,7 @@ msgid "Could not save location prefs." msgstr "لم يمكن حفظ تفضيلات الموقع." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "تعذّر حفظ الوسوم." @@ -3998,9 +4133,8 @@ msgstr "حُفظت الإعدادات." #. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup. #. TRANS: Page title for page where a user account can be restored from backup. -#, fuzzy msgid "Restore account" -msgstr "أنشئ حسابًا" +msgstr "استعادة الحساب" #. TRANS: Client error displayed when requesting a public timeline page beyond the page limit. #. TRANS: %s is the page limit. @@ -4009,9 +4143,8 @@ msgid "Beyond the page limit (%s)." msgstr "بعد حد الصفحة (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -#, fuzzy msgid "Could not retrieve public stream." -msgstr "تعذّر إنشاء الكنى." +msgstr "تعذّرت استعادة الدفق العام." #. TRANS: Title for all public timeline pages but the first. #. TRANS: %d is the page number. @@ -4020,6 +4153,7 @@ msgid "Public timeline, page %d" msgstr "المسار الزمني العام، صفحة %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "المسار الزمني العام" @@ -4192,10 +4326,6 @@ msgstr "طُلبت استعادة كلمة السر" msgid "Password saved" msgstr "حُفظت كلمة السر" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "إجراء غير معروف" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "6 أحرف أو أكثر، لا تنسها!" @@ -4286,6 +4416,7 @@ msgstr "لا يُسمح بالتسجيل." msgid "You cannot register if you do not agree to the license." msgstr "لا يمكن أن تسجل ما لم توافق على الرخصة." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "عنوان البريد الإلكتروني موجود مسبقًا." @@ -4319,29 +4450,7 @@ msgstr "لا يُستخدم إلا للإبلاغ عن التطورات والت msgid "Longer name, preferably your \"real\" name." msgstr "اسم أطول. يُفضَّل أن يكون اسمك \"الحقيقي\"." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, 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 حرف" -msgstr[1] "تكلم عن نفسك واهتمامتك في %d حرف" -msgstr[2] "تكلم عن نفسك واهتمامتك في %d حرف" -msgstr[3] "تكلم عن نفسك واهتمامتك في %d حرف" -msgstr[4] "تكلم عن نفسك واهتمامتك في %d حرف" -msgstr[5] "تكلم عن نفسك واهتمامتك في %d حرف" - -#. TRANS: Text area title on account registration page. -msgid "Describe yourself and your interests." -msgstr "صِف نفسك واهتماماتك" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "مكان تواجدك، على سبيل المثال \"المدينة، الولاية (أو المنطقة)، الدولة\"" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. msgctxt "BUTTON" msgid "Register" msgstr "سجّل" @@ -4436,6 +4545,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4470,16 +4581,8 @@ msgstr "يستطيع المستخدمون الوالجون وحدهم تكرار msgid "No notice specified." msgstr "لا ملاحظة محددة." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "لا يمكنك تكرار ملاحظتك الشخصية." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "أنت كررت هذه الملاحظة بالفعل." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "مكرر" @@ -4490,6 +4593,8 @@ msgstr "مكرر!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "الردود على %s" @@ -4594,6 +4699,7 @@ msgid "System error uploading file." msgstr "" #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "جميع الأعضاء" @@ -4615,9 +4721,8 @@ msgid "" msgstr "" #. TRANS: Title for submit button to confirm upload of a user backup file for account restore. -#, fuzzy msgid "Upload the file" -msgstr "ارفع ملفًا" +msgstr "ارفع الملف" #. TRANS: Client error displayed when trying to revoke a role without having the right to do that. msgid "You cannot revoke user roles on this site." @@ -4634,6 +4739,7 @@ msgid "StatusNet" msgstr "ستاتس نت" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. #, fuzzy msgid "You cannot sandbox users on this site." msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع." @@ -4654,7 +4760,6 @@ msgid "Session settings for this StatusNet site" msgstr "" #. TRANS: Fieldset legend on the sessions administration panel. -#, fuzzy msgctxt "LEGEND" msgid "Sessions" msgstr "الجلسات" @@ -4772,7 +4877,7 @@ msgstr "" #. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in. #. TRANS: %s is a username. -#, fuzzy, php-format +#, php-format msgid "" "%s hasn't added any favorite notices yet. Post something interesting they " "would add to their favorites :)" @@ -4783,14 +4888,14 @@ msgstr "" #. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in. #. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page. #. TRANS: (link text)[link] is a Mark Down link. -#, fuzzy, php-format +#, php-format msgid "" "%s hasn't added any favorite notices yet. Why not [register an account](%%%%" "action.register%%%%) and then post something interesting they would add to " "their favorites :)" msgstr "" -"%s لم يضف أي إشعارات إلى مفضلته إلى الآن. لمّ لا [تسجل حسابًا](%%%%action." -"register%%%%) وترسل شيئًا شيقًا ليضيفه إلى مفضلته. :)" +"%s لم يضف أي إشعارات إلى مفضلته إلى الآن. لمَ لا [تسجل حسابًا](%%%%action." +"register%%%%) وترسل شيئًا شيقًا ليضيفه إلى مفضلته؟ :)" #. TRANS: Page notice for show favourites page. msgid "This is a way to share what you like." @@ -4835,6 +4940,8 @@ msgstr "الأعضاء" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(لا شيء)" @@ -4915,6 +5022,11 @@ msgstr "الإشعارات التي فضلها %1$s في %2$s!" msgid "Message from %1$s on %2$s" msgstr "نتائج البحث ل\"%1$s\" على %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "المراسلة الفورية غير متوفرة." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "حُذف الإشعار." @@ -4922,20 +5034,20 @@ msgstr "حُذف الإشعار." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %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, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "الإشعارات الموسومة ب%s، الصفحة %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s، الصفحة %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "الإشعارات الموسومة ب%s، الصفحة %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -4985,6 +5097,8 @@ msgid "" "You can try to nudge %1$s or [post something to them](%%%%action.newnotice%%%" "%?status_textarea=%2$s)." msgstr "" +"يمكن أن تجرب تنبيه %1$s أو [إرسال شيء ما](%%%%action.newnotice%%%%?" +"status_textarea=%2$s)." #. TRANS: Announcement for anonymous users showing a stream if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. @@ -5019,6 +5133,7 @@ msgid "Repeat of %s" msgstr "تكرار ل%s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع." @@ -5027,7 +5142,6 @@ msgid "User is already silenced." msgstr "المستخدم مسكت من قبل." #. TRANS: Title for site administration panel. -#, fuzzy msgctxt "TITLE" msgid "Site" msgstr "الموقع" @@ -5059,21 +5173,18 @@ msgid "Dupe limit must be one or more seconds." msgstr "" #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "General" msgstr "عام" #. TRANS: Field label on site settings panel. -#, fuzzy msgctxt "LABEL" msgid "Site name" msgstr "اسم الموقع" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "The name of your site, like \"Yourcompany Microblog\"." -msgstr "اسم موقعك، \"التدوين المصغر لشركتك\" مثلا" +msgstr "اسم موقعك، \"مدونة شركتك المصغرة\" مثلا." #. TRANS: Field label on site settings panel. msgid "Brought by" @@ -5310,59 +5421,73 @@ msgid "" msgstr "" #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#, fuzzy msgid "No code entered." -msgstr "لم تدخل رمزًا" +msgstr "لم تدخل رمزًا." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" msgid "Snapshots" msgstr "" +#. TRANS: Instructions for admin panel to configure snapshots. #, fuzzy msgid "Manage snapshot configuration" msgstr "غيّر ضبط الموقع" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. #, fuzzy msgid "Invalid snapshot run value." msgstr "محتوى إشعار غير صالح." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. #, fuzzy msgid "Invalid snapshot report URL." msgstr "مسار شعار غير صالح." +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "في مهمة مُجدولة" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "التكرار" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "بلّغ عن المسار" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "أرسل" - +#. TRANS: Title for button to save snapshot settings. #, fuzzy -msgid "Save snapshot settings" +msgid "Save snapshot settings." msgstr "اذف إعدادت الموقع" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5375,6 +5500,27 @@ msgstr "لست مُشتركًا بأي أحد." msgid "Could not save subscription." msgstr "تعذّر حفظ الاشتراك." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "عضوية %s في المجموعات" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s أعضاء المجموعة, الصفحة %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "قائمة بمستخدمي هذه المجموعة." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5486,31 +5632,43 @@ msgstr "رسائل قصيرة" msgid "Notices tagged with %1$s, page %2$d" msgstr "الإشعارات الموسومة ب%s، الصفحة %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "لا مدخل هوية." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, fuzzy, php-format msgid "Tag %s" msgstr "الوسوم" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "ملف المستخدم الشخصي" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "اوسم المستخدم" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5518,14 +5676,23 @@ msgid "" msgstr "" "سِم نفسك (حروف وأرقام و \"-\" و \".\" و \"_\")، افصلها بفاصلة (',') أو مسافة." +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "الوسوم" + +#. TRANS: Page notice on "tag other users" page. #, fuzzy msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "استخدم هذا النموذج لتعدل تطبيقك." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "لا وسم كهذا." @@ -5533,24 +5700,29 @@ msgstr "لا وسم كهذا." msgid "You haven't blocked that user." msgstr "لم تمنع هذا المستخدم." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "المستخدم ليس في صندوق الرمل." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "المستخدم ليس مُسكتًا." -#, fuzzy -msgid "No profile ID in request." -msgstr "لا طلب استيثاق." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "غير مشترك" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "إعدادات المراسلة الفورية" @@ -5565,10 +5737,12 @@ msgstr "أدر خيارات أخرى عديدة." msgid " (free service)" msgstr " (خدمة حرة)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "لا شيء" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5580,15 +5754,19 @@ msgstr "قصّر المسارات بـ" msgid "Automatic shortening service to use." msgstr "خدمة التقصير المطلوب استخدامها." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5598,17 +5776,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)" -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "محتوى إشعار غير صالح." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "محتوى إشعار غير صالح." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "المستخدم" @@ -5622,16 +5804,18 @@ msgid "Invalid bio limit. Must be numeric." msgstr "" #. TRANS: Form validation error in user admin panel when welcome text is too long. -#, fuzzy msgid "Invalid welcome text. Maximum length is 255 characters." -msgstr "رسالة ترحيب غير صالحة. أقصى طول هو 255 حرف." +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. #, php-format msgid "Invalid default subscripton: \"%1$s\" is not a user." -msgstr "" +msgstr "اشتراك مبدئي غير صالح: \"%1$s\" ليس مستخدمًا." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "الملف الشخصي" @@ -5652,7 +5836,6 @@ msgid "New user welcome" msgstr "ترحيب المستخدمين الجدد" #. TRANS: Tooltip in user admin panel for setting new user welcome text. -#, fuzzy msgid "Welcome text for new users (maximum 255 characters)." msgstr "نص الترحيب بالمستخدمين الجدد (255 حرفًا كحد أقصى)." @@ -5681,41 +5864,38 @@ msgid "Save user settings." msgstr "احفظ إعدادات المستخدم." #. TRANS: Page title. -#, fuzzy msgid "Authorize subscription" -msgstr "جميع الاشتراكات" +msgstr "التصريح للاشتراكات" -#. TRANS: Page notice on "Auhtorize subscription" page. -#, fuzzy +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " "click \"Reject\"." msgstr "" -"يُرجى التحقق من هذه التفاصيل للتأكد من أنك تريد الاستماع لإشعارات هذا " +"يُرجى التحقق من هذه التفاصيل للتأكد من أنك تريد الاشتراك بإشعارات هذا " "المستخدم. إذا لم تطلب للتو الاستماع لإشعارات شخص ما فانقر \"ارفض\"." #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. -#, fuzzy +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "اقبل" #. TRANS: Title for button on Authorise Subscription page. -#, fuzzy +#. TRANS: Button title to subscribe to a user. msgid "Subscribe to this user." msgstr "اشترك بهذا المستخدم" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. -#, fuzzy +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "ارفض" #. TRANS: Title for button on Authorise Subscription page. -#, fuzzy msgid "Reject this subscription." msgstr "ارفض هذا الاشتراك" @@ -5724,13 +5904,13 @@ msgid "No authorization request!" msgstr "لا طلب تصريح!" #. TRANS: Accept message header from Authorise subscription page. -#, fuzzy msgid "Subscription authorized" -msgstr "رُفض الاشتراك" +msgstr "أُذِن للاشتراك" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" @@ -5738,9 +5918,10 @@ msgstr "" msgid "Subscription rejected" msgstr "رُفض الاشتراك" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" @@ -5752,15 +5933,15 @@ msgstr "" #. TRANS: Exception thrown when listenee URI is too long for an authorisation request. #. TRANS: %s is a listenee URI. -#, fuzzy, php-format +#, php-format msgid "Listenee URI \"%s\" is too long." -msgstr "المسار المصدر طويل جدًا." +msgstr "مسار المستمع \"%s\" طويل للغاية." #. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. #. TRANS: %s is a listenee URI. #, php-format msgid "Listenee URI \"%s\" is a local user." -msgstr "" +msgstr "مسار المستمع \"%s\" لمستخدم محلي." #. TRANS: Exception thrown when profile URL is a local user for an authorisation request. #. TRANS: %s is a profile URL. @@ -5768,14 +5949,6 @@ msgstr "" 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. -#, php-format -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. #, fuzzy, php-format @@ -5811,9 +5984,8 @@ msgid "Enjoy your hotdog!" msgstr "استمتع بالنقانق!" #. TRANS: Form legend on Profile design page. -#, fuzzy msgid "Design settings" -msgstr "اذف إعدادت الموقع" +msgstr "إعدادات التصميم" #. TRANS: Checkbox label on Profile design page. msgid "View profile designs" @@ -5824,9 +5996,8 @@ msgid "Show or hide profile designs." msgstr "أظهر أو أخفِ تصاميم الملفات الشخصية." #. TRANS: Form legend on Profile design page for form to choose a background image. -#, fuzzy msgid "Background file" -msgstr "الخلفية" +msgstr "ملف الخلفية" #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. @@ -5879,7 +6050,6 @@ msgid "Contributors" msgstr "المساهمون" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "الرخصة" @@ -5911,7 +6081,6 @@ msgid "" msgstr "" #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "الملحقات" @@ -5999,18 +6168,6 @@ msgstr[5] "" msgid "Invalid filename." msgstr "اسم ملف غير صالح." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "الانضمام للمجموعة فشل." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "ليس جزءا من المجموعة." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "ترك المجموعة فشل." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6023,6 +6180,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "خطأ أثناء حفظ المستخدم؛ غير صالح." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "الانضمام للمجموعة فشل." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "ليس جزءا من المجموعة." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "ترك المجموعة فشل." + #. TRANS: Activity title. msgid "Join" msgstr "انضم" @@ -6031,7 +6200,7 @@ msgstr "انضم" #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. #, php-format msgid "%1$s has joined group %2$s." -msgstr "" +msgstr "انضم %1$s إلى مجموعة %2$s." #. TRANS: Server exception thrown when updating a local group fails. msgid "Could not update local group." @@ -6095,6 +6264,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "أنت ممنوع من إرسال رسائل مباشرة." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "لا يمكنك تكرار ملحوظتك الخاصة." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "لا يمكنك تكرار ملاحظتك الشخصية." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "لا يمكنك تكرار ملحوظتك الخاصة." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "لا يمكنك تكرار ملحوظتك الخاصة." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "أنت كررت هذه الملاحظة بالفعل." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "ليس للمستخدم إشعار أخير" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6121,16 +6320,13 @@ msgstr "تعذر تحديث المجموعة المحلية." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6154,6 +6350,7 @@ msgid "Unable to save tag." msgstr "تعذّر حفظ إشعار الموقع." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "" @@ -6181,9 +6378,11 @@ msgstr "تعذّر حفظ الاشتراك." msgid "Could not delete subscription." msgstr "تعذّر حفظ الاشتراك." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "اسمح" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6249,18 +6448,24 @@ msgid "User deletion in progress..." msgstr "حذف المستخدم قيد التنفيذ..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "عدّل إعدادات الملف الشخصي" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "عدّل" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "أرسل رسالة مباشرة إلى هذا المستخدم" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "رسالة" @@ -6282,10 +6487,6 @@ msgctxt "role" msgid "Moderator" msgstr "مراقب" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "اشترك" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6298,10 +6499,9 @@ msgstr "صفحة غير مُعنونة" #. TRANS: Localized tooltip for '...' expansion button on overlong remote messages. msgctxt "TOOLTIP" msgid "Show more" -msgstr "" +msgstr "اعرض المزيد" #. TRANS: Inline reply form submit button: submits a reply comment. -#, fuzzy msgctxt "BUTTON" msgid "Reply" msgstr "رُد" @@ -6309,28 +6509,30 @@ msgstr "رُد" #. TRANS: Placeholder text for inline reply form. Clicking in this box will turn it into a mini notice form. #. TRANS: Field label for reply mini form. msgid "Write a reply..." -msgstr "" +msgstr "اكتب ردًا..." +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" -msgstr "ستاتس نت" +msgstr "الحالة" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#, fuzzy, php-format +#, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** خدمة تدوين مصغر يقدمها لك [%%site.broughtby%%](%%site." -"broughtbyurl%%). " +"broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #, php-format msgid "**%%site.name%%** is a microblogging service." -msgstr "" +msgstr "**%%site.name%%** خدمة تدوين مصغر." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. #. TRANS: Make sure there is no whitespace between "]" and "(". @@ -6350,23 +6552,23 @@ msgstr "" #. TRANS: %1$s is the site name. #, php-format msgid "Content and data of %1$s are private and confidential." -msgstr "" +msgstr "محتويات وبيانات%1$s خاصة وسرية." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. #, php-format msgid "Content and data copyright by %1$s. All rights reserved." -msgstr "" +msgstr "حقوق نشر المحتويات والبيانات ل%1$s. كافة الحقوق محفوظة." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. msgid "Content and data copyright by contributors. All rights reserved." -msgstr "" +msgstr "حقوق نشر المحتويات والبيانات للمساهمين. كافة الحقوق محفوظة." #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #, php-format msgid "All %1$s content and data are available under the %2$s license." -msgstr "" +msgstr "جميع محتويات وبيانات %1$s متاحة وفقا لرخصة %2$s." #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. @@ -6383,9 +6585,9 @@ msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when using an unknown verb for the activity importer. -#, fuzzy, php-format +#, php-format msgid "Unknown verb: \"%s\"." -msgstr "لغة غير معروفة \"%s\"." +msgstr "فعل غير معروف: \"%s\"." #. TRANS: Client exception thrown when trying to force a subscription for an untrusted user. msgid "Cannot force subscription for untrusted user." @@ -6430,8 +6632,9 @@ msgstr "" msgid "No content for notice %s." msgstr "ابحث عن محتويات في الإشعارات" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "لا مستخدم كهذا." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6480,77 +6683,125 @@ msgstr "الأمر لم يُجهزّ بعد." msgid "Unable to delete design setting." msgstr "تعذّر حذف إعدادات التصميم." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "الرئيسية" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "الرئيسية" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "إداري" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "ضبط الموقع الأساسي" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "الموقع" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "ضبط التصميم" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "التصميم" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "ضبط المستخدم" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "User" -msgstr "المستخدم" +msgstr "المستخدمون" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "ضبط الحساب" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Access" +msgstr "النفاذ" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "ضبط المسارات" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Paths" +msgstr "المسارات" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "ضبط الجلسات" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "Sessions" msgstr "الجلسات" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "عدّل إشعار الموقع" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "إشعار الموقع" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Snapshots configuration" msgstr "ضبط المسارات" -#. TRANS: Menu item title/tooltip -msgid "Set site license" +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Snapshots" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. +msgid "Set site license" +msgstr "اضبط رخصة الموقع" + +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "الرخصة" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "ضبط المسارات" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "الملحقات" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6559,6 +6810,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6595,9 +6847,11 @@ msgstr "" msgid "Could not issue access token." msgstr "تعذّر إدراج الرسالة." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "خطأ في قاعدة البيانات أثناء حذف مستخدم تطبيق OAuth." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "خطأ في قاعدة البيانات أثناء حذف مستخدم تطبيق OAuth." @@ -6697,6 +6951,17 @@ msgstr "" msgid "Cancel" msgstr "ألغِ" +#. TRANS: Submit button title. +msgid "Save" +msgstr "احفظ" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "إجراء غير معروف" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -6719,11 +6984,12 @@ msgstr "" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "أزل" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -6764,6 +7030,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "جميع الاشتراكات" + #. TRANS: Title for command results. msgid "Command results" msgstr "نتائج الأمر" @@ -6774,6 +7046,7 @@ msgid "AJAX error" msgstr "خطأ أجاكس" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "اكتمل الأمر" @@ -6815,9 +7088,9 @@ msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#, fuzzy, php-format +#, php-format msgid "Nudge sent to %s." -msgstr "أرسل التنبيه" +msgstr "أرسل تنبيه إلى %s." #. TRANS: User statistics text. #. TRANS: %1$s is the number of other user the user is subscribed to. @@ -6834,9 +7107,8 @@ msgstr "" "الإشعارات: %3$s" #. TRANS: Error message text shown when a favorite could not be set because it has already been favorited. -#, fuzzy msgid "Could not create favorite: already favorited." -msgstr "تعذّر إنشاء مفضلة." +msgstr "تعذّر إنشاء مفضلة: مفضلة فعلا." #. TRANS: Text shown when a notice has been marked as favourite successfully. #, fuzzy @@ -6847,17 +7119,17 @@ msgstr "هذا الإشعار مفضلة مسبقًا!" #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #, php-format msgid "%1$s joined group %2$s." -msgstr "" +msgstr "انضم %1$s إلى مجموعة %2$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. #, php-format msgid "%1$s left group %2$s." -msgstr "" +msgstr "غادر %1$s إلى مجموعة %2$s." #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#, fuzzy, php-format +#, php-format msgctxt "WHOIS" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -6896,6 +7168,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -6911,19 +7185,14 @@ msgid "You can't send a message to this user." msgstr "لا يمكنك إرسال رسائل إلى هذا المستخدم." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#, fuzzy msgid "Error sending direct message." -msgstr "أنت ممنوع من إرسال رسائل مباشرة." +msgstr "خطأ عند إرسال رسالة مباشرة." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#, fuzzy, php-format +#, php-format msgid "Notice from %s repeated." -msgstr "الإشعار من %s مكرر" - -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "خطأ تكرار الإشعار." +msgstr "كُرّر إشعار %s." #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. @@ -7080,56 +7349,52 @@ msgstr "تعذّر إطفاء الإشعارات." #. TRANS: Help message for IM/SMS command "help" msgctxt "COMMANDHELP" msgid "show this help" -msgstr "" +msgstr "يعرض هذه المساعدة" #. TRANS: Help message for IM/SMS command "follow " -#, fuzzy msgctxt "COMMANDHELP" msgid "subscribe to user" -msgstr "اشترك بهذا المستخدم" +msgstr "يشترك بمستخدم" #. TRANS: Help message for IM/SMS command "groups" msgctxt "COMMANDHELP" msgid "lists the groups you have joined" -msgstr "" +msgstr "يسرد المجموعات التي أنت مشترك بها" #. TRANS: Help message for IM/SMS command "subscriptions" msgctxt "COMMANDHELP" msgid "list the people you follow" -msgstr "" +msgstr "يسرد الأشخاص الذي تتباعهم" #. TRANS: Help message for IM/SMS command "subscribers" msgctxt "COMMANDHELP" msgid "list the people that follow you" -msgstr "" +msgstr "يسرد الأشخاص الذين يتابعونك" #. TRANS: Help message for IM/SMS command "leave " -#, fuzzy msgctxt "COMMANDHELP" msgid "unsubscribe from user" -msgstr "ألغِ الاشتراك مع هذا المستخدم" +msgstr "يلغي الاشتراك بالمستخدم" #. TRANS: Help message for IM/SMS command "d " -#, fuzzy msgctxt "COMMANDHELP" msgid "direct message to user" -msgstr "رسالة مباشرة %s" +msgstr "رسالة مباشرة إلى مستخدم" #. TRANS: Help message for IM/SMS command "get " msgctxt "COMMANDHELP" msgid "get last notice from user" -msgstr "" +msgstr "يجلب آخر إشعار من مستخدم" #. TRANS: Help message for IM/SMS command "whois " -#, fuzzy msgctxt "COMMANDHELP" msgid "get profile info on user" -msgstr "معلومات الملف الشخصي" +msgstr "يجلب معلومات الملف الشخصي لمستخدم" #. TRANS: Help message for IM/SMS command "lose " msgctxt "COMMANDHELP" msgid "force user to stop following you" -msgstr "" +msgstr "يجبر مستخدم على التوقف عن متابعتك" #. TRANS: Help message for IM/SMS command "fav " msgctxt "COMMANDHELP" @@ -7244,13 +7509,19 @@ msgstr "" msgid "Go to the installer." msgstr "اذهب إلى المُثبّت." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "خطأ قاعدة بيانات" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "عام" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "احذف" @@ -7258,6 +7529,7 @@ msgstr "احذف" msgid "Delete this user" msgstr "احذف هذا المستخدم" +#. TRANS: Form legend of form for changing the page design. msgid "Change design" msgstr "غيّر التصميم" @@ -7269,14 +7541,6 @@ msgstr "تغيير الألوان" msgid "Use defaults" msgstr "استخدم المبدئيات" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "استعد التصميمات المبدئية" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "ارجع إلى المبدئي" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7284,8 +7548,8 @@ msgstr "ارفع ملفًا" #. TRANS: Instructions for form on profile design page. msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "تستطيع رفع صورة خلفية شخصية. أقصى حجم للملف هو 2 م.ب." +"You can upload your personal background image. The maximum file size is 2MB." +msgstr "تستطيع رفع صورتك الشخصية. أقصى حجم للملف هو 2 م.ب." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. msgctxt "RADIO" @@ -7297,15 +7561,6 @@ msgctxt "RADIO" msgid "Off" msgstr "عطّل" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "تعذّر تحديث تصميمك." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "استعيدت مبدئيات التصميم." @@ -7337,47 +7592,60 @@ msgctxt "BUTTON" msgid "Favor" msgstr "فضّل" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "آرإس​إس 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "آرإس​إس 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "أتوم" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -#, fuzzy -msgid "Not an atom feed." -msgstr "جميع الأعضاء" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "الكل" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "اختر وسمًا لترشيحه" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "الوسم" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +msgid "Choose a tag to narrow list." msgstr "" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "اذهب" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "" @@ -7445,9 +7713,11 @@ msgstr[5] "" msgid "Membership policy" msgstr "عضو منذ" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7518,6 +7788,7 @@ msgid "%s blocked users" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "إداري" @@ -7592,9 +7863,8 @@ msgid "Not an image or corrupt file." msgstr "" #. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there. -#, fuzzy msgid "Lost our file." -msgstr "لا ملف كهذا." +msgstr "ضاع الملف." #. TRANS: Exception thrown when trying to resize an unknown file type. #. TRANS: Exception thrown when trying resize an unknown file type. @@ -7634,23 +7904,46 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "مصدر صندوق وارد غير معروف %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "انضم" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "غادر" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "لُج" @@ -7711,6 +8004,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s يستمع الآن إلى إشعاراتك على %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s يستمع الآن إلى إشعاراتك على %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -7867,12 +8174,15 @@ msgid "" "\n" "\t%s" msgstr "" +"يمكن تقرأ المحادثة كاملة هنا:\n" +"\n" +"%s" #. TRANS: E-mail subject for notice notification. #. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s (@%2$s) sent a notice to your attention" -msgstr "لقد أرسل %s (@%s) إشعارًا إليك" +msgstr "أرسل %1$s (@%2$s) إشعارًا إليك" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, @@ -7925,43 +8235,61 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. #, fuzzy msgid "Only the user can read their own mailboxes." msgstr "يستطيع المستخدمون الوالجون وحدهم تكرار الإشعارات." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." msgstr "" +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "صندوق الوارد" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "رسائلك الواردة" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "صندوق الصادر" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "رسائلك المُرسلة" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "تعذّر تحليل الرسالة." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "ليس مستخدمًا مسجلًا." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. #, fuzzy msgid "Sorry, that is not your incoming email address." msgstr "هذا ليس عنوان بريدك الإلكتروني." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. #, fuzzy msgid "Sorry, no incoming email allowed." msgstr "لا عنوان بريد إلكتروني وارد." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "نوع رسالة غير مدعوم: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8011,10 +8339,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "أرسل إشعارًا مباشرًا" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "اختر وسمًا لترشيحه" @@ -8024,32 +8355,68 @@ msgstr "اختر وسمًا لترشيحه" msgid "No mutual subscribers." msgstr "غير مشترك!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "إلى" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "أرسل" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "رسالة" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "من" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "الوب" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "البريد الإلكتروني" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "لا يسمح لك بحذف هذه المجموعة." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "لا تحذف هذا المستخدم." -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8099,69 +8466,94 @@ msgid "" "try again later" msgstr "" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +msgctxt "HEADER" +msgid "Notices" +msgstr "الإشعارات" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "ش" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "ج" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "ر" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "غ" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" +#. TRANS: Followed by geo location. msgid "at" msgstr "في" -msgid "web" -msgstr "الوب" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "في السياق" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "كرره" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "رُد على هذا الإشعار" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "رُد" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "احذف هذا الإشعار" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "الإشعار مكرر" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "نبّه هذا المستخدم" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "نبّه" +#. TRANS: Button title to nudge/ping another user. #, fuzzy -msgid "Send a nudge to this user" +msgid "Send a nudge to this user." msgstr "أرسل رسالة مباشرة إلى هذا المستخدم" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8169,18 +8561,51 @@ msgstr "" msgid "Duplicate notice." msgstr "" -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "تعذّر إدراج اشتراك جديد." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "الملف الشخصي" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "ملفك الشخصي" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "الردود" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "المفضلات" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "المستخدم" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "رسالة" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "رسائلك الواردة" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8204,31 +8629,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "إعدادات" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "غيّر إعدادات ملفك الشخصي" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "ضبط المستخدم" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "اخرج" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "اخرج من الموقع" -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "لُج إلى الموقع" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "ابحث" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "ابحث في الموقع" #. TRANS: H2 text for user subscription statistics. @@ -8275,30 +8714,53 @@ msgstr "كل المجموعات" msgid "Unimplemented method." msgstr "" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "مجموعات" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "مجموعات المستخدمين" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "الوسوم الحديثة" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "الوسوم الحديثة" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "مُختارون" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "محبوبة" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "لا مدخلات رجوع إلى." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "أأكرّر هذا الإشعار؟" -msgid "Yes" -msgstr "نعم" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "كرّر هذا الإشعار" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, fuzzy, php-format msgid "Revoke the \"%s\" role from this user" msgstr "امنع هذا المستخدم من هذه المجموعة" @@ -8308,9 +8770,13 @@ msgstr "امنع هذا المستخدم من هذه المجموعة" msgid "Page not found." msgstr "لم يتم العثور على وسيلة API." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" -msgstr "" +msgstr "أزل هذا المستخدم من صندوق الرمل" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "أضف هذا المستخدم إلى صندوق الرمل" @@ -8328,129 +8794,277 @@ msgctxt "BUTTON" msgid "Search" msgstr "ابحث" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "أشخاص" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "ابحث عن أشخاص على هذا الموقع" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "الإشعارات" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "ابحث عن محتويات في الإشعارات" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "ابحث عن مجموعات على هذا الموقع" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "مساعدة" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "عن" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "الأسئلة المكررة" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "الشروط" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "خصوصية" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "المصدر" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "النسخة" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "اتصل" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "الجسر" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "قسم غير مُعنون" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "المزيد..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "إعدادات" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "غيّر إعدادات ملفك الشخصي" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "أفتار" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "ارفع أفتارًا" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "كلمة السر" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "غير كلمة سرّك" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "البريد الإلكتروني" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "غير أسلوب التعامل مع البريد الإلكتروني" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "صمّم ملفك الشخصي" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "مسار" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "محادثة فورية" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "رسائل قصيرة" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "تحديثات عبر الرسائل القصيرة" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "اتصالات" +#. TRANS: Menu item title in settings navigation panel. #, fuzzy msgid "Authorized connected applications" msgstr "تطبيقات OAuth" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "أسكِت" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "أسكِت هذا المستخدم" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "الاشتراكات" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "الأشخاص الذين اشترك بهم %s" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "المشتركون" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "الأشخاص المشتركون ب%s" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "المجموعات التي %s عضو فيها" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "ادعُ" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "ادعُ أصدقائك وزملائك للانضمام إليك في %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "اشترك بهذا المستخدم" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "لا شيء" @@ -8458,18 +9072,25 @@ msgstr "لا شيء" msgid "Invalid theme name." msgstr "اسم سمة غير صالح." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "" +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "فشل حفظ السمة." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8481,29 +9102,30 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "خطأ في فتح أرشيف السمات." -#. TRANS: Header for Notices section. -msgctxt "HEADER" -msgid "Notices" -msgstr "الإشعارات" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -8519,11 +9141,11 @@ msgstr[5] "" #. TRANS: Reference to the logged in user in favourite list. msgctxt "FAVELIST" msgid "You" -msgstr "" +msgstr "أنت" #. TRANS: Separator in list of user names like "You, Bob, Mary". msgid ", " -msgstr "" +msgstr " و " #. TRANS: For building a list such as "You, bob, mary and 5 others have favored this notice". #. TRANS: %1$s is a list of users, separated by a separator (default: ", "), %2$s is the last user in the list. @@ -8537,8 +9159,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "فضّلتَ هذا الإشعار." -#, php-format -msgctxt "FAVELIST" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. +#, fuzzy, php-format msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "لم يفضل أحد هذا الإشعار" @@ -8553,8 +9176,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "كرّرتَ هذا الإشعار." -#, php-format -msgctxt "REPEATLIST" +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. +#, fuzzy, php-format msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "لم يكرر أحد هذا الإشعار" @@ -8568,6 +9192,28 @@ msgstr[5] "كرّر %d شخص هذا الإشعار." msgid "Top posters" msgstr "أعلى المرسلين" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "إلى" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "فعل غير معروف: \"%s\"." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8699,6 +9345,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#, fuzzy -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "هذه طويلة جدًا. أطول حجم للإشعار %d حرفًا." +#~ msgid "Couldn't update your design." +#~ msgstr "تعذّر تحديث تصميمك." diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index dad6c27d00..52678f2287 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-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:36+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:01+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 (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -81,7 +81,9 @@ msgstr "اذف إعدادت الموقع" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -94,6 +96,7 @@ msgstr "أرسل" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "لا وسم كهذا." @@ -857,16 +860,6 @@ msgstr "لا يمكنك حذف المستخدمين." msgid "No such notice." msgstr "لا إشعار كهذا." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "مش نافعه تتكرر الملاحظتك بتاعتك." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "الملاحظه اتكررت فعلا." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -1018,6 +1011,8 @@ msgstr "الإشعارات الموسومه ب%s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "الإشعارات الموسومه ب%s" @@ -1137,11 +1132,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "ليس للمستخدم ملف شخصى." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1149,10 +1146,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "قائمه بمستخدمى هذه المجموعه." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1177,6 +1176,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "قائمه بمستخدمى هذه المجموعه." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "ما نفعش يضم %1$s للجروپ %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "%1$s ساب جروپ %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "رُفض الاشتراك" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "لا رمز تأكيد." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1219,7 +1246,7 @@ msgstr "أضف إلى المفضلات" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "أعضاء مجموعه %s" #. TRANS: Subtitle for group membership feed. @@ -1233,8 +1260,7 @@ msgstr "المجموعات التى %s عضو فيها" msgid "Cannot add someone else's membership." msgstr "تعذّر إدراج اشتراك جديد." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "ابحث عن محتويات فى الإشعارات" @@ -1555,6 +1581,50 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s ساب جروپ %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "لست والجًا." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +#, fuzzy +msgid "No profile ID in request." +msgstr "ما فيش طلب تسجيل دخول مطلوب." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "لا ملف شخصى بهذه الهويه." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "ألغِ الاشتراك" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "لا رمز تأكيد." @@ -1768,24 +1838,6 @@ msgstr "لا تحذف هذا الإشعار" msgid "Delete this group." msgstr "احذف هذا المستخدم" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "لست والجًا." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2484,14 +2536,6 @@ msgstr "المستخدم مسكت من قبل." msgid "No profile specified." msgstr "لا ملف شخصى مُحدّد." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "لا ملف شخصى بهذه الهويه." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3078,6 +3122,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "خاص" @@ -3825,6 +3870,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "مطلقا" @@ -3975,9 +4021,12 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "صِف نفسك واهتماماتك" msgstr[1] "صِف نفسك واهتماماتك" msgstr[2] "صِف نفسك واهتماماتك" @@ -3986,10 +4035,12 @@ msgstr[4] "صِف نفسك واهتماماتك" msgstr[5] "صِف نفسك واهتماماتك" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "صِف نفسك واهتماماتك" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4002,7 +4053,8 @@ msgid "Location" msgstr "الموقع" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "" #. TRANS: Checkbox label in form for profile settings. @@ -4010,6 +4062,7 @@ msgid "Share my current location when posting notices" msgstr "" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "الوسوم" @@ -4042,6 +4095,27 @@ msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "أشرك المستخدمين الجدد بهذا المستخدم تلقائيًا." +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "الاشتراكات" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4078,7 +4152,7 @@ msgstr "وسم غير صالح: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "تعذّر تحديث المستخدم." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4087,6 +4161,7 @@ msgid "Could not save location prefs." msgstr "لم يمكن حفظ تفضيلات الموقع." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "تعذّر حفظ الوسوم." @@ -4428,29 +4503,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "صِف نفسك واهتماماتك" -msgstr[1] "صِف نفسك واهتماماتك" -msgstr[2] "صِف نفسك واهتماماتك" -msgstr[3] "صِف نفسك واهتماماتك" -msgstr[4] "صِف نفسك واهتماماتك" -msgstr[5] "صِف نفسك واهتماماتك" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "صِف نفسك واهتماماتك" - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4546,6 +4599,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4580,16 +4634,8 @@ msgstr "" msgid "No notice specified." msgstr "ما فيش ملاحظه متحدده." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "ما ينفعش تكرر الملاحظه بتاعتك." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "انت عيدت الملاحظه دى فعلا." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "مكرر" @@ -4748,6 +4794,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. #, fuzzy msgid "You cannot sandbox users on this site." msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع." @@ -5030,6 +5077,11 @@ msgstr "أهلا بكم فى %1$s يا @%2$s!" msgid "Message from %1$s on %2$s" msgstr "نتايج التدوير لـ\"%1$s\" على %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "المراسله الفوريه غير متوفره." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "حُذف الإشعار." @@ -5037,20 +5089,20 @@ msgstr "حُذف الإشعار." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %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, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "الإشعارات الموسومه ب%s" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s و الصحاب, صفحه %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "الإشعارات الموسومه ب%s" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5132,6 +5184,7 @@ msgid "Repeat of %s" msgstr "تكرارات %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع." @@ -5434,53 +5487,68 @@ msgstr "" msgid "No code entered." msgstr "لا محتوى!" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" msgid "Snapshots" msgstr "" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "ضبط التصميم" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. #, fuzzy msgid "Invalid snapshot report URL." msgstr "مسار شعار غير صالح." +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "فى مهمه مُجدولة" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "التكرار" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "بلّغ عن المسار" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "أرسل" - +#. TRANS: Title for button to save snapshot settings. #, fuzzy -msgid "Save snapshot settings" +msgid "Save snapshot settings." msgstr "اذف إعدادت الموقع" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5493,6 +5561,27 @@ msgstr "لست مُشتركًا بأى أحد." msgid "Could not save subscription." msgstr "تعذّر حفظ الاشتراك." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "أعضاء مجموعه %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s اعضاء الجروپ, صفحه %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "قائمه بمستخدمى هذه المجموعه." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5604,44 +5693,65 @@ msgstr "رسائل قصيرة" msgid "Notices tagged with %1$s, page %2$d" msgstr "الإشعارات الموسومه ب%s" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "لا مدخل هويه." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, fuzzy, php-format msgid "Tag %s" msgstr "الوسوم" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "ملف المستخدم الشخصي" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "اعمل tag لليوزر" +#. TRANS: Title for input field for inputting tags on "tag other users" page. msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " "spaces." msgstr "" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "الوسوم" + +#. TRANS: Page notice on "tag other users" page. #, fuzzy msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "استعمل الفورمه دى علشان تعدّل الapplication بتاعتك." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "لا وسم كهذا." @@ -5649,25 +5759,30 @@ msgstr "لا وسم كهذا." msgid "You haven't blocked that user." msgstr "لم تمنع هذا المستخدم." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "اليوزر مش فى السبوره." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "المستخدم ليس مُسكتًا." -#, fuzzy -msgid "No profile ID in request." -msgstr "ما فيش طلب تسجيل دخول مطلوب." - +#. TRANS: Page title for page to unsubscribe. #, fuzzy msgid "Unsubscribed" msgstr "ألغِ الاشتراك" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "تظبيطات بعت الرسايل الفوريه" @@ -5682,10 +5797,12 @@ msgstr "أدر خيارات أخرى عديده." msgid " (free service)" msgstr " (خدمه حرة)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "لا شيء" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5697,15 +5814,19 @@ msgstr "قصّر المسارات بـ" msgid "Automatic shortening service to use." msgstr "خدمه التقصير المطلوب استخدامها." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5715,13 +5836,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)" -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "حجم غير صالح." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "حجم غير صالح." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5804,7 +5929,7 @@ msgstr "اذف إعدادت الموقع" msgid "Authorize subscription" msgstr "جميع الاشتراكات" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5813,6 +5938,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" @@ -5825,6 +5951,7 @@ msgstr "اشترك بهذا المستخدم" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5844,9 +5971,10 @@ msgstr "لا طلب استيثاق!" msgid "Subscription authorized" msgstr "رُفض الاشتراك" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" @@ -5854,9 +5982,10 @@ msgstr "" msgid "Subscription rejected" msgstr "رُفض الاشتراك" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" @@ -5884,14 +6013,6 @@ msgstr "" 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. -#, php-format -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. #, fuzzy, php-format @@ -6116,18 +6237,6 @@ msgstr[5] "" msgid "Invalid filename." msgstr "حجم غير صالح." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "دخول الجروپ فشل." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "مش جزء من الجروپ." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "الخروج من الجروپ فشل." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6140,6 +6249,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "خطأ أثناء حفظ المستخدم؛ غير صالح." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "دخول الجروپ فشل." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "مش جزء من الجروپ." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "الخروج من الجروپ فشل." + #. TRANS: Activity title. msgid "Join" msgstr "انضم" @@ -6213,6 +6334,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "أنت ممنوع من إرسال رسائل مباشره." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "مش نافعه تتكرر الملاحظتك بتاعتك." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "ما ينفعش تكرر الملاحظه بتاعتك." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "مش نافعه تتكرر الملاحظتك بتاعتك." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "مش نافعه تتكرر الملاحظتك بتاعتك." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "انت عيدت الملاحظه دى فعلا." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "ليس للمستخدم إشعار أخير" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6239,16 +6390,13 @@ msgstr "تعذّر حفظ الاشتراك." msgid "RT @%1$s %2$s" msgstr "آر تى @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6298,9 +6446,11 @@ msgstr "تعذّر حفظ الاشتراك." msgid "Could not delete subscription." msgstr "تعذّر حفظ الاشتراك." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "اسمح" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6367,18 +6517,24 @@ msgid "User deletion in progress..." msgstr "" #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "عدّل إعدادات الملف الشخصي" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "عدّل" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "أرسل رساله مباشره إلى هذا المستخدم" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "رسالة" @@ -6402,10 +6558,6 @@ msgctxt "role" msgid "Moderator" msgstr "" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "اشترك" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6668,6 +6820,10 @@ msgstr "إشعار الموقع" msgid "Snapshots configuration" msgstr "ضبط المسارات" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "" @@ -6825,6 +6981,10 @@ msgstr "" msgid "Cancel" msgstr "ألغِ" +#. TRANS: Submit button title. +msgid "Save" +msgstr "أرسل" + msgid " by " msgstr "" @@ -6892,6 +7052,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "جميع الاشتراكات" + #. TRANS: Title for command results. msgid "Command results" msgstr "نتائج الأمر" @@ -7049,10 +7215,6 @@ msgstr "أنت ممنوع من إرسال رسائل مباشره." msgid "Notice from %s repeated." msgstr "الإشعار من %s مكرر" -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "خطأ تكرار الإشعار." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7838,6 +8000,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "هؤلاء هم الأشخاص الذين يستمعون إلى إشعاراتك." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "هؤلاء هم الأشخاص الذين يستمعون إلى إشعاراتك." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8259,7 +8435,9 @@ msgstr "رُد" msgid "Delete this notice" msgstr "احذف هذا الإشعار" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "الإشعار مكرر" msgid "Update your status..." @@ -8546,28 +8724,77 @@ msgstr "أسكت" msgid "Silence this user" msgstr "أسكت هذا المستخدم" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "الملف الشخصي" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "الاشتراكات" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "الأشخاص الذين اشترك بهم %s" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "المشتركون" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "الأشخاص المشتركون ب%s" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "مجموعات" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "المجموعات التى %s عضو فيها" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "ادعُ" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, php-format -msgid "Invite friends and colleagues to join you on %s" +msgid "Invite friends and colleagues to join you on %s." msgstr "" msgid "Subscribe to this user" msgstr "اشترك بهذا المستخدم" +msgid "Subscribe" +msgstr "اشترك" + msgid "People Tagcloud as self-tagged" msgstr "" @@ -8696,6 +8923,28 @@ msgstr[5] "الملاحظه اتكررت فعلا." msgid "Top posters" msgstr "أعلى المرسلين" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "إلى" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "لغه مش معروفه \"%s\"." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8830,6 +9079,24 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" +#~ msgid "Already repeated that notice." +#~ msgstr "الملاحظه اتكررت فعلا." + #, fuzzy -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %d." +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "صِف نفسك واهتماماتك" +#~ msgstr[1] "صِف نفسك واهتماماتك" +#~ msgstr[2] "صِف نفسك واهتماماتك" +#~ msgstr[3] "صِف نفسك واهتماماتك" +#~ msgstr[4] "صِف نفسك واهتماماتك" +#~ msgstr[5] "صِف نفسك واهتماماتك" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "صِف نفسك واهتماماتك" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s و الصحاب, صفحه %2$d" + +#~ msgid "Error repeating notice." +#~ msgstr "خطأ تكرار الإشعار." diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 18230761b3..aba471cdfa 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -11,20 +11,54 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:37+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:38+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Непознато" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Непознато действие" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Достъп" @@ -76,7 +110,9 @@ msgstr "Запазване настройките за достъп" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -88,6 +124,7 @@ msgstr "Запазване" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Няма такака страница." @@ -106,6 +143,7 @@ msgstr "Няма такака страница." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -130,8 +168,11 @@ msgstr "Няма такака страница." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Няма такъв потребител" @@ -144,7 +185,15 @@ msgstr "%1$s и приятели, страница %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s и приятели" @@ -208,28 +257,14 @@ msgstr "Вие и приятелите" msgid "Updates from %1$s and friends on %2$s!" msgstr "Бележки от %1$s и приятели в %2$s." -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "Не е открит методът в API." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -263,6 +298,7 @@ msgstr "Грешка при обновяване на потребителя." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Потребителят няма профил." @@ -299,6 +335,8 @@ msgstr "Грешка при записване настройките за Twitt #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #, fuzzy msgid "Could not update your design." msgstr "Грешка при обновяване на потребителя." @@ -328,9 +366,9 @@ msgstr "Абонаменти на %s" #. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname. #. TRANS: Title for Atom favorites feed. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "%s favorites" -msgstr "Любими" +msgstr "%s любими" #. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname. #, fuzzy, php-format @@ -684,9 +722,12 @@ msgstr "Не сте абонирани за никого." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!" @@ -772,10 +813,9 @@ msgid "Cancel" msgstr "Отказ" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#, fuzzy msgctxt "BUTTON" msgid "Allow" -msgstr "Разрешение" +msgstr "Позволяване" #. TRANS: Form instructions. msgid "Authorize access to your account information." @@ -834,16 +874,6 @@ msgstr "Не може да изтривате бележки на друг по msgid "No such notice." msgstr "Няма такава бележка." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Не можете да повтаряте собствени бележки." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Вече сте повторили тази бележка." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -887,8 +917,11 @@ msgstr "Изтриване на бележката" msgid "Client must provide a 'status' parameter with a value." msgstr "" +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -902,6 +935,8 @@ msgstr "Не е открит методът в API." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -972,6 +1007,8 @@ msgstr "%1$s реплики на съобщения от %2$s / %3$s." msgid "Repeats of %s" msgstr "Повторения на %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%s (@%s) отбеляза бележката ви като любима" @@ -986,6 +1023,8 @@ msgstr "Бележки с етикет %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Бележки от %1$s в %2$s." @@ -1102,11 +1141,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Потребителят няма профил." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1114,10 +1155,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Списък с потребителите в тази група." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1142,6 +1185,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Списък с потребителите в тази група." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Грешка при обновяване на групата." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Бележка на %1$s от %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Абонаментът е одобрен" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Няма код за потвърждение." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1182,7 +1253,7 @@ msgstr "Вече е в любимите." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "Членове на групата %s" #. TRANS: Subtitle for group membership feed. @@ -1196,8 +1267,7 @@ msgstr "Групи, в които участва %s" msgid "Cannot add someone else's membership." msgstr "Грешка при добавяне на нов абонамент." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Търсене в съдържанието на бележките" @@ -1317,6 +1387,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Потребителят няма профил." @@ -1343,20 +1414,18 @@ msgstr "Преглед" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. -#, fuzzy +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Изтриване" #. TRANS: Button on avatar upload page to upload an avatar. #. TRANS: Submit button to confirm upload of a user backup file for account restore. -#, fuzzy msgctxt "BUTTON" msgid "Upload" msgstr "Качване" #. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. -#, fuzzy msgctxt "BUTTON" msgid "Crop" msgstr "Изрязване" @@ -1457,6 +1526,7 @@ msgstr "Да не се блокира този потребител." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Да" @@ -1491,10 +1561,9 @@ msgid "Unblock user from group" msgstr "Разблокиране на потребителя от групата" #. TRANS: Button text for unblocking a user from a group. -#, fuzzy msgctxt "BUTTON" msgid "Unblock" -msgstr "Разблокиране" +msgstr "Отблокиране" #. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. @@ -1515,6 +1584,32 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s напусна групата %2$s" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Не сте влезли в системата." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Не е открит профил с такъв идентификатор." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Не е открит профил с такъв идентификатор." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Отписване" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Няма код за потвърждение." @@ -1653,6 +1748,7 @@ msgstr "Приложението не е открито." msgid "You are not the owner of this application." msgstr "Не сте собственик на това приложение." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Имаше проблем със сесията ви в сайта." @@ -1724,24 +1820,6 @@ msgstr "Да не се изтрива бележката" msgid "Delete this group." msgstr "Изтриване на този потребител" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Не сте влезли в системата." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1802,9 +1880,8 @@ msgid "Delete this user." msgstr "Изтриване на този потребител" #. TRANS: Message used as title for design settings for the site. -#, fuzzy msgid "Design" -msgstr "Версия" +msgstr "Дизайн" #. TRANS: Instructions for design adminsitration panel. msgid "Design settings for this StatusNet site" @@ -1941,15 +2018,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. #, fuzzy msgid "Restore default designs." msgstr "Грешка при записване настройките за Twitter" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "Запазване настройките на сайта" @@ -2295,6 +2375,7 @@ msgstr "Добавяне към любимите" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Популярни бележки" @@ -2330,6 +2411,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Любими бележки на %s" @@ -2342,6 +2425,7 @@ msgstr "Бележки от %1$s в %2$s." #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Избрани потребители" @@ -2406,6 +2490,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Непозната версия на протокола OMB." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. #, fuzzy msgid "Error updating remote profile." msgstr "Грешка при обновяване на отдалечен профил" @@ -2446,14 +2531,6 @@ msgstr "Потребителят вече е заглушен." msgid "No profile specified." msgstr "Не е указан профил." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Не е открит профил с такъв идентификатор." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3071,6 +3148,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Частен" @@ -3317,6 +3395,9 @@ msgid "Ajax Error" msgstr "Грешка в Ajax" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Нова бележка" @@ -3620,7 +3701,6 @@ msgid "Password saved." msgstr "Паролата е записана." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Пътища" @@ -3825,6 +3905,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Никога" @@ -3981,17 +4062,22 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Опишете себе си и интересите си в до %d букви" msgstr[1] "Опишете себе си и интересите си в до %d букви" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "Опишете себе си и интересите си" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4004,7 +4090,9 @@ msgid "Location" msgstr "Местоположение" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Къде се намирате (град, община, държава и т.н.)" #. TRANS: Checkbox label in form for profile settings. @@ -4012,6 +4100,9 @@ msgid "Share my current location when posting notices" msgstr "" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Етикети" @@ -4046,6 +4137,27 @@ msgstr "" "Автоматично абониране за всеки, който се абонира за мен (подходящо за " "ботове)." +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Абонаменти" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4078,7 +4190,7 @@ msgstr "Неправилен етикет: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Грешка при обновяване записа на потребител." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4087,6 +4199,7 @@ msgid "Could not save location prefs." msgstr "Грешка при запазване етикетите." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Грешка при запазване на етикетите." @@ -4118,6 +4231,7 @@ msgid "Public timeline, page %d" msgstr "Общ поток, страница %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Общ поток" @@ -4288,10 +4402,6 @@ msgstr "Поискано е възстановяване на парола" msgid "Password saved" msgstr "Паролата е записана." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Непознато действие" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4389,6 +4499,7 @@ msgstr "Записването не е позволено." msgid "You cannot register if you do not agree to the license." msgstr "Не можете да се регистрате, ако не сте съгласни с лиценза." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Адресът на е-поща вече се използва." @@ -4424,26 +4535,7 @@ msgstr "Използва се само за промени, обяви или в msgid "Longer name, preferably your \"real\" name." msgstr "По-дълго име, за предпочитане \"истинското\" ви име." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, 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 букви" -msgstr[1] "Опишете себе си и интересите си в до %d букви" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Опишете себе си и интересите си" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Къде се намирате (град, община, държава и т.н.)" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4561,6 +4653,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "Адрес на профила ви в друга, съвместима услуга за микроблогване" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4596,16 +4690,8 @@ msgstr "Само влезли потребители могат да повта msgid "No notice specified." msgstr "Не е указана бележка." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Не можете да повтаряте собствена бележка." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Вече сте повторили тази бележка." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Повторено" @@ -4616,6 +4702,8 @@ msgstr "Повторено!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Отговори на %s" @@ -4723,6 +4811,7 @@ msgid "System error uploading file." msgstr "Системна грешка при качване на файл." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Всички членове" @@ -4764,6 +4853,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Не можете да заглушавате потребители на този сайт." @@ -4952,6 +5042,8 @@ msgstr "Членове" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Без)" @@ -5026,6 +5118,11 @@ msgstr "Съобщение до %1$s в %2$s" msgid "Message from %1$s on %2$s" msgstr "Съобщение от %1$s в %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "Страницата не е достъпна във вида медия, който приемате" + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Бележката е изтрита." @@ -5033,20 +5130,20 @@ msgstr "Бележката е изтрита." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %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, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Бележки с етикет %s" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, страница %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Бележки с етикет %s" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5122,6 +5219,7 @@ msgid "Repeat of %s" msgstr "Повторения на %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Не можете да заглушавате потребители на този сайт." @@ -5420,53 +5518,68 @@ msgstr "" msgid "No code entered." msgstr "Не е въведен код." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" msgid "Snapshots" msgstr "" +#. TRANS: Instructions for admin panel to configure snapshots. #, fuzzy msgid "Manage snapshot configuration" msgstr "Промяна настройките на сайта" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "" +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Честота" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Запазване" - +#. TRANS: Title for button to save snapshot settings. #, fuzzy -msgid "Save snapshot settings" +msgid "Save snapshot settings." msgstr "Запазване настройките на сайта" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5478,6 +5591,27 @@ msgstr "Не сте абонирани за този профил" msgid "Could not save subscription." msgstr "Грешка при добавяне на нов абонамент." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "Членове на групата %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Абонати на %1$s, страница %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Списък с потребителите в тази група." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. #, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." @@ -5591,44 +5725,65 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Бележки с етикет %s" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Емисия с бележки на %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Емисия с бележки на %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Емисия с бележки на %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Липсват аргументи return-to." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, fuzzy, php-format msgid "Tag %s" msgstr "Етикети" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Потребителски профил" +#. TRANS: Fieldset legend on "tag other users" page. #, fuzzy msgid "Tag user" msgstr "Етикети" +#. TRANS: Title for input field for inputting tags on "tag other users" page. msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " "spaces." msgstr "" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Етикети" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Няма такъв етикет." @@ -5636,24 +5791,30 @@ msgstr "Няма такъв етикет." msgid "You haven't blocked that user." msgstr "Не сте блокирали този потребител." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Потребителят не е заглушен." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Потребителят не е заглушен." -msgid "No profile ID in request." -msgstr "Не е открит профил с такъв идентификатор." - +#. TRANS: Page title for page to unsubscribe. #, fuzzy msgid "Unsubscribed" msgstr "Отписване" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Настройки за SMS" @@ -5668,10 +5829,12 @@ msgstr "Управление на различни други настройки msgid " (free service)" msgstr " (свободна услуга)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Без" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5683,15 +5846,19 @@ msgstr "Съкращаване на адресите с" msgid "Automatic shortening service to use." msgstr "Услуга за автоматично съкращаване, която да се ползва." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5701,17 +5868,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Услугата за съкращаване е твърде дълга (може да е до 50 знака)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Неправилен размер." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Неправилен размер." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Потребител" @@ -5734,6 +5905,9 @@ msgstr "" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Профил" @@ -5793,7 +5967,7 @@ msgstr "Запазване настройките на сайта" msgid "Authorize subscription" msgstr "Одобряване на абонамента" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5805,18 +5979,21 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" msgstr "Приемане" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Абониране за този потребител" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5835,10 +6012,10 @@ msgstr "Няма заявка за одобрение." msgid "Subscription authorized" msgstr "Абонаментът е одобрен" -#, fuzzy +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "Абонаментът е одобрен, но не е зададен callback URL. За да завършите " @@ -5848,10 +6025,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Абонаментът е отказан" -#, fuzzy +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "Абонаментът е отказан, но не е зададен callback URL. За да откажете напълно " @@ -5881,14 +6058,6 @@ msgstr "" 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. -#, php-format -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. #, fuzzy, php-format @@ -5991,7 +6160,6 @@ msgid "Contributors" msgstr "" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Лиценз" @@ -6020,7 +6188,6 @@ msgid "" msgstr "" #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Приставки" @@ -6101,6 +6268,18 @@ msgstr[1] "" msgid "Invalid filename." msgstr "Неправилен размер." +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Грешка при запазване на потребител — невалидност." + #. TRANS: Exception thrown when joining a group fails. #, fuzzy msgid "Group join failed." @@ -6116,18 +6295,6 @@ msgstr "Грешка при обновяване на групата." msgid "Group leave failed." msgstr "Профил на групата" -#. TRANS: Exception thrown providing an invalid profile ID. -#. TRANS: %s is the invalid profile ID. -#, php-format -msgid "Profile ID %s is invalid." -msgstr "" - -#. TRANS: Exception thrown providing an invalid group ID. -#. TRANS: %s is the invalid group ID. -#, fuzzy, php-format -msgid "Group ID %s is invalid." -msgstr "Грешка при запазване на потребител — невалидност." - #. TRANS: Activity title. msgid "Join" msgstr "Присъединяване" @@ -6206,6 +6373,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Забранено ви е да публикувате бележки в този сайт." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Не можете да повтаряте собствени бележки." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Не можете да повтаряте собствена бележка." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Не можете да повтаряте собствени бележки." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Не можете да повтаряте собствени бележки." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Вече сте повторили тази бележка." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Потребителят няма последна бележка" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6232,16 +6429,13 @@ msgstr "Грешка при запазване на етикетите." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6264,6 +6458,7 @@ msgid "Unable to save tag." msgstr "Грешка при запазване на етикетите." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. #, fuzzy msgid "You have been banned from subscribing." msgstr "Потребителят е забранил да се абонирате за него." @@ -6294,9 +6489,11 @@ msgstr "Грешка при добавяне на нов абонамент." msgid "Could not delete subscription." msgstr "Грешка при добавяне на нов абонамент." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "Разрешение" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6362,18 +6559,24 @@ msgid "User deletion in progress..." msgstr "" #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Редактиране на профила" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Редактиране" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Изпращате на пряко съобщение до този потребител." #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Съобщение" @@ -6396,10 +6599,6 @@ msgctxt "role" msgid "Moderator" msgstr "Модератор" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Абониране" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6425,7 +6624,9 @@ msgstr "Отговор" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6544,8 +6745,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Търсене в съдържанието на бележките" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "Няма такъв потребител" #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6596,82 +6798,133 @@ msgstr "Командата все още не се поддържа." msgid "Unable to delete design setting." msgstr "Грешка при записване настройките за Twitter" +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Лична страница" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Лична страница" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Настройки" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Основна настройка на сайта" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Сайт" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Настройка на оформлението" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Версия" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "User configuration" msgstr "Настройка на пътищата" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Потребител" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Access configuration" msgstr "Настройка на оформлението" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Достъп" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Настройка на пътищата" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Пътища" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Sessions configuration" msgstr "Настройка на оформлението" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Сесии" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Изтриване на бележката" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Нова бележка" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Snapshots configuration" msgstr "Настройка на пътищата" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Snapshots" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Лиценз" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Настройка на пътищата" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Приставки" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6680,6 +6933,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6716,10 +6970,12 @@ msgstr "" msgid "Could not issue access token." msgstr "Грешка при вмъкване на съобщението." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error inserting OAuth application user." msgstr "Грешка в базата от данни — отговор при вмъкването: %s" +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "Грешка в базата от данни — отговор при вмъкването: %s" @@ -6817,6 +7073,17 @@ msgstr "" msgid "Cancel" msgstr "Отказ" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Запазване" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Непознато действие" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -6839,12 +7106,13 @@ msgstr "" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. #, fuzzy msgctxt "BUTTON" msgid "Revoke" msgstr "Премахване" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -6885,6 +7153,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Всички абонаменти" + #. TRANS: Title for command results. msgid "Command results" msgstr "Резултат от командата" @@ -6895,6 +7169,7 @@ msgid "AJAX error" msgstr "Грешка в Ajax" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Командата е изпълнена" @@ -7015,6 +7290,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7039,10 +7316,6 @@ msgstr "Грешка при изпращане на прякото съобще msgid "Notice from %s repeated." msgstr "Бележката от %s е повторена" -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Грешка при повтаряне на бележката." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7353,13 +7626,19 @@ msgstr "" msgid "Go to the installer." msgstr "Влизане в сайта" +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Грешка в базата от данни" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Общ поток" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Изтриване" @@ -7367,6 +7646,7 @@ msgstr "Изтриване" msgid "Delete this user" msgstr "Изтриване на този потребител" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Запазване настройките на сайта" @@ -7379,23 +7659,14 @@ msgstr "Смяна на цветовете" msgid "Use defaults" msgstr "" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "Качване на файл" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Можете да качите лично изображение за фон. Максималната големина на файла е " "2MB." @@ -7412,17 +7683,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Изкл." -#. TRANS: Title for button on profile design page to save settings. -#, 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". -#, fuzzy -msgid "Couldn't update your design." -msgstr "Грешка при обновяване на потребителя." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "" @@ -7454,47 +7714,60 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Любимо" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -#, fuzzy -msgid "Not an atom feed." -msgstr "Всички членове" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Всички" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Изберете етикет за филтриране" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Етикет" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Изберете етикет за конкретизиране" +#. TRANS: Submit button text on gallery action page. +msgctxt "BUTTON" msgid "Go" msgstr "" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "" @@ -7555,9 +7828,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Участник от" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7624,6 +7899,7 @@ msgid "%s blocked users" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. #, fuzzy msgctxt "MENU" msgid "Admin" @@ -7726,23 +8002,46 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Непознат език \"%s\"." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Присъединяване" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Напускане" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Вход" @@ -7791,6 +8090,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s вече получава бележките ви в %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s вече получава бележките ви в %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8005,40 +8318,58 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Само потребителят може да отваря собствената си кутия." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." msgstr "" +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Входящи" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Получените от вас съобщения" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Изходящи" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Изпратените от вас съобщения" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Грешка при обработка на съобщението" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Това не е регистриран потребител." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Това не е вашият входящ адрес." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Входящата поща не е разрешена." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. #, fuzzy, php-format -msgid "Unsupported message type: %s" +msgid "Unsupported message type: %s." msgstr "Форматът на файла с изображението не се поддържа." #. TRANS: Form legend for form to make a user a group admin. @@ -8089,10 +8420,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Изпращане на пряко съобщеие" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Изберете оператор" @@ -8102,33 +8436,68 @@ msgstr "Изберете оператор" msgid "No mutual subscribers." msgstr "Не сте абонирани!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "До" +#. TRANS: Button text for sending a direct notice. #, fuzzy msgctxt "Send button for sending notice" msgid "Send" msgstr "Прати" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Съобщение" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "от" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +msgctxt "SOURCE" +msgid "web" msgstr "" +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Е-поща" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Не членувате в тази група." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Да не се изтрива бележката" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8174,69 +8543,96 @@ msgid "" "try again later" msgstr "" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Бележки" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "С" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "Ю" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "И" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "З" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" +#. TRANS: Followed by geo location. #, fuzzy msgid "at" msgstr "Път" -msgid "web" -msgstr "" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "в контекст" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Повторено от" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Отговаряне на тази бележка" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Отговор" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Изтриване на бележката" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Бележката е повторена." +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Побутване на този потребител" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Побутване" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Побутване на този потребител" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8244,19 +8640,52 @@ msgstr "" msgid "Duplicate notice." msgstr "" -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Грешка при добавяне на нов абонамент." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Профил" + +#. TRANS: Menu item title in personal group navigation menu. #, fuzzy msgid "Your profile" msgstr "Профил на групата" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Отговори" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Любими" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Потребител" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Съобщение" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Получените от вас съобщения" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8280,31 +8709,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Настройки за SMS" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Промяна настройките на профила" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Настройка на пътищата" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "Изход" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Излизане от сайта" -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "Влизане в сайта" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "Търсене" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Търсене в сайта" #. TRANS: H2 text for user subscription statistics. @@ -8352,30 +8795,53 @@ msgstr "Всички групи" msgid "Unimplemented method." msgstr "" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Групи" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Групи" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Скорошни етикети" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Скорошни етикети" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Избрано" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Популярно" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Липсват аргументи return-to." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Да се повтори ли тази бележка?" -msgid "Yes" -msgstr "Да" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Повтаряне на тази бележка" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, fuzzy, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Списък с потребителите в тази група." @@ -8385,10 +8851,13 @@ msgstr "Списък с потребителите в тази група." msgid "Page not found." msgstr "Не е открит методът в API." +#. TRANS: Title of form to sandbox a user. #, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Входящи" +#. TRANS: Description of form to sandbox a user. #, fuzzy msgid "Sandbox this user" msgstr "Разблокиране на този потребител" @@ -8407,131 +8876,279 @@ msgctxt "BUTTON" msgid "Search" msgstr "Търсене" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Хора" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Търсене на хора в сайта" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Бележки" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Търсене в съдържанието на бележките" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Търсене на групи в сайта" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "Помощ" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Относно" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "Въпроси" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "Условия" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Поверителност" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Изходен код" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Версия" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Контакт" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Табелка" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Неозаглавен раздел" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Още…" +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Настройки за SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Промяна настройките на профила" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Аватар" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Качване на аватар" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Парола" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Смяна на паролата" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Е-поща" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Промяна обработката на писмата" +#. TRANS: Menu item title in settings navigation panel. #, fuzzy msgid "Design your profile" msgstr "Потребителски профил" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Бележки през месинджър (IM)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Бележки през SMS" +#. TRANS: Menu item in settings navigation panel. #, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Свързване" +#. TRANS: Menu item title in settings navigation panel. #, fuzzy msgid "Authorized connected applications" msgstr "Изтриване на приложението" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Заглушаване" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Заглушаване на този потребител." -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Абонаменти" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Абонаменти на %s" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Абонати" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Абонирани за %s" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Групи, в които участва %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Покани" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Поканете приятели и колеги да се присъединят към вас в %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Абониране за този потребител" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Без" @@ -8540,19 +9157,26 @@ msgstr "Без" msgid "Invalid theme name." msgstr "Неправилен размер." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "" +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. #, fuzzy msgid "Failed saving theme." msgstr "Неуспешно обновяване на аватара." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8560,30 +9184,30 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Грешка при изпращане на прякото съобщение" -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Бележки" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -8614,8 +9238,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Отбелязване като любимо" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Отбелязване като любимо" @@ -8627,8 +9252,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Вече сте повторили тази бележка." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Вече сте повторили тази бележка." @@ -8638,6 +9264,28 @@ msgstr[1] "Вече сте повторили тази бележка." msgid "Top posters" msgstr "Най-често пишещи" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "До" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Непознат език \"%s\"." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8758,7 +9406,6 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "" -#~ "Съобщението е твърде дълго. Най-много може да е %1$d знака, а сте въвели %" -#~ "2$d." +#, fuzzy +#~ msgid "Couldn't update your design." +#~ msgstr "Грешка при обновяване на потребителя." diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 276fde06d2..8a17da2eb5 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -12,20 +12,54 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:38+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:39+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Dianav" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Oberiadenn dianav" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Moned" @@ -78,7 +112,9 @@ msgstr "Enrollañ an arventennoù moned" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -90,6 +126,7 @@ msgstr "Enrollañ" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "N'eus ket eus ar bajenn-se." @@ -108,6 +145,7 @@ msgstr "N'eus ket eus ar bajenn-se." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -132,8 +170,11 @@ msgstr "N'eus ket eus ar bajenn-se." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "N'eus ket eus an implijer-se." @@ -146,7 +187,15 @@ msgstr "%1$s hag e vignoned, pajenn %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s hag e vignoned" @@ -216,28 +265,14 @@ msgstr "C'hwi hag o mignoned" msgid "Updates from %1$s and friends on %2$s!" msgstr "Hizivadennoù %1$s ha mignoned e %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "N'eo ket bet kavet an hentenn API !" +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -271,6 +306,7 @@ msgstr "Dibosupl hizivaat an implijer." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "An implijer-mañ n'eus profil ebet dezhañ." @@ -306,6 +342,8 @@ msgstr "Dibosupl eo enrollañ an arventennoù empentiñ." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Dibosupl eo hizivaat ho design." @@ -681,9 +719,12 @@ msgstr "Aotreet eo bet ar jedouer reked dija." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Ur gudenn 'zo bet gant ho jedaouer dalc'h. Mar plij adklaskit." @@ -833,16 +874,6 @@ msgstr "Ne c'helloc'h ket dilemel statud un implijer all." msgid "No such notice." msgstr "N'eus ket eus an ali-se." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Ne c'helloc'h ket adlavar ho alioù." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Kemenn bet adkemeret dija." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -884,8 +915,11 @@ msgstr "Kemenn dilamet %d" msgid "Client must provide a 'status' parameter with a value." msgstr "Ret eo d'an arval pourchas un arventenn « statut » gant un talvoud." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -899,6 +933,8 @@ msgstr "N'eo ket bet kavet an hentenn API !" #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -969,6 +1005,8 @@ msgstr "%1$s statud pennroll da %2$s / %2$s." msgid "Repeats of %s" msgstr "Adkemeret eus %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "Kas din ur postel pa lak unan bennak unan eus va alioù evel pennroll." @@ -983,6 +1021,8 @@ msgstr "Alioù merket gant %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Hizivadennoù merket gant %1$s e %2$s !" @@ -1098,11 +1138,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Mankout a ra ar profil." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1110,10 +1152,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Roll an implijerien enrollet er strollad-mañ." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1138,6 +1182,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Roll an implijerien enrollet er strollad-mañ." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Dibosupl eo stagañ an implijer %1$s d'ar strollad %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Statud %1$s war %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Koumanant aotreet" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Nullet eo bet aotre." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1177,7 +1249,7 @@ msgstr "Er pennroll dija." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "Izili ar strollad %s" #. TRANS: Subtitle for group membership feed. @@ -1191,8 +1263,7 @@ msgstr "Ezel eo %s eus ar strolladoù" msgid "Cannot add someone else's membership." msgstr "Dibosupl eo dilemel ar c'houmanant." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Klask alioù en danvez" @@ -1308,6 +1379,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Implijer hep profil klotus." @@ -1334,6 +1406,7 @@ msgstr "Rakwelet" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Dilemel" @@ -1445,6 +1518,7 @@ msgstr "Arabat stankañ an implijer-mañ" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Ya" @@ -1503,6 +1577,32 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s en deus kuitaet ar strollad %2$s" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Nann-kevreet." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "N'eus profil ID ebet er reked." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "N'eus profil ebet gant an ID-mañ." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Digoumanantet" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Kod kadarnaat ebet." @@ -1637,6 +1737,7 @@ msgstr "N'eo ket bet kavet ar poellad" msgid "You are not the owner of this application." msgstr "N'oc'h ket perc'henn ar poellad-se." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Ur gudenn 'zo bet gant ho jedaouer dalc'h." @@ -1705,24 +1806,6 @@ msgstr "Arabat dilemel ar strollad-mañ" msgid "Delete this group." msgstr "Dilemel ar strollad-mañ" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Nann-kevreet." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1911,16 +1994,19 @@ msgid "Use defaults" msgstr "Implijout an talvoudoù dre ziouer" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "Adlakaat an neuz dre ziouer." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "Adlakaat an arventennoù dre ziouer" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "Enrollañ an design" @@ -2251,6 +2337,7 @@ msgstr "Tennañ ar pennroll" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Alioù poblek" @@ -2288,6 +2375,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Alioù pennrollet eus %s" @@ -2300,6 +2389,7 @@ msgstr "Hizivadennoù brientek gant %1$s war %2$s !" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. #, fuzzy msgid "Featured users" msgstr "Diverkañ an implijer" @@ -2365,6 +2455,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "" #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Fazi en ur hizivaat ar profil a-bell." @@ -2402,14 +2493,6 @@ msgstr "An implijer-mañ en deus dija ar roll-mañ." msgid "No profile specified." msgstr "N'eo bet resisaet profil ebet" -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "N'eus profil ebet gant an ID-mañ." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2994,6 +3077,7 @@ msgid "License selection" msgstr "Diuzadenn un aotre-implijout" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Prevez" @@ -3237,6 +3321,9 @@ msgid "Ajax Error" msgstr "Fazi Ajax" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Ali nevez" @@ -3544,7 +3631,6 @@ msgid "Password saved." msgstr "Ger-tremen enrollet." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Hentoù" @@ -3749,6 +3835,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Morse" @@ -3910,17 +3997,22 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "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. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +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: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3933,7 +4025,9 @@ msgid "Location" msgstr "Lec'hiadur" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, 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\"" #. TRANS: Checkbox label in form for profile settings. @@ -3941,6 +4035,9 @@ msgid "Share my current location when posting notices" msgstr "Rannañ va lec'hiadur pa bostan un ali." #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Balizennoù" @@ -3978,6 +4075,27 @@ msgstr "" "En em enskrivañ ez emgefre d'an holl re hag en em goumanant din (erbedet " "evit an implijerien nann-denel)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Koumanantoù" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4010,7 +4128,7 @@ msgstr "Balizenn direizh : \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Dibosupl eo hizivaat ar c'houmanant ez emgefre." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4019,6 +4137,7 @@ msgid "Could not save location prefs." msgstr "Dibosupl eo enrollañ an dibaboù lec'hiadur." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Dibosupl eo enrollañ ar merkoù." @@ -4050,6 +4169,7 @@ msgid "Public timeline, page %d" msgstr "Lanv foran - pajenn %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Lanv foran" @@ -4229,10 +4349,6 @@ msgstr "Goulennet eo an adtapout gerioù-tremen" msgid "Password saved" msgstr "Ger-tremen enrollet." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Oberiadenn dianav" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4332,6 +4448,7 @@ msgstr "" "Rankout a rit bezañ a-du gant termenoù an aotre-implijout evit krouiñ ur " "gont." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Implijet eo dija ar chomlec'h postel-se." @@ -4369,26 +4486,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "Anv hiroc'h, ho anv \"gwir\" a zo gwelloc'h" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -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: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Deskrivit hoc'h-unan hag ar pezh a zedenn ac'hanoc'h" - -#. TRANS: Field title on account registration page. -#, 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\"" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4487,6 +4585,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4521,16 +4621,8 @@ msgstr "N'eus nemet an implijerien kevreet hag a c'hell adkemer alioù." msgid "No notice specified." msgstr "N'eus bet diferet ali ebet." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Ne c'helloc'h ket adkemer ho ali deoc'h." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Adkemeret ho peus ar c'hemenn-mañ c'hoazh." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Adlavaret" @@ -4541,6 +4633,8 @@ msgstr "Adlavaret !" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Respontoù da %s" @@ -4650,6 +4744,7 @@ msgid "System error uploading file." msgstr "" #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "An holl izili" @@ -4690,6 +4785,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. #, fuzzy msgid "You cannot sandbox users on this site." msgstr "Ne c'helloc'h ket reiñ rolloù d'an implijerien eus al lec'hienn-mañ." @@ -4878,6 +4974,8 @@ msgstr "Izili" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Hini ebet)" @@ -4956,6 +5054,11 @@ msgstr "Kemanadenn kaset da %1$s d'an %2$s" msgid "Message from %1$s on %2$s" msgstr "Kemenadenn resevet eus %1$s d'an %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "Dizimplijadus eo ar bostelerezh prim" + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Ali dilammet." @@ -4963,20 +5066,20 @@ msgstr "Ali dilammet." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %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, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Alioù merket gant %1$s, pajenn %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, pajenn %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Alioù merket gant %1$s, pajenn %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5058,6 +5161,7 @@ msgid "Repeat of %s" msgstr "Adkemeret eus %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. #, fuzzy msgid "You cannot silence users on this site." msgstr "Ne c'helloc'h ket reiñ rolloù d'an implijerien eus al lec'hienn-mañ." @@ -5352,55 +5456,73 @@ msgstr "" msgid "No code entered." msgstr "N'eo bet lakaet kod ebet" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Prim" +#. TRANS: Instructions for admin panel to configure snapshots. #, fuzzy msgid "Manage snapshot configuration" msgstr "Kefluniadur ar primoù" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. #, fuzzy msgid "Invalid snapshot run value." msgstr "Roll direizh." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. #, fuzzy msgid "Invalid snapshot report URL." msgstr "URL fall evit al logo." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Prim" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. #, fuzzy msgid "Data snapshots" msgstr "Prim" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Stankter" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL an danevell" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Enrollañ" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Enrollañ arventennoù al lec'hienn" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5413,6 +5535,27 @@ msgstr "N'oc'h ket koumanantet d'ar profil-se." msgid "Could not save subscription." msgstr "Dibosupl eo dilemel ar c'houmanant." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "Izili ar strollad %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Izili ar strollad %1$s, pajenn %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Roll an implijerien enrollet er strollad-mañ." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5529,31 +5672,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Alioù merket gant %1$s, pajenn %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Gwazh an alioù evit ar merk %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Gwazh an alioù evit ar merk %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Gwazh an alioù evit ar merk %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Arguzenn ID ebet." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Merk %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Profil an implijer" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Merkañ an implijer" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5562,14 +5717,23 @@ msgstr "" "Merkoù evit an implijer-mañ (lizherennoù, sifroù, -, ., ha _), dispartiet " "gant virgulennoù pe gant esaouennoù" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Balizennoù" + +#. TRANS: Page notice on "tag other users" page. #, fuzzy msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "Implijit ar furmskrid-mañ evit kemmañ ho poellad." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. #, fuzzy msgid "No such tag." msgstr "N'eus ket eus ar bajenn-se." @@ -5578,27 +5742,33 @@ msgstr "N'eus ket eus ar bajenn-se." msgid "You haven't blocked that user." msgstr "N'ho peus ket stanket an implijer-mañ." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. #, fuzzy msgid "User is not sandboxed." msgstr "Er poull-traezh emañ dija an implijer." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. #, fuzzy msgid "User is not silenced." msgstr "Lakaet eo bet da mut an implijer-mañ dija." -msgid "No profile ID in request." -msgstr "N'eus profil ID ebet er reked." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Digoumanantet" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "Aotre-implijout ar menegoù \"%1$s\" ne ya ket gant aotre-implijout al " "lec'hienn \"%2$s\"." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Arventennoù ar bostelerezh prim" @@ -5613,10 +5783,12 @@ msgstr "Dibarzhioù all da gefluniañ." msgid " (free service)" msgstr " (servij digoust)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Hini ebet" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "[diabarzh]" @@ -5628,15 +5800,19 @@ msgstr "" msgid "Automatic shortening service to use." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5646,17 +5822,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Re hir eo ar yezh (255 arouezenn d'ar muiañ)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Danvez direizh an ali." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Danvez direizh an ali." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Implijer" @@ -5679,6 +5859,9 @@ msgstr "" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profil" @@ -5736,7 +5919,7 @@ msgstr "Enrollañ arventennoù an implijer" msgid "Authorize subscription" msgstr "Aotreañ ar c'houmanant" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5745,17 +5928,20 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "Asantiñ" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "En em goumanantiñ d'an implijer-mañ" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "Disteurel" @@ -5773,9 +5959,10 @@ msgstr "Reked aotreañ ebet !" msgid "Subscription authorized" msgstr "Koumanant aotreet" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" @@ -5783,9 +5970,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Koumanant bet nac'het" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" @@ -5813,16 +6001,6 @@ msgstr "An URI \"%s\" ez oc'h koumanantet dezhi a zo un implijer lec'hel." msgid "Profile URL \"%s\" is for a local user." msgstr "URI ar profil \"%s\" a zo evit un implijer lec'hel." -#. 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. -#, 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. #, fuzzy, php-format @@ -5925,7 +6103,6 @@ msgid "Contributors" msgstr "Aozerien" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Aotre implijout" @@ -5954,7 +6131,6 @@ msgid "" msgstr "" #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Pluginoù" @@ -6035,18 +6211,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "Ment direizh." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "C'hwitet eo bet an enskrivadur d'ar strollad." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "N'eo ezel eus strollad ebet." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "C'hwitet eo bet an disenskrivadur d'ar strollad." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6059,6 +6223,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "Ur fazi 'zo bet e-pad enolladenn an implijer ; diwiriek." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "C'hwitet eo bet an enskrivadur d'ar strollad." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "N'eo ezel eus strollad ebet." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "C'hwitet eo bet an disenskrivadur d'ar strollad." + #. TRANS: Activity title. msgid "Join" msgstr "Stagañ" @@ -6132,6 +6308,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Ne c'helloc'h ket reiñ rolloù d'an implijerien eus al lec'hienn-mañ." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Ne c'helloc'h ket adlavar ho alioù." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Ne c'helloc'h ket adkemer ho ali deoc'h." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Ne c'helloc'h ket adlavar ho alioù." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Ne c'helloc'h ket adlavar ho alioù." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Adkemeret ho peus ar c'hemenn-mañ c'hoazh." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Ne heuilh %s den ebet." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6157,16 +6363,13 @@ msgstr "Dibosupl eo enrollañ titouroù ar strollad lec'hel." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6188,6 +6391,7 @@ msgid "Unable to save tag." msgstr "Dibosupl eo enrollañ an tikedenn." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Nac'het ez eus bet deoc'h en em goumanantiñ." @@ -6215,7 +6419,9 @@ msgstr "Dibosupl eo dilemel ar c'houmanant." msgid "Could not delete subscription." msgstr "Dibosupl eo dilemel ar c'houmanant." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Heuliañ" @@ -6283,18 +6489,24 @@ msgid "User deletion in progress..." msgstr "Diverkadenn an implijer o vont war-raok..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Kemmañ arventennoù ar profil" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Aozañ" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Kas ur gemennadenn war-eeun d'an implijer-mañ" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Kemennadenn" @@ -6316,10 +6528,6 @@ msgctxt "role" msgid "Moderator" msgstr "Habasker" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "En em enskrivañ" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6345,7 +6553,9 @@ msgstr "Respont" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6459,8 +6669,9 @@ msgstr "" msgid "No content for notice %s." msgstr "N'eus danvez ebet evit ar gemennadenn %s." -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "N'eus ket eus an implijer %s." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6508,76 +6719,129 @@ msgstr "N'eo ket bet emplementet saveSettings()." msgid "Unable to delete design setting." msgstr "Dibosupl eo dilemel an arventennoù krouiñ." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Degemer" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Degemer" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Merañ" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Arventennoù diazez al lec'hienn" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Lec'hienn" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Kefluniadur ar c'hrouiñ" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Design" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Kefluniadur an implijer" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Implijer" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Kefluniadur ar moned" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Moned" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Kefluniadur an hentoù" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Hentoù" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Kefluniadur an dalc'hoù" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Dalc'hoù" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Kemmañ ali al lec'hienn" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Ali al lec'hienn" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Kefluniadur ar primoù" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Snapshots" +msgstr "Prim" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Aotre implijout" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Kefluniadur an hentoù" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Pluginoù" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6586,6 +6850,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6622,9 +6887,11 @@ msgstr "" msgid "Could not issue access token." msgstr "Diposubl eo ensoc'hañ ur gemenadenn" +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "" +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "Ur fazi 'zo bet en ur ensoc'hañ an avatar" @@ -6718,6 +6985,17 @@ msgstr "" msgid "Cancel" msgstr "Nullañ" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Enrollañ" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Oberiadenn dianav" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr " gant " @@ -6740,11 +7018,12 @@ msgstr "Aprouet d'an %1$s - moned \"%2$s\"." msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Disteuler" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -6785,6 +7064,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "An holl koumanantoù" + #. TRANS: Title for command results. msgid "Command results" msgstr "Disoc'hoù an urzhiad" @@ -6795,6 +7080,7 @@ msgid "AJAX error" msgstr "Fazi Ajax" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Urzhiad bet klokaet" @@ -6914,6 +7200,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -6938,11 +7226,6 @@ msgstr "Ur gudenn 'zo bet pa veze kaset ho kemennadenn." msgid "Notice from %s repeated." msgstr "" -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#, fuzzy -msgid "Error repeating notice." -msgstr "Fazi en ur hizivaat ar profil a-bell." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7256,13 +7539,19 @@ msgstr "" msgid "Go to the installer." msgstr "Mont d'ar meziant staliañ" +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Fazi bank roadennoù" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Foran" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Diverkañ" @@ -7270,6 +7559,7 @@ msgstr "Diverkañ" msgid "Delete this user" msgstr "Diverkañ an implijer-mañ" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Enrollañ an design" @@ -7282,14 +7572,6 @@ 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. -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. -msgid "Reset back to default" -msgstr "Adlakaat an arventennoù dre ziouer" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7298,7 +7580,7 @@ msgstr "Enporzhiañ ar restr" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Gallout a rit kargañ hoc'h avatar personel. Ment vrasañ ar restr zo %s." @@ -7312,15 +7594,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Diweredekaet" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "Dibosupl eo hizivaat ho design." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". #, fuzzy msgid "Design defaults restored." @@ -7353,48 +7626,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Pennrolloù" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "Mignon ur mignon (FOAF)" -#, fuzzy -msgid "Not an atom feed." -msgstr "An holl izili" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Lanvioù" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "An holl" +#. TRANS: Fieldset legend on gallery action page. #, fuzzy msgid "Select tag to filter" msgstr "Dibab un douger" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Balizenn" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +msgid "Choose a tag to narrow list." msgstr "" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Mont" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "" @@ -7454,9 +7740,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Ezel abaoe" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7523,6 +7811,7 @@ msgid "%s blocked users" msgstr "implijerien stanket ar strollad %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Merañ" @@ -7625,23 +7914,46 @@ msgid_plural "%dB" msgstr[0] "%d o" msgstr[1] "%d o" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, fuzzy, php-format msgid "Unknown inbox source %d." msgstr "Yezh \"%s\" dizanv." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Stagañ" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Kuitaat" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Kevreañ" @@ -7691,6 +8003,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "Ne heuilh %s den ebet." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "Ne heuilh %s den ebet." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -7898,44 +8224,62 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. #, fuzzy msgid "Only the user can read their own mailboxes." msgstr "N'eus nemet an implijerien kevreet hag a c'hell adkemer alioù." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." msgstr "" +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Boest resev" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Ar gemennadennoù ho peus resevet" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Boest kas" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Ar c'hemenadennoù kaset ganeoc'h" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. #, fuzzy msgid "Could not parse message." msgstr "Diposubl eo ensoc'hañ ur gemenadenn" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "N'eo ket un implijer enrollet." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. #, fuzzy msgid "Sorry, that is not your incoming email address." msgstr "N'eo ket ho postel." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. #, fuzzy msgid "Sorry, no incoming email allowed." msgstr "Chomlec'h postel ebet o tont." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. #, fuzzy, php-format -msgid "Unsupported message type: %s" +msgid "Unsupported message type: %s." msgstr "Diembreget eo ar furmad-se." #. TRANS: Form legend for form to make a user a group admin. @@ -7986,10 +8330,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Kas ur gemennadenn war-eeun" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Dibab un aotre-implijout" @@ -7999,31 +8346,67 @@ msgstr "Dibab un aotre-implijout" msgid "No mutual subscribers." msgstr "Nann-koumanantet !" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Da" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Kas" +#. TRANS: Header in message list. msgid "Messages" msgstr "Kemennadennoù" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "eus" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Postel" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "N'oc'h ket aotreet da zilemel ar gont-mañ." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Arabat dilemel an implijer-mañ" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8069,68 +8452,95 @@ msgid "" "try again later" msgstr "" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Ali" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "R" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "K" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "e" -msgid "web" -msgstr "web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "en amdro" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Adkemeret gant" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Respont d'ar c'hemenn-mañ" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Respont" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Dilemel ar c'hemenn-mañ" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Ali adkemeret" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Kas ur blinkadenn d'an implijer-mañ" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Blinkadenn" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Kas ur blinkadenn d'an implijer-mañ" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8138,19 +8548,51 @@ msgstr "" msgid "Duplicate notice." msgstr "" +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. #, fuzzy -msgid "Couldn't insert new subscription." +msgid "Could not insert new subscription." msgstr "Dibosupl eo dilemel ar c'houmanant." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Ho profil" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Respontoù" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Pennrolloù" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Implijer" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Kemennadennoù" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Ar gemennadennoù ho peus resevet" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, fuzzy, php-format msgid "Tags in %s's notices" @@ -8174,29 +8616,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Arventennoù" -msgid "Change your personal settings" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Change your personal settings." msgstr "Kemmañ ho arventennoù hiniennel" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Kefluniadur an implijer" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "Digevreañ" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Digevreañ diouzh al lec'hienn" -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "Kevreañ d'al lec'hienn" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "Klask" -msgid "Search the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Search the site." msgstr "Klask el lec'hienn" #. TRANS: H2 text for user subscription statistics. @@ -8243,31 +8701,54 @@ msgstr "An holl strolladoù" msgid "Unimplemented method." msgstr "" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Strolladoù" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Strolladoù implijerien" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Merkoù nevez" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Merkoù nevez" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Heverk" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Poblek" +#. TRANS: Client error displayed when return-to was defined without a target. #, fuzzy msgid "No return-to arguments." msgstr "Arguzenn ID ebet." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Adkregiñ gant ar c'hemenn-mañ ?" -msgid "Yes" -msgstr "Ya" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Adkregiñ gant ar c'hemenn-mañ" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, fuzzy, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Stankañ an implijer-mañ eus ar strollad-se" @@ -8277,9 +8758,13 @@ msgstr "Stankañ an implijer-mañ eus ar strollad-se" msgid "Page not found." msgstr "N'eo ket bet kavet an hentenn API !" +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Poull-traezh" +#. TRANS: Description of form to sandbox a user. #, fuzzy msgid "Sandbox this user" msgstr "Distankañ an implijer-mañ" @@ -8298,130 +8783,278 @@ msgctxt "BUTTON" msgid "Search" msgstr "Klask" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Tud" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Klask tud el lec'hienn-mañ" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Ali" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Klask alioù en danvez" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Klask strolladoù el lec'hienn-mañ" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "Skoazell" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Diwar-benn" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "FAG" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "AIH" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Prevezded" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Mammenn" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Stumm" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Darempred" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Badj" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Rann hep titl" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Muioc'h..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Arventennoù" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Kemmañ arventennoù ho profil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Enporzhiañ un avatar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Ger-tremen" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Cheñch ar ger-tremen" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Postel" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Kemmañ tretadur ar posteloù" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Krouit ho profil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Hizivadennoù dre SMS" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Kevreadennoù" +#. TRANS: Menu item title in settings navigation panel. #, fuzzy msgid "Authorized connected applications" msgstr "Poeladoù kevreet." +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Didrouz" +#. TRANS: Description of form to silence a user. #, fuzzy msgid "Silence this user" msgstr "Diverkañ an implijer-mañ" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Koumanantoù" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Koumanantoù %s" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Ar re koumanantet" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Koumananterien %s" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Ezel eo %s eus ar strolladoù" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "Pediñ" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Pediñ mignoned hag kenseurted da zont ganeoc'h war %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "En em goumanantiñ d'an implijer-mañ" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Hini ebet" @@ -8430,19 +9063,26 @@ msgstr "Hini ebet" msgid "Invalid theme name." msgstr "Ment direizh." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "" +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. #, fuzzy msgid "Failed saving theme." msgstr "Ur gudenn 'zo bet e-pad hizivadenn an avatar." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8450,31 +9090,31 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. #, fuzzy msgid "Error opening theme archive." msgstr "Fazi en ur hizivaat ar profil a-bell." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Ali" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -8505,8 +9145,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Ouzhpennañ d'ar pennrolloù" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Tennañ eus ar pennrolloù" @@ -8518,8 +9159,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Adkemeret ho peus ar c'hemenn-mañ c'hoazh." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Kemenn bet adkemeret dija." @@ -8529,6 +9171,28 @@ msgstr[1] "Kemenn bet adkemeret dija." msgid "Top posters" msgstr "An implijerien an efedusañ" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Da" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Verb dizanv : \"%s\"." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8649,7 +9313,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "" -#~ "Re hir eo ar gemennadenn - ar ment brasañ a zo %1$d arouezenn, %2$d " -#~ "arouezenn ho peus lakaet." +#~ msgid "Couldn't update your design." +#~ msgstr "Dibosupl eo hizivaat ho design." diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index c448f2dc7e..a6a77839b9 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -16,20 +16,54 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:40+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:41+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Desconegut" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Acció desconeguda" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Accés" @@ -83,7 +117,9 @@ msgstr "Desa els paràmetres d'accés" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -95,6 +131,7 @@ msgstr "Desa" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "No existeix la pàgina." @@ -113,6 +150,7 @@ msgstr "No existeix la pàgina." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -137,8 +175,11 @@ msgstr "No existeix la pàgina." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "No existeix l'usuari." @@ -151,7 +192,15 @@ msgstr "%1$s i amics, pàgina %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s i amics" @@ -223,28 +272,14 @@ msgstr "Un mateix i amics" msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualitzacions de %1$s i amics a %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "No s'ha trobat el mètode API!" +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -280,6 +315,7 @@ msgstr "No s'ha pogut actualitzar l'usuari." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "L'usuari no té perfil." @@ -319,6 +355,8 @@ msgstr "No s'han pogut desar els paràmetres de disseny." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "No s'ha pogut actualitzar el vostre disseny." @@ -690,9 +728,12 @@ msgstr "El testimoni de sol·licitud ja està autoritzat." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" "Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si " @@ -847,16 +888,6 @@ msgstr "No podeu eliminar l'estat d'un altre usuari." msgid "No such notice." msgstr "No existeix aquest avís." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "No podeu repetir els vostres propis avisos." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Avís duplicat." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -898,8 +929,11 @@ msgstr "S'ha eliminat l'avís %d" msgid "Client must provide a 'status' parameter with a value." msgstr "El client ha de proporcionar un paràmetre 'status' amb un valor." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -912,6 +946,8 @@ msgstr "No s'ha trobat l'avís pare." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -983,6 +1019,8 @@ msgstr "%1$s actualitzacions que responen a avisos de %2$s / %3$s." msgid "Repeats of %s" msgstr "Repeticions de %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%1$s ha marcat l'avís %2$s com a preferit" @@ -997,6 +1035,8 @@ msgstr "Avisos etiquetats amb %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualitzacions etiquetades amb %1$s el %2$s!" @@ -1111,11 +1151,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Manca el perfil." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1123,10 +1165,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "La llista dels usuaris d'aquest grup." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1151,6 +1195,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "La llista dels usuaris d'aquest grup." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "No s'ha pogut afegir l'usuari %1$s al grup %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "estat de %1$s a %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Subscripció autoritzada" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "S'ha cancel·lat l'autorització." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1187,8 +1259,8 @@ msgstr "Ja és una preferit." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "%s pertinències a grup" #. TRANS: Subtitle for group membership feed. @@ -1201,8 +1273,7 @@ msgstr "Els grups en què %1$s n'és membre a %2$s" msgid "Cannot add someone else's membership." msgstr "No es pot afegir la pertinència d'algú altre." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "Només es poden gestionar les activitats d'unió." @@ -1315,6 +1386,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "L'usuari que no coincideix amb cap perfil" @@ -1341,6 +1413,7 @@ msgstr "Vista prèvia" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Elimina" @@ -1462,6 +1535,7 @@ msgstr "No bloquis l'usuari." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Sí" @@ -1518,6 +1592,32 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s ha abandonat el grup %2$s" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "No heu iniciat una sessió." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "No hi ha cap identificador del perfil en la sol·licitud." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "No hi ha cap perfil amb aquesta ID." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "No subscrit" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Cap codi de confirmació." @@ -1656,6 +1756,7 @@ msgstr "No s'ha trobat l'aplicació." msgid "You are not the owner of this application." msgstr "No sou el propietari d'aquesta aplicació." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "S'ha produït un problema amb el testimoni de la vostra sessió." @@ -1726,24 +1827,6 @@ msgstr "No eliminis el grup." msgid "Delete this group." msgstr "Elimina el grup." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "No heu iniciat una sessió." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1931,14 +2014,17 @@ msgid "Use defaults" msgstr "Utilitza els paràmetres per defecte" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." msgstr "Restaura els dissenys per defecte." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "Torna a restaurar els paràmetres per defecte." #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." msgstr "Desa el disseny." @@ -2269,6 +2355,7 @@ msgstr "Fes que deixi de ser preferit." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Avisos populars" @@ -2310,6 +2397,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Avisos preferits de %s" @@ -2322,6 +2411,7 @@ msgstr "Actualitzacions preferides per %1$s a %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Usuaris destacats" @@ -2383,6 +2473,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "El servei remot utilitza una versió desconeguda del protocol OMB." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "S'ha produït un error en actualitzar el perfil remot." @@ -2420,14 +2511,6 @@ msgstr "L'usuari ja té aquest rol." msgid "No profile specified." msgstr "No s'ha especificat cap perfil." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "No hi ha cap perfil amb aquesta ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3052,6 +3135,7 @@ msgid "License selection" msgstr "Selecció de llicència" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privat" @@ -3288,6 +3372,9 @@ msgid "Ajax Error" msgstr "Ajax Error" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nou avís" @@ -3594,7 +3681,6 @@ msgid "Password saved." msgstr "Contrasenya guardada." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Camins" @@ -3789,6 +3875,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Mai" @@ -3950,17 +4037,22 @@ 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). -#, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." 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. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +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: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3973,14 +4065,18 @@ msgid "Location" msgstr "Ubicació" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "On us trobeu, per exemple «ciutat, comarca (o illa), país»" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "On us trobeu, per exemple «ciutat, comarca (o illa), país»." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" msgstr "Comparteix la ubicació on estic en enviar avisos" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Etiquetes" @@ -4015,6 +4111,28 @@ msgstr "" "Subscriu automàticament a qualsevol qui em tingui subscrit (ideal per no-" "humans)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Subscripcions" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "Només es pot seguir gent." + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4045,14 +4163,16 @@ msgstr "Etiqueta no vàlida: «%s»." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -msgid "Could not update user for autosubscribe." -msgstr "No es pot actualitzar l'usuari per autosubscriure." +msgid "Could not update user for autosubscribe or subscribe_policy." +msgstr "" +"No es pot actualitzar l'usuari per autosubscriure o política de subscripció." #. TRANS: Server error thrown when user profile location preference settings could not be updated. msgid "Could not save location prefs." msgstr "No s'han pogut desar les preferències d'ubicació." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "No s'han pogut guardar les etiquetes." @@ -4083,6 +4203,7 @@ msgid "Public timeline, page %d" msgstr "Línia temporal pública, pàgina %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Línia temporal pública" @@ -4266,10 +4387,6 @@ msgstr "Recuperació de contrasenya sol·licitada" msgid "Password saved" msgstr "Contrasenya desada" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Acció desconeguda" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "6 o més caràcters, i no ho oblideu!" @@ -4326,15 +4443,14 @@ msgid "New password successfully saved. You are now logged in." msgstr "Nova contrasenya guardada correctament. Has iniciat una sessió." #. TRANS: Client exception thrown when no ID parameter was provided. -#, fuzzy msgid "No id parameter." -msgstr "No hi ha cap argument ID." +msgstr "No hi ha paràmetre id." #. TRANS: Client exception thrown when an invalid ID parameter was provided for a file. #. TRANS: %d is the provided ID for which the file is not present (number). -#, fuzzy, php-format +#, php-format msgid "No such file \"%d\"." -msgstr "No existeix el fitxer." +msgstr "No existeix el fitxer «%d»." #. TRANS: Client error displayed when trying to register to an invite-only site without an invitation. msgid "Sorry, only invited people can register." @@ -4349,7 +4465,6 @@ msgid "Registration successful" msgstr "Registre satisfactori" #. TRANS: Title for registration page. -#, fuzzy msgctxt "TITLE" msgid "Register" msgstr "Registre" @@ -4359,10 +4474,10 @@ msgid "Registration not allowed." msgstr "Registre no permès." #. TRANS: Form validation error displayed when trying to register without agreeing to the site license. -#, fuzzy msgid "You cannot register if you do not agree to the license." -msgstr "No podeu registrar-vos-hi si no accepteu la llicència." +msgstr "No podeu registrar-vos si no accepteu la llicència." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "L'adreça de correu electrònic ja existeix." @@ -4379,13 +4494,11 @@ msgstr "" "enllaçar a amics i col·legues." #. TRANS: Field label on account registration page. In this field the password has to be entered a second time. -#, fuzzy msgctxt "PASSWORD" msgid "Confirm" msgstr "Confirma" #. TRANS: Field label on account registration page. -#, fuzzy msgctxt "LABEL" msgid "Email" msgstr "Correu electrònic" @@ -4399,26 +4512,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "Nom més llarg, preferiblement el vostre nom «real»." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -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: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Feu una descripció personal i interessos" - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "On us trobeu, per exemple «ciutat, comarca (o illa), país»." - -#. TRANS: Field label on account registration page. -#, fuzzy +#. TRANS: Button text to register a user on account registration page. msgctxt "BUTTON" msgid "Register" msgstr "Registre" @@ -4537,7 +4631,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "URL del vostre perfil en un altre servei de microblogging compatible." #. TRANS: Button text on page for remote subscribe. -#, fuzzy +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. msgctxt "BUTTON" msgid "Subscribe" msgstr "Subscriu-m'hi" @@ -4570,15 +4665,8 @@ msgstr "Només els usuaris que han iniciat una sessió poden enviar avisos." msgid "No notice specified." msgstr "No s'ha especificat cap avís." -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "No podeu repetir el vostre propi avís." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Ja havíeu repetit l'avís." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Repetit" @@ -4589,6 +4677,8 @@ msgstr "Repetit!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Respostes a %s" @@ -4703,6 +4793,7 @@ msgid "System error uploading file." msgstr "Error del sistema en pujar el fitxer." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." msgstr "No és un canal Atom." @@ -4735,7 +4826,6 @@ msgid "You cannot revoke user roles on this site." msgstr "No podeu revocar els rols d'usuari en aquest lloc." #. TRANS: Client error displayed when trying to revoke a role that is not set. -#, fuzzy msgid "User does not have this role." msgstr "L'usuari no té aquest rol." @@ -4745,6 +4835,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "No podeu posar els usuaris en un entorn de prova en aquest lloc." @@ -4753,7 +4844,6 @@ msgid "User is already sandboxed." msgstr "L'usuari ja es troba en un entorn de proves." #. TRANS: Title for the sessions administration panel. -#, fuzzy msgctxt "TITLE" msgid "Sessions" msgstr "Sessions" @@ -4763,7 +4853,6 @@ msgid "Session settings for this StatusNet site" msgstr "Paràmetres de sessió d'aquest lloc basat en StatusNet" #. TRANS: Fieldset legend on the sessions administration panel. -#, fuzzy msgctxt "LEGEND" msgid "Sessions" msgstr "Sessions" @@ -4775,9 +4864,8 @@ msgstr "Gestiona les sessions" #. TRANS: Checkbox title on the sessions administration panel. #. TRANS: Indicates if StatusNet should handle session administration. -#, fuzzy msgid "Handle sessions ourselves." -msgstr "Si cal gestionar les sessions nosaltres mateixos." +msgstr "Gestionar nosaltres mateixos les sessions." #. TRANS: Checkbox label on the sessions administration panel. #. TRANS: Indicates if StatusNet should write session debugging output. @@ -4785,14 +4873,12 @@ msgid "Session debugging" msgstr "Depuració de la sessió" #. TRANS: Checkbox title on the sessions administration panel. -#, fuzzy msgid "Enable debugging output for sessions." msgstr "Activa la sortida de depuració per a les sessions." #. TRANS: Title for submit button on the sessions administration panel. -#, fuzzy msgid "Save session settings" -msgstr "Desa els paràmetres d'accés" +msgstr "Desa la configuració de sessió" #. TRANS: Client error displayed trying to display an OAuth application while not logged in. msgid "You must be logged in to view an application." @@ -4942,6 +5028,8 @@ msgstr "Membres" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Cap)" @@ -5024,27 +5112,32 @@ msgstr "Missatge per a %1$s a %2$s" msgid "Message from %1$s on %2$s" msgstr "Missatge de %1$s a %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "La MI no és disponible." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "S'ha eliminat l'avís." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" +#, fuzzy, php-format +msgid "Notices by %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, %3$d is the page number. -#, php-format -msgid "%1$s tagged %2$s, page %3$d" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%1$s etiquetats %2$s, pàgina %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, pàgina %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Avisos etiquetats amb %1$s, pàgina %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5134,6 +5227,7 @@ msgid "Repeat of %s" msgstr "Repetició de %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "No podeu silenciar els usuaris d'aquest lloc." @@ -5432,51 +5526,72 @@ msgstr "" msgid "No code entered." msgstr "No s'ha introduït cap codi." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Instantànies" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Gestiona la configuració de les instantànies" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "El valor d'execució d'instantànies no és vàlid." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "La freqüència de les instantànies ha de ser un nombre." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "L'URL d'informe d'instantànies no és vàlid." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Instantànies" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "A l'atzar durant les sol·licituds web" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "En una tasca planificada" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Instantànies de dades" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Quan enviar dades estadístiques als servidors de l'status.net" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Freqüència" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Les instantànies s'enviaran una vegada cada N sol·licituds web" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "Informa de l'URL" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Les instantànies s'enviaran a aquest URL" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Desa" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Desa els paràmetres de les instantànies" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5488,6 +5603,27 @@ msgstr "No estàs subscrit a aquest perfil." msgid "Could not save subscription." msgstr "No s'ha pogut guardar la subscripció." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s pertinències a grup" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s membres del grup, pàgina %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "La llista dels usuaris d'aquest grup." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "No podeu subscriure-us a un perfil remot OMB 0.1 amb aquesta acció." @@ -5609,31 +5745,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Avisos etiquetats amb %1$s, pàgina %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Canal d'avisos de l'etiqueta %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Canal d'avisos de l'etiqueta %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Canal d'avisos de l'etiqueta %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "No hi ha cap argument ID." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Etiqueta %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Perfil de l'usuari" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Etiqueta usuari" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5642,17 +5790,26 @@ msgstr "" "Etiquetes d'aquest usuari (lletres, nombres,, -, ., i _), comes o separades " "amb espais" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Només podeu etiquetar gent a la qual estigueu subscrit o que us hagin " "subscrit." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Etiquetes" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Utilitzeu aquest formulari per afegir etiquetes als vostres subscriptors i " "subscripcions." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "No existeix aquesta etiqueta." @@ -5660,25 +5817,31 @@ msgstr "No existeix aquesta etiqueta." msgid "You haven't blocked that user." msgstr "No heu blocat l'usuari." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "L'usuari no està a l'entorn de proves." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "L'usuari no està silenciat." -msgid "No profile ID in request." -msgstr "No hi ha cap identificador del perfil en la sol·licitud." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "No subscrit" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "La llicència del flux de qui escolteu, «%1$s», no és compatible amb la " "llicència del lloc, «%2$s»." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Paràmetres de missatgeria instantània" @@ -5693,10 +5856,12 @@ msgstr "Gestiona altres opcions diferents." msgid " (free service)" msgstr " (servei lliure)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Cap" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "[intern]" @@ -5708,15 +5873,19 @@ msgstr "Escurça els URL amb" msgid "Automatic shortening service to use." msgstr "Servei d'auto-escurçament a utilitzar." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5726,17 +5895,21 @@ msgid "URL shortening service is too long (maximum 50 characters)." msgstr "" "El servei d'autoescurçament d'URL és massa llarga (màxim 50 caràcters)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "El contingut de l'avís no és vàlid." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "El contingut de l'avís no és vàlid." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Usuari" @@ -5760,6 +5933,9 @@ msgstr "" 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: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Perfil" @@ -5811,7 +5987,7 @@ msgstr "Desa els paràmetres d'usuari." msgid "Authorize subscription" msgstr "Autoritza la subscripció" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5824,16 +6000,19 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "Accepta" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. msgid "Subscribe to this user." msgstr "Subscriu-me a aquest usuari" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5852,9 +6031,10 @@ msgstr "No és una sol·licitud d'autorització!" msgid "Subscription authorized" msgstr "Subscripció autoritzada" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "S'ha autoritzat la subscripció, però no s'ha enviat cap URL de la crida de " @@ -5865,9 +6045,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Subscripció rebutjada" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "S'ha rebutjat la subscripció, però no s'ha enviat cap URL de la crida de " @@ -5898,16 +6079,6 @@ msgstr "L'URI de qui escolteu, «%s», és un usuari local." msgid "Profile URL \"%s\" is for a local user." msgstr "L'URL del perfil «%s» és només per a un usuari local." -#. 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. -#, 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. #, fuzzy, php-format @@ -6012,7 +6183,6 @@ msgid "Contributors" msgstr "Col·laboració" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Llicència" @@ -6051,7 +6221,6 @@ msgstr "" "License juntament amb el programa. Si no és així, consulteu %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Connectors" @@ -6139,18 +6308,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "El nom del fitxer no és vàlid." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "No s'ha pogut unir al grup." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "No s'és part del grup." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "La sortida del grup ha fallat." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6163,6 +6320,18 @@ msgstr "L'identificador del perfil %s no és vàlid." msgid "Group ID %s is invalid." msgstr "L'identificador del grup %s no és vàlid." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "No s'ha pogut unir al grup." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "No s'és part del grup." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "La sortida del grup ha fallat." + #. TRANS: Activity title. msgid "Join" msgstr "Inici de sessió" @@ -6238,6 +6407,35 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Ha estat bandejat de publicar avisos en aquest lloc." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "No podeu repetir els vostres propis avisos." + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "No podeu repetir el vostre propi avís." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "No podeu repetir els vostres propis avisos." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "No podeu repetir els vostres propis avisos." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Ja havíeu repetit l'avís." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "L'usuari no té un darrer avís." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6263,16 +6461,13 @@ msgstr "No s'ha pogut desar la resposta de %1$d, %2$d." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6296,6 +6491,7 @@ msgid "Unable to save tag." msgstr "No s'ha pogut desar l'etiqueta." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Se us ha banejat la subscripció." @@ -6323,7 +6519,9 @@ msgstr "No s'ha pogut eliminar el testimoni OMB de la subscripció." msgid "Could not delete subscription." msgstr "No s'ha pogut eliminar la subscripció." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Segueix" @@ -6391,18 +6589,24 @@ msgid "User deletion in progress..." msgstr "S'està eliminant l'usuari..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Edita la configuració del perfil" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Edita" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Envia un missatge directe a aquest usuari" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Missatge" @@ -6424,10 +6628,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderador" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Subscriu-m'hi" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6452,7 +6652,9 @@ msgstr "Respon" msgid "Write a reply..." msgstr "Escriviu una resposta..." +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6577,8 +6779,9 @@ msgstr "" msgid "No content for notice %s." msgstr "No hi ha contingut a l'avís %s." -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "No existeix l'usuari %s." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6625,75 +6828,128 @@ msgstr "El saveSettings() no està implementat." msgid "Unable to delete design setting." msgstr "No s'ha pogut eliminar el paràmetre de disseny." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Pàgina personal" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Pàgina personal" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Admin" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Configuració bàsica del lloc" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Lloc" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Configuració del disseny" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Disseny" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Configuració de l'usuari" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Usuari" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Configuració de l'accés" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Accés" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Configuració dels camins" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Camins" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Configuració de les sessions" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Sessions" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Edita l'avís del lloc" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Avís del lloc" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Configuració de les instantànies" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Snapshots" +msgstr "Instantànies" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Defineix la llicència del lloc" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Llicència" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Plugins configuration" msgstr "Configuració dels connectors" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Connectors" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6704,6 +6960,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "No hi ha cap aplicació per a aquest clau de consumidor." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "No es permet l'ús de l'API." @@ -6739,9 +6996,11 @@ msgstr "" msgid "Could not issue access token." msgstr "No s'ha pogut emetre un testimoni d'accés." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Error de la base de dades en inserir l'usuari de l'aplicació OAuth." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "" "Error de la base de dades en actualitzar l'usuari de l'aplicació OAuth." @@ -6836,6 +7095,17 @@ msgstr "" msgid "Cancel" msgstr "Cancel·la" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Desa" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Acció desconeguda" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr " per " @@ -6858,11 +7128,12 @@ msgstr "Aprovat: %1$s - accés «%2$s»." msgid "Access token starting with: %s" msgstr "Testimoni d'accés que comença amb: %s" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Revoca" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "L'element autor ha de contenir un element nom." @@ -6899,6 +7170,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Totes les subscripcions" + #. TRANS: Title for command results. msgid "Command results" msgstr "Resultats de les comandes" @@ -6908,6 +7185,7 @@ msgid "AJAX error" msgstr "Error de l'AJAX" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Comanda completada" @@ -7027,6 +7305,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7049,10 +7329,6 @@ msgstr "S'ha produït un error en enviar el missatge directe." msgid "Notice from %s repeated." msgstr "S'ha repetit l'avís de %s." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "S'ha produït un error en repetir l'avís." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7359,13 +7635,19 @@ msgstr "Podeu voler executar l'instal·lador per corregir-ho." msgid "Go to the installer." msgstr "Vés a l'instal·lador." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Error de la base de dades" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Públic" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Elimina" @@ -7373,6 +7655,7 @@ msgstr "Elimina" msgid "Delete this user" msgstr "Elimina l'usuari" +#. TRANS: Form legend of form for changing the page design. msgid "Change design" msgstr "Canvia el disseny" @@ -7384,14 +7667,6 @@ 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. -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. -msgid "Reset back to default" -msgstr "Torna a restaurar al valor per defecte" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7399,7 +7674,7 @@ msgstr "Puja un fitxer" #. TRANS: Instructions for form on profile design page. msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Podeu pujar la vostra imatge de fons personal. La mida màxima del fitxer és " "2MB." @@ -7414,15 +7689,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Desactivada" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "No s'ha pogut actualitzar el vostre disseny." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "S'han restaurat els paràmetres de disseny per defecte." @@ -7452,46 +7718,62 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Preferit" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -msgid "Not an atom feed." -msgstr "No és un canal atom." - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "No hi ha cap autor al canal." -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +#, fuzzy +msgid "Cannot import without a user." msgstr "No es pot importar sense un usuari." #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Canals" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Tot" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Seleccioneu l'etiqueta per filtrar" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Etiqueta" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Trieu una etiqueta per escurçar la llista" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Vés-hi" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Atorga a l'usuari el rol «%s»" @@ -7554,9 +7836,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Membre des de" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7623,6 +7907,7 @@ msgid "%s blocked users" msgstr "%s usuaris blocats" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Administrador" @@ -7723,23 +8008,46 @@ msgid_plural "%dB" msgstr[0] "%dB" msgstr[1] "%dB" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Font %d de la safata d'entrada desconeguda." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Inici de sessió" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Deixa" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Inici de sessió" @@ -7801,6 +8109,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s ara està escoltant els vostres avisos a %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s ara està escoltant els vostres avisos a %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8092,9 +8414,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Només l'usuari pot llegir les seves safates de correu." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8103,32 +8427,46 @@ msgstr "" "usuaris en la conversa. La gent pot enviar-vos missatges només per als " "vostres ulls." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +msgctxt "MENU" msgid "Inbox" msgstr "Safata d'entrada" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Els teus missatges rebuts" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +msgctxt "MENU" msgid "Outbox" msgstr "Safata de sortida" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Els teus missatges enviats" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "No es pot analitzar el missatge." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Usuari no registrat." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Ho sentim, aquesta no és la vostra adreça electrònica d'entrada." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Ho sentim, no s'hi permet correu d'entrada." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Tipus de missatge no permès: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8182,10 +8520,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "«%s» no és un tipus de fitxer compatible en aquest servidor." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Envia un avís directe" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "Seleccioneu el destinatari" @@ -8193,31 +8534,67 @@ msgstr "Seleccioneu el destinatari" msgid "No mutual subscribers." msgstr "No teniu subscriptors mutus." +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "A" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Envia" +#. TRANS: Header in message list. msgid "Messages" msgstr "Missatges" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "de" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Correu electrònic" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "No teniu permisos per eliminar el grup." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "No eliminis l'usuari." -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8265,68 +8642,95 @@ msgstr "" "Ho sentim, la obtenció de la vostra ubicació geogràfica està trigant més de " "l'esperat; torneu-ho a provar més tard" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Avisos" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "E" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "O" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "a" -msgid "web" -msgstr "web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "en context" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Repetit per" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Respon a aquest avís" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Respon" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Elimina aquest avís" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Avís repetit" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Crida l'atenció a l'usuari" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Crida l'atenció" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Crida l'atenció a l'usuari" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "S'ha produït un error en inserir un perfil nou." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "S'ha produït un error en inserir un avatar." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "S'ha produït un error en inserir un perfil remot." @@ -8334,18 +8738,48 @@ msgstr "S'ha produït un error en inserir un perfil remot." msgid "Duplicate notice." msgstr "Avís duplicat." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "No s'ha pogut inserir una nova subscripció." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Profile" +msgstr "Perfil" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "El vostre perfil" +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" msgid "Replies" msgstr "Respostes" +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" msgid "Favorites" msgstr "Preferits" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Usuari" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Missatges" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Els teus missatges rebuts" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8369,28 +8803,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Paràmetres de l'SMS" -msgid "Change your personal settings" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Change your personal settings." msgstr "Canvieu els vostres paràmetres personals" -msgid "Site configuration" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Site configuration." msgstr "Configuració del lloc" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "Finalitza la sessió" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Finalitza la sessió del lloc" -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "Inicia una sessió al lloc" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "Cerca" -msgid "Search the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Search the site." msgstr "Cerca al lloc" #. TRANS: H2 text for user subscription statistics. @@ -8437,30 +8888,53 @@ msgstr "Tots els grups" msgid "Unimplemented method." msgstr "Mètode no implementat" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grups" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Grups d'usuaris" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Etiquetes recents" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Etiquetes recents" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Destacat" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Popular" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "No hi ha arguments de retorn." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Voleu repetir l'avís?" -msgid "Yes" -msgstr "Sí" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Repeteix l'avís" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Revoca el rol «%s» de l'usuari" @@ -8469,9 +8943,13 @@ msgstr "Revoca el rol «%s» de l'usuari" msgid "Page not found." msgstr "No s'ha trobat la pàgina." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Entorn de proves" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Posa l'usuari a l'entorn de proves" @@ -8489,128 +8967,273 @@ msgctxt "BUTTON" msgid "Search" msgstr "Cerca" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Gent" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Cerca gent en aquest lloc" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Avisos" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Cerca el contingut dels avisos" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Cerca grups en aquest lloc" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "Ajuda" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Quant a" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "Preguntes més freqüents" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "Termes del servei" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Privadesa" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Font" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Versió" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Contacte" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Insígnia" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Secció sense títol" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Més..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Paràmetres de l'SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Canvieu els paràmetres del vostre perfil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Puja un avatar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Contrasenya" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Canvieu la vostra contrasenya" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Correu electrònic" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Canvieu la gestió del correu" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Dissenyeu el vostre perfil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "IM" +msgstr "MI" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Actualitzacions per missatgeria instantània (MI)" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Actualitzacions per SMS" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" msgid "Connections" msgstr "Connexions" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Aplicacions de connexió autoritzades" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Silencia" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Silencia l'usuari" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Subscripcions" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Persones %s subscrites a" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Subscriptors" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Gent subscrita a %s" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "%s grups són membres de" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "Convida" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Convida amics i companys perquè participin a %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Subscriu-me a aquest usuari" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Núvol d'etiquetes personals (etiquetes pròpies)" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Núvol d'etiquetes personals" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Cap" @@ -8618,18 +9241,26 @@ msgstr "Cap" msgid "Invalid theme name." msgstr "El nom del tema no és vàlid." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "El servidor no pot gestionar la pujada de temes si no pot tractar ZIP." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Manca el fitxer del tema o la pujada ha fallat." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Ha fallat el desament del tema." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "El tema no és vàlid: l'estructura del directori no és correcta" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8639,9 +9270,12 @@ msgstr[0] "" msgstr[1] "" "El tema pujat és massa gran; ha de tenir menys de %d bytes descomprimit." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "L'arxiu del tema no és vàlid: manca el fitxer css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -8649,22 +9283,20 @@ msgstr "" "El tema conté un fitxer o un nom de carpeta que no és vàlida. Feu servir " "només lletres ASCII, dígits, caràcters de subratllat i el símbol de menys." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "El tema conté uns noms d'extensió de fitxer que no són segurs." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "El tema conté un tipus de fitxer «.%s», que no està permès." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "S'ha produït un error en obrir l'arxiu del tema." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Avisos" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -8695,8 +9327,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Fes preferit aquest avís" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Deixa de tenir com a preferit aquest avís" @@ -8708,8 +9341,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Ja havíeu repetit l'avís." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Avís duplicat." @@ -8719,6 +9353,28 @@ msgstr[1] "Avís duplicat." msgid "Top posters" msgstr "Qui més publica" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "A" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Verb desconegut: «%s»." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8834,7 +9490,5 @@ msgstr "L'XML no és vàlid, hi manca l'arrel XRD." msgid "Getting backup from file '%s'." msgstr "Es recupera la còpia de seguretat del fitxer '%s'." -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "" -#~ "El missatge és massa llarg - el màxim és %1$d caràcters, i n'heu enviat %2" -#~ "$d." +#~ msgid "Couldn't update your design." +#~ msgstr "No s'ha pogut actualitzar el vostre disseny." diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 364e992df1..017fd666c7 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -12,21 +12,55 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:41+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:42+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Neznámé" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Neznámá akce" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Přístup" @@ -78,7 +112,9 @@ msgstr "uložit nastavení přístupu" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -90,6 +126,7 @@ msgstr "Uložit" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Tady žádná taková stránka není." @@ -108,6 +145,7 @@ msgstr "Tady žádná taková stránka není." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -132,8 +170,11 @@ msgstr "Tady žádná taková stránka není." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Uživatel neexistuje." @@ -146,7 +187,15 @@ msgstr "%1$s a přátelé, strana %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s a přátelé" @@ -218,28 +267,14 @@ msgstr "Vy a přátelé" msgid "Updates from %1$s and friends on %2$s!" msgstr "Novinky od uživatele %1$s a přátel na %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr " API metoda nebyla nalezena." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -274,6 +309,7 @@ msgstr "Nepodařilo se aktualizovat nastavení uživatele" #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Uživatel nemá profil." @@ -316,6 +352,8 @@ msgstr "Nelze uložit vaše nastavení designu." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Nelze uložit design." @@ -695,9 +733,12 @@ msgstr "Nejste autorizován." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Nastal problém s vaším session tokenem. Zkuste to znovu, prosím." @@ -855,16 +896,6 @@ msgstr "Nesmíte odstraňovat status jiného uživatele." msgid "No such notice." msgstr "Žádné takové oznámení." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Nelze opakovat své vlastní oznámení." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Již jste zopakoval toto oznámení." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -906,8 +937,11 @@ msgstr "Odstranit oznámení" msgid "Client must provide a 'status' parameter with a value." msgstr "Klient musí poskytnout 'status' parametr s hodnotou." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -922,6 +956,8 @@ msgstr " API metoda nebyla nalezena." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -993,6 +1029,8 @@ msgstr "updaty na %1$s odpovídající na updaty od %2$s / %3$s." msgid "Repeats of %s" msgstr "Opakování %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%s (@%s) přidal vaše oznámení jako oblíbené" @@ -1007,6 +1045,8 @@ msgstr "Noticy taglé %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Aktualizace označené %1$s na %2$s!" @@ -1123,11 +1163,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "Pouze správce skupiny smí schválit nebo zrušit požadavky k připojení." #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Chybějící profil." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1135,10 +1177,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Seznam uživatelů v této skupině." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1163,6 +1207,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Seznam uživatelů v této skupině." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Nemohu připojit uživatele %1$s do skupiny %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "status %1 na %2" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Odběr autorizován" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "IM potvrzení zrušeno." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1204,7 +1276,7 @@ msgstr "Přidat do oblíbených" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "členové skupiny %s" #. TRANS: Subtitle for group membership feed. @@ -1218,8 +1290,7 @@ msgstr "Skupiny kterých je %s členem" msgid "Cannot add someone else's membership." msgstr "Nelze vložit odebírání" -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Najít v obsahu oznámení" @@ -1339,6 +1410,7 @@ msgstr "Můžete nahrát váš osobní avatar. Maximální velikost souboru je % #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Uživatel bez odpovídajícího profilu." @@ -1365,6 +1437,7 @@ msgstr "Náhled" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. #, fuzzy msgctxt "BUTTON" msgid "Delete" @@ -1483,6 +1556,7 @@ msgstr "Zablokovat tohoto uživatele" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Ano" @@ -1541,6 +1615,32 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s opustil(a) skupinu %2$s" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Nejste přihlášen(a)." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "CHybí ID profilu v žádosti." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Neexistuje profil s tímto ID." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Odhlášeno" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Žádný potvrzující kód." @@ -1681,6 +1781,7 @@ msgstr "Aplikace nebyla nalezena." msgid "You are not the owner of this application." msgstr "Nejste vlastníkem této aplikace." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Nastal problém s vaším session tokenem." @@ -1757,24 +1858,6 @@ msgstr "Neodstraňujte toto oznámení" msgid "Delete this group." msgstr "Odstranit tohoto uživatele" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Nejste přihlášen(a)." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1971,16 +2054,19 @@ msgid "Use defaults" msgstr "Použít výchozí" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "Obnovit výchozí vzhledy" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "Reset zpět do výchozího" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "Uložit vzhled" @@ -2315,6 +2401,7 @@ msgstr "Znemilostnit oblíbenou" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Populární oznámení" @@ -2356,6 +2443,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "oblíbená oznámení uživatele %s" @@ -2368,6 +2457,7 @@ msgstr "Aktualizace oblíbené uživatelem %1$s na %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Nejlepší uživatelé" @@ -2429,6 +2519,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Vzdálená služba používá neznámou verzi protokolu OMB." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Chyba při aktualizaci vzdáleného profilu." @@ -2466,14 +2557,6 @@ msgstr "Uživatel již tuto roli má." msgid "No profile specified." msgstr "Nebyl vybrán profil." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Neexistuje profil s tímto ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3102,6 +3185,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. #, fuzzy msgid "Private" msgstr "Soukromí" @@ -3342,6 +3426,9 @@ msgid "Ajax Error" msgstr "Ajax Chyba" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nové sdělení" @@ -3650,7 +3737,6 @@ msgid "Password saved." msgstr "Heslo uloženo" #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Cesty" @@ -3861,6 +3947,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Nikdy" @@ -4020,18 +4107,23 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Popište sebe a své zájmy" 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. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +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: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4044,7 +4136,9 @@ msgid "Location" msgstr "Umístění" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Místo. Město, stát." #. TRANS: Checkbox label in form for profile settings. @@ -4052,6 +4146,9 @@ msgid "Share my current location when posting notices" msgstr "Sdělit mou aktuální polohu při posílání hlášek" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Tagy" @@ -4087,6 +4184,27 @@ msgstr "" "Automaticky se přihlásit k odběru toho kdo se přihlásil ke mně (nejlepší pro " "ne-lidi)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Odběry" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4120,7 +4238,7 @@ msgstr "Neplatná velikost" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Nelze aktualizovat nastavení automatického přihlašování." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4129,6 +4247,7 @@ msgid "Could not save location prefs." msgstr "Nelze uložit nastavení umístění." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Nelze uložit nálepky" @@ -4160,6 +4279,7 @@ msgid "Public timeline, page %d" msgstr "Veřejná časová osa, strana %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Veřejné zprávy" @@ -4339,10 +4459,6 @@ msgstr "Zažádáno o obnovu hesla" msgid "Password saved" msgstr "Heslo uloženo" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Neznámá akce" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4439,6 +4555,7 @@ msgstr "Registrace není povolena." msgid "You cannot register if you do not agree to the license." msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Emailová adresa již existuje" @@ -4477,27 +4594,7 @@ msgstr "Použije se pouze pro aktualizace, oznámení a obnovu hesla." msgid "Longer name, preferably your \"real\" name." msgstr "Delší jméno, nejlépe vaše \"skutečné\" jméno" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Popište sebe a své zájmy" -msgstr[1] "Popište sebe a své zájmy" -msgstr[2] "Popište sebe a své zájmy" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Popište sebe a své zájmy" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Místo. Město, stát." - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4616,6 +4713,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "Adresa profilu na jiných kompatibilních mikroblozích." #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4652,16 +4751,8 @@ msgstr "Pouze přihlášení uživatelé mohou opakovat oznámení." msgid "No notice specified." msgstr "Oznámení neuvedeno." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Nemůžete opakovat své vlastní oznámení." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Již jste zopakoval toto oznámení." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Opakované" @@ -4672,6 +4763,8 @@ msgstr "Opakované!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Odpovědi na %s" @@ -4788,6 +4881,7 @@ msgid "System error uploading file." msgstr "Chyba systému při nahrávání souboru" #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Všichni členové" @@ -4828,6 +4922,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Nemůžete sandboxovat uživatele na této stránce." @@ -5028,6 +5123,8 @@ msgstr "Členové" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(nic)" @@ -5111,6 +5208,11 @@ msgstr "Zpráva pro %1$s na %2$s" msgid "Message from %1$s on %2$s" msgstr "Zpráva od %1$s na %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "IM není k dispozici." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Oznámení smazáno." @@ -5118,20 +5220,20 @@ msgstr "Oznámení smazáno." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %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, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Oznámení označená %1$s, strana %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, strana %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Oznámení označená %1$s, strana %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5218,6 +5320,7 @@ msgid "Repeat of %s" msgstr "Opakování %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Na tomto webu nemůžete ztišovat uživatele." @@ -5514,51 +5617,72 @@ msgstr "" msgid "No code entered." msgstr "Nezadán kód" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Snímky (snapshoty)" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Konfigurace snímků" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Neplatná hodnota run. (kdy provádět snapshoty)" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "Frekvence snímků musí být číslo." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "Neplatná URL na reportování snímků" +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Snímky (snapshoty)" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Náhodně při dodávání stránek" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "V naplánovaném úkolu" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Snímky dat" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Kdy posílat statistická data na status.net servery" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frekvence" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Snímky budou odeslány jednou za N web hitů" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "Reportovací URL" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Na tuto adresu budou poslány snímky" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Uložit" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Uložit nastavení snímkování" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5570,6 +5694,27 @@ msgstr "Nejste přihlášen k tomuto profilu." msgid "Could not save subscription." msgstr "Nelze uložit odebírání" +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "členové skupiny %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "členové skupiny %1$s, strana %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Seznam uživatelů v této skupině." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5692,31 +5837,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Oznámení označená %1$s, strana %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Feed oznámení označených %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Feed oznámení označených %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Feed oznámení označených %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Žádný argument ID." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Otagujte %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Uživatelský profil" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Otagujte uživatele" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5725,17 +5882,26 @@ msgstr "" "Tagy pro tohoto uživatele (písmena, číslice, -,., a _), oddělené čárkou nebo " "mezerou" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Můžete označovat pouze lidi, ke kterým jste přihlášen nebo kteří jsou " "přihlášeni k vám." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Tagy" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Použijte tento formulář k přidání nálepek na vaše posluchače nebo ty které " "posloucháte." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Žádná taková nálepka." @@ -5743,24 +5909,30 @@ msgstr "Žádná taková nálepka." msgid "You haven't blocked that user." msgstr "Nemáte zablokováno tohoto uživatele." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Uživatel není sandboxován." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Uživatel není umlčen." -msgid "No profile ID in request." -msgstr "CHybí ID profilu v žádosti." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Odhlášeno" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "Licence naslouchaného '%1$s' není kompatibilní s licencí stránky '%2$s'." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Nastavení IM" @@ -5775,10 +5947,12 @@ msgstr "Správa různých dalších možností." msgid " (free service)" msgstr " (Služba zdarma)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Nic" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5790,15 +5964,19 @@ msgstr "Zkrácovat URL s" msgid "Automatic shortening service to use." msgstr "Služba automatického zkracování, kterou použít." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5808,17 +5986,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "adresa služby zkracování URL je příliš dlouhá (max. 50 znaků)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Neplatná velikost" +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Neplatná velikost" + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Uživatel" @@ -5842,6 +6024,9 @@ msgstr "Neplatné uvítací text. Max délka je 255 znaků." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Neplatné výchozí přihlášení: '%1$s' není uživatel." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profil" @@ -5895,7 +6080,7 @@ msgstr "Uložit Nastavení webu" msgid "Authorize subscription" msgstr "Autorizujte přihlášení" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5908,18 +6093,21 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" msgstr "Přijmout" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Přihlásit se k tomuto uživateli" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5938,9 +6126,10 @@ msgstr "Žádná žádost o autorizaci!" msgid "Subscription authorized" msgstr "Odběr autorizován" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "Odběr byl autorizován, ale nepřišla žádná callback adresa. Zkontrolujte v " @@ -5951,9 +6140,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Odběr odmítnut" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "Odebírání bylo zamítnuto, ale nepřišla žádná callback adresa. Zkontrolujte v " @@ -5983,15 +6173,6 @@ msgstr "Naslouchací URI ‘%s’ je místní uživatel." msgid "Profile URL \"%s\" is for a local user." msgstr "URL profilu '%s' je pro místního uživatele." -#. 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. -#, 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. #, fuzzy, php-format @@ -6098,7 +6279,6 @@ msgid "Contributors" msgstr "Přispěvatelé" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licence" @@ -6137,7 +6317,6 @@ msgstr "" "programem. Pokud ne, jděte na %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Pluginy" @@ -6226,18 +6405,6 @@ msgstr[2] "Takto velký soubor by překročil vaši měsíční kvótu %d bajtů msgid "Invalid filename." msgstr "Neplatné jméno souboru." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Nepodařilo se připojit ke skupině." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Není součástí skupiny." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Nepodařilo se opustit skupinu." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6250,6 +6417,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "Chyba při ukládaní uživatele; neplatný." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Nepodařilo se připojit ke skupině." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Není součástí skupiny." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Nepodařilo se opustit skupinu." + #. TRANS: Activity title. msgid "Join" msgstr "Připojit se" @@ -6324,6 +6503,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Máte zakázáno (banned) posílat upozornění na tomto webu." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Nelze opakovat své vlastní oznámení." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Nemůžete opakovat své vlastní oznámení." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Nelze opakovat své vlastní oznámení." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Nelze opakovat své vlastní oznámení." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Již jste zopakoval toto oznámení." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Uživatel nemá žádné poslední oznámení" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6350,16 +6559,13 @@ msgstr "Nelze uložit místní info skupiny." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6381,6 +6587,7 @@ msgid "Unable to save tag." msgstr "Nelze uložit tag." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Byl jste vykázán (banned) z přihlašování se." @@ -6408,9 +6615,11 @@ msgstr "Nelze smazat OMB token přihlášení." msgid "Could not delete subscription." msgstr "Nelze smazat odebírání" -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "Povolit" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6476,18 +6685,24 @@ msgid "User deletion in progress..." msgstr "Probíhá mazání uživatele..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Upravit nastavení profilu" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Editovat" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Odeslat přímou zprávu tomuto uživateli" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Zpráva" @@ -6509,10 +6724,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderátor" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Odebírat" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6538,7 +6749,9 @@ msgstr "Odpovědět" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6657,8 +6870,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Najít v obsahu oznámení" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "Uživatel neexistuje." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6705,76 +6919,127 @@ msgstr "saveSettings () není implementována." msgid "Unable to delete design setting." msgstr "Nelze smazat nastavení vzhledu." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Moje stránky" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Moje stránky" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Admin" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Základní konfigurace webu" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Stránky" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Nastavení vzhledu" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Vzhled" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Akce uživatele" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Uživatel" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Nastavení přístupu" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Access" +msgstr "Přístup" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Naastavení cest" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Cesty" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Nastavení sessions" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "Sessions" msgstr "Sessions" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Upravit oznámení stránky" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Sdělení" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Konfigurace snímků" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Snapshots" +msgstr "Snímky (snapshoty)" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licence" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Naastavení cest" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Pluginy" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6785,6 +7050,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6821,9 +7087,11 @@ msgstr "" msgid "Could not issue access token." msgstr "Nemohu vložit zprávu." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Chyba databáze při vkládání uživatele aplikace OAuth." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "Chyba databáze při vkládání uživatele aplikace OAuth." @@ -6918,6 +7186,17 @@ msgstr "Výchozí přístup pro tuto aplikaci: pouze pro čtení, nebo číst-ps msgid "Cancel" msgstr "Zrušit" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Uložit" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Neznámá akce" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -6940,11 +7219,12 @@ msgstr "Schváleno %1$s - přístup \"%2$s\"" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Obnovit" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -6984,6 +7264,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Všechny odběry" + #. TRANS: Title for command results. msgid "Command results" msgstr "Výsledky příkazu" @@ -6994,6 +7280,7 @@ msgid "AJAX error" msgstr "Ajax Chyba" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Příkaz dokončen" @@ -7114,6 +7401,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7136,10 +7425,6 @@ msgstr "Chyba při odesílání přímé zprávy." msgid "Notice from %s repeated." msgstr "Oznámení od %s opakováno." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Chyba nastavení uživatele" - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7448,13 +7733,19 @@ msgstr "Možná budete chtít spustit instalační program abyste to vyřešili. msgid "Go to the installer." msgstr "Jdi na instalaci." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Chyba databáze" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Veřejné" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Odstranit" @@ -7462,6 +7753,7 @@ msgstr "Odstranit" msgid "Delete this user" msgstr "Odstranit tohoto uživatele" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Uložit vzhled" @@ -7474,23 +7766,14 @@ 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. -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. -msgid "Reset back to default" -msgstr "Reset zpět do výchozího" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "Nahrát soubor" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Můžete nahrát váš osobní obrázek na pozadí. Maximální velikost souboru je 2 " "MB." @@ -7507,15 +7790,6 @@ msgctxt "RADIO" msgid "Off" msgstr "vyp." -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "Nelze uložit vzhled." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Obnoveno výchozí nastavení vzhledu." @@ -7547,47 +7821,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Oblíbit" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -#, fuzzy -msgid "Not an atom feed." -msgstr "Všichni členové" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Všechny" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Zvolte značku k filtrování" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Značka" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Vyberte si značku k zúžení seznamu" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Jdi" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Dát tomuto uživateli roli \"%s\"" @@ -7651,9 +7939,11 @@ msgstr[2] "Další přezdívky pro skupinu, oddělené čárkou nebo mezerou, ma msgid "Membership policy" msgstr "Členem od" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7721,6 +8011,7 @@ msgid "%s blocked users" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Admin" @@ -7824,23 +8115,46 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Neznámý zdroj inboxu %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Připojit se" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Opustit" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Přihlásit" @@ -7902,6 +8216,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s od teď naslouchá tvým sdělením na %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s od teď naslouchá tvým sdělením na %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8194,9 +8522,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Pouze uživatel může přečíst své vlastní schránky." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8205,32 +8535,48 @@ msgstr "" "zapojili ostatní uživatelé v rozhovoru. Lidé mohou posílat zprávy jen pro " "vaše oči." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Doručená pošta" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Vaše příchozí zprávy" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Odeslaná pošta" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Vaše odeslané zprávy" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Nelze zpracovat zprávu." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Není registrovaný uživatel." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Je nám líto, toto není vaše příchozí e-mailová adresa." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Je nám líto, žádný příchozí e-mail není dovolen." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Nepodporovaný typ zprávy: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8280,10 +8626,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Pošlete přímou zprávu" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Vyberte operátora" @@ -8293,32 +8642,68 @@ msgstr "Vyberte operátora" msgid "No mutual subscribers." msgstr "Nepřihlášen!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Komu:" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Odeslat" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Zpráva" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "od" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Email" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Nejste členem této skupiny." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Neodstraňujte toto oznámení" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8367,68 +8752,95 @@ msgstr "" "Je nám líto, načítání vaší geo lokace trvá déle, než se očekávalo, zkuste to " "prosím znovu později" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Sdělení" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "J" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "V" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "Z" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "v" -msgid "web" -msgstr "web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "v kontextu" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Opakováno" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Odpovědět na toto oznámení" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Odpovědět" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Odstranit toto oznámení" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Sdělení opakováno" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Pošťuchovat tohoto uživatele" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Pošťouchnout" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Poslat pošťouchnutí tomuto uživateli" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8436,18 +8848,51 @@ msgstr "" msgid "Duplicate notice." msgstr "" -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Nelze vložit odebírání" +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Profil skupiny" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Odpovědi" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Oblíbené" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Uživatel" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Zpráva" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Vaše příchozí zprávy" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8471,33 +8916,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "nastavení SMS" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Změňte nastavení profilu" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Akce uživatele" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "Odhlásit se" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Logout from the site" +msgid "Logout from the site." msgstr "Odhlášení z webu" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Login to the site" +msgid "Login to the site." msgstr "Přihlásit se na stránky" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "Hledat" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Prohledat stránky" #. TRANS: H2 text for user subscription statistics. @@ -8544,30 +9001,53 @@ msgstr "Všechny skupiny" msgid "Unimplemented method." msgstr "Neimplementovaná metoda." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Skupiny" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Skupin uživatel" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Nedávné značky" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Nedávné značky" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Doporučení" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Populární" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Chybí argument return-to." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Opakovat toto oznámení?" -msgid "Yes" -msgstr "Ano" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Opakovat toto oznámení" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Odebrat uživateli roli \"%s\"" @@ -8577,9 +9057,13 @@ msgstr "Odebrat uživateli roli \"%s\"" msgid "Page not found." msgstr " API metoda nebyla nalezena." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Sandbox" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Sandboxovat tohoto uživatele" @@ -8597,128 +9081,276 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Lidé" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Najít lidi na této stránce" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Sdělení" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Najít v obsahu oznámení" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Najít skupiny na této stránce" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "Nápověda" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "O nás" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "FAQ" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "TOS (pravidla použití služby)" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Soukromí" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Zdroj" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Verze" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Kontakt" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Odznak" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Oddíl bez názvu" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Další…" +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "nastavení SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Změňte nastavení profilu" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Nahrát avatar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Heslo" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Změňte své heslo" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Email" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Změnit manipulaci emailu" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Změňte vzhled svého profilu" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Aktualizace z a na instant messenger (IM)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Aktualizace z a na SMS" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Připojení" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Autorizované propojené aplikace" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Uťišit" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Utišit tohoto uživatele" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Odběry" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Lidé ke kterým je %s přihlášen" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Odběratelé" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Lidé přihlášení k %s" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Skupiny kterých je %s členem" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "Pozvat" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +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" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Přihlásit se k tomuto uživateli" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Mrak štítků kterými se uživatelé sami označili" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Mrak štítků kterými jsou uživatelé označeni" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Nic" @@ -8727,18 +9359,26 @@ msgstr "Nic" msgid "Invalid theme name." msgstr "Neplatné jméno souboru." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "Tento server nemůže zpracovat nahrání tématu bez podpory ZIP." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Chybí soubor tématu nebo se nepodařilo nahrání." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Chyba při ukládání tématu." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Neplatné téma: špatná adresářová struktura." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, fuzzy, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8750,9 +9390,12 @@ msgstr[1] "" msgstr[2] "" "Nahrané téma je příliš velké, nezkomprimované musí být menší než %d bajtů." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Neplatný archiv tématu: chybí soubor css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -8760,22 +9403,20 @@ msgstr "" "Téma obsahuje neplatné jméno souboru nebo složky. Zůstaňte u písmen ASCII, " "číslic, podtržítka a mínusu." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "Téma obsahuje nebezpečné přípony souborů, může být nebezpečné." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Téma obsahuje soubor typu '.%s', což není povoleno." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Chyba při otevírání archivu tématu." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Sdělení" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -8807,8 +9448,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Přidat toto oznámení do oblíbených" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Odebrat toto oznámení z oblíbených" @@ -8821,8 +9463,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Již jste zopakoval toto oznámení." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Již jste zopakoval toto oznámení." @@ -8833,6 +9476,28 @@ msgstr[2] "Již jste zopakoval toto oznámení." msgid "Top posters" msgstr "Nejlepší pisálci" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Komu:" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Neznámý jazyk \"%s\"." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8955,5 +9620,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Zpráva je příliš dlouhá - maximum je %1$d znaků, poslal jsi %2$d." +#~ msgid "Couldn't update your design." +#~ msgstr "Nelze uložit vzhled." diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index be9f8a136b..72c9d63ff5 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -22,20 +22,54 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:42+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:43+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Unbekannt" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Unbekannter Befehl" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Zugang" @@ -88,7 +122,9 @@ msgstr "Zugangs-Einstellungen speichern" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -100,6 +136,7 @@ msgstr "Speichern" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Seite nicht vorhanden" @@ -118,6 +155,7 @@ msgstr "Seite nicht vorhanden" #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -142,8 +180,11 @@ msgstr "Seite nicht vorhanden" #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Unbekannter Benutzer." @@ -156,7 +197,15 @@ msgstr "%1$s und Freunde, Seite% 2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s und Freunde" @@ -228,28 +277,14 @@ msgstr "Du und Freunde" msgid "Updates from %1$s and friends on %2$s!" msgstr "Aktualisierungen von %1$s und Freunden auf %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API-Methode nicht gefunden." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -285,6 +320,7 @@ msgstr "Konnte Benutzerdaten nicht aktualisieren." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Benutzer hat kein Profil." @@ -324,6 +360,8 @@ msgstr "Konnte Design-Einstellungen nicht speichern." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Konnte Benutzerdesign nicht aktualisieren." @@ -700,9 +738,12 @@ msgstr "Anfrage-Token bereits autorisiert." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut." @@ -856,16 +897,6 @@ msgstr "Du kannst den Status eines anderen Benutzers nicht löschen." msgid "No such notice." msgstr "Unbekannte Nachricht." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Du kannst deine eigenen Nachrichten nicht wiederholen." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Nachricht bereits wiederholt" - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -909,8 +940,11 @@ msgstr "" "Der Client muss einen „status“-Parameter mit einen Wert zur Verfügung " "stellen." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -925,6 +959,8 @@ msgstr "API-Methode nicht gefunden." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -998,6 +1034,8 @@ msgstr "%1$s Nachrichten, die auf %2$s / %3$s wiederholt wurden." msgid "Repeats of %s" msgstr "Antworten von %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%1$s Notizen wurden von %2$s / %3$s wiederholt." @@ -1012,6 +1050,8 @@ msgstr "Mit „%s“ getaggte Nachrichten" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Mit „%1$s“ getaggte Nachrichten auf „%2$s“!" @@ -1126,11 +1166,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Benutzer hat kein Profil." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1138,10 +1180,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Liste der Benutzer in dieser Gruppe." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1166,6 +1210,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Liste der Benutzer in dieser Gruppe." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Konnte Benutzer %1$s nicht der Gruppe %2$s hinzufügen." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Status von %1$s auf %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Abonnement autorisiert" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Authorisierung abgebrochen." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1204,8 +1276,8 @@ msgstr "Bereits ein Favorit." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "%s Gruppen-Mitgliedschaften" #. TRANS: Subtitle for group membership feed. @@ -1219,8 +1291,7 @@ msgstr "Gruppen %1$s ist ein Mitglied von %2$s" msgid "Cannot add someone else's membership." msgstr "Kann Abonnement von jemand anderem nicht eintragen." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Kann nur Beitritts-Aktivitäten durchführen." @@ -1337,6 +1408,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Benutzer ohne passendes Profil" @@ -1363,6 +1435,7 @@ msgstr "Vorschau" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Löschen" @@ -1483,6 +1556,7 @@ msgstr "Diesen Benutzer nicht blokieren." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Ja" @@ -1539,6 +1613,32 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s hat die Gruppe %2$s verlassen" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Nicht angemeldet." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Keine Profil-ID in der Anfrage." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Kein Benutzer-Profil mit dieser ID." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Abbestellt" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Kein Bestätigungs-Code." @@ -1679,6 +1779,7 @@ msgstr "Programm nicht gefunden." msgid "You are not the owner of this application." msgstr "Du bist Besitzer dieses Programms" +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Es gab ein Problem mit deinem Sessiontoken." @@ -1752,24 +1853,6 @@ msgstr "Diese Gruppe nicht löschen" msgid "Delete this group." msgstr "Diese Gruppe löschen" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Nicht angemeldet." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1962,16 +2045,19 @@ 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. #, 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. #, 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. #, fuzzy msgid "Save design." msgstr "Design speichern" @@ -2311,6 +2397,7 @@ msgstr "Aus Favoriten entfernen" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Beliebte Nachrichten" @@ -2352,6 +2439,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "%ss favorisierte Nachrichten" @@ -2364,6 +2453,7 @@ msgstr "Aktualisierungen von %1$s auf %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Top-Benutzer" @@ -2425,6 +2515,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Service nutzt unbekannte OMB-Protokollversion." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Fehler beim Aktualisieren des entfernten Profils." @@ -2462,14 +2553,6 @@ msgstr "Benutzer hat bereits diese Aufgabe" msgid "No profile specified." msgstr "Kein Profil angegeben." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Kein Benutzer-Profil mit dieser ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3105,6 +3188,7 @@ msgid "License selection" msgstr "Lizenzauswahl" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privat" @@ -3344,6 +3428,9 @@ msgid "Ajax Error" msgstr "Ajax-Fehler" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Neue Nachricht" @@ -3655,7 +3742,6 @@ msgid "Password saved." msgstr "Passwort gespeichert." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Pfad" @@ -3850,6 +3936,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Nie" @@ -4013,17 +4100,22 @@ 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). -#, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." 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. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +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: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4036,7 +4128,9 @@ msgid "Location" msgstr "Aufenthaltsort" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Wo du bist, beispielsweise „Stadt, Region, Land“" #. TRANS: Checkbox label in form for profile settings. @@ -4044,6 +4138,9 @@ msgid "Share my current location when posting notices" msgstr "Teile meine aktuelle Position, wenn ich Nachrichten sende" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Tags" @@ -4081,6 +4178,28 @@ msgstr "" "Abonniere automatisch alle Kontakte, die mich abonnieren (sinnvoll für Nicht-" "Menschen)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Abonnements" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "Man kann nur Personen folgen" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4112,7 +4231,7 @@ msgstr "Ungültiges Stichwort: „%s“" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Autosubscribe konnte nicht aktiviert werden." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4121,6 +4240,7 @@ msgid "Could not save location prefs." msgstr "Konnte Positions-Einstellungen nicht speichern." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Konnte Tags nicht speichern." @@ -4152,6 +4272,7 @@ msgid "Public timeline, page %d" msgstr "Öffentliche Zeitleiste, Seite %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Öffentliche Zeitleiste" @@ -4337,10 +4458,6 @@ msgstr "Wiederherstellung des Passworts angefordert" msgid "Password saved" msgstr "Passwort gespeichert." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Unbekannter Befehl" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4436,6 +4553,7 @@ msgid "You cannot register if you do not agree to the license." msgstr "" "Du kannst dich nicht registrieren, wenn du die Lizenz nicht akzeptierst." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Diese E-Mail-Adresse existiert bereits." @@ -4476,26 +4594,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "Längerer Name, bevorzugt dein bürgerlicher Name" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Beschreibe dich selbst und deine Interessen in einem Zeichen" -msgstr[1] "Beschreibe dich selbst und deine Interessen in %d Zeichen" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Beschreibe dich selbst und deine Interessen" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Wo du bist, beispielsweise „Stadt, Region, Land“" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4616,6 +4715,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "Profil-URL bei einem anderen kompatiblen Mikrobloggingdienst" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4651,16 +4752,8 @@ msgstr "Nur angemeldete Benutzer können Nachrichten wiederholen." msgid "No notice specified." msgstr "Keine Nachricht angegeben." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Du kannst deine eigene Nachricht nicht wiederholen." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Nachricht bereits wiederholt" - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Wiederholt" @@ -4671,6 +4764,8 @@ msgstr "Wiederholt!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Antworten an %s" @@ -4787,6 +4882,7 @@ msgid "System error uploading file." msgstr "Systemfehler beim Hochladen der Datei." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Kein Mitglied" @@ -4830,6 +4926,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Du kannst Benutzer auf dieser Seite nicht auf den Spielplaz schicken." @@ -5028,6 +5125,8 @@ msgstr "Mitglieder" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Kein)" @@ -5109,27 +5208,32 @@ msgstr "Nachricht an %1$s auf %2$s" msgid "Message from %1$s on %2$s" msgstr "Nachricht von %1$s auf %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "IM ist nicht verfügbar." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Nachricht gelöscht." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" +#, fuzzy, php-format +msgid "Notices by %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, %3$d is the page number. -#, php-format -msgid "%1$s tagged %2$s, page %3$d" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Von „%1$s“ mit „%2$s“ getaggte Nachrichten, Seite %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, Seite %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Mit „%1$s“ getaggte Nachrichten, Seite %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5218,6 +5322,7 @@ msgid "Repeat of %s" msgstr "Wiederholung von %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Du kannst Benutzer dieser Seite nicht ruhig stellen." @@ -5519,51 +5624,72 @@ msgstr "" msgid "No code entered." msgstr "Kein Code eingegeben" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Snapshots" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Snapshot-Konfiguration verwalten" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Der Wert zum Ausführen von Snapshots ist ungültig." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "Die Snapshot-Frequenz muss eine Zahl sein." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "Ungültige Snapshot-Berichts-URL." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Snapshots" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Zufällig während Webseitenbesuchen" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "Als zeitlich geplanten Auftrag" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Daten-Snapshot" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Wann sollen Statistiken zum status.net-Server geschickt werden" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frequenz" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Snapshots werden alle N Webseitenbesuche gesendet" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL melden" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "An diese Adresse werden Snapshots gesendet" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Speichern" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Snapshot-Einstellungen speichern" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5575,6 +5701,27 @@ msgstr "Du hast dieses Profil nicht abonniert." msgid "Could not save subscription." msgstr "Konnte Abonnement nicht erstellen." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s Gruppen-Mitgliedschaften" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s Gruppen-Mitglieder, Seite %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Liste der Benutzer in dieser Gruppe." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "Du hast dieses OMB 0.1 Profil nicht abonniert." @@ -5695,31 +5842,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Mit „%1$s“ getaggte Nachrichten, Seite %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Nachrichten-Feed des Tags „%s“ (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Nachrichten-Feed des Tag „%s“ (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Nachrichten-Feed des Tags „%s“ (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Kein ID-Argument." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Tag „%s“" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Benutzerprofil" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Benutzer taggen" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5728,17 +5887,26 @@ msgstr "" "Tags dieses Benutzers (Buchstaben, Nummer, -, ., und _), durch Komma oder " "Leerzeichen getrennt" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Du kannst nur Benutzer taggen, die du abonniert hast oder die dich abonniert " "haben." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Tags" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Benutze dieses Formular, um Tags deinen Abonnenten oder Abonnements " "hinzuzufügen." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Tag nicht vorhanden." @@ -5746,25 +5914,31 @@ msgstr "Tag nicht vorhanden." msgid "You haven't blocked that user." msgstr "Du hast diesen Benutzer nicht blockiert." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Benutzer ist nicht blockiert." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Der Benutzer ist nicht ruhig gestellt." -msgid "No profile ID in request." -msgstr "Keine Profil-ID in der Anfrage." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Abbestellt" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "Die Benutzerlizenz „%1$s“ ist nicht kompatibel mit der Lizenz der Seite „%2" "$s“." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "IM-Einstellungen" @@ -5779,10 +5953,12 @@ msgstr "Verwalte zahlreiche andere Einstellungen." msgid " (free service)" msgstr " (freier Dienst)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Nichts" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "[internal]" @@ -5794,15 +5970,19 @@ msgstr "URLs kürzen mit" msgid "Automatic shortening service to use." msgstr "URL-Auto-Kürzungs-Dienst." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "URL länger als" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "längere URLs werden gekürzt. 0 bedeutet immer verkürzen." +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "Text länger als" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "längere URLs werden gekürzt. 0 bedeutet immer verkürzen." @@ -5811,16 +5991,21 @@ msgstr "längere URLs werden gekürzt. 0 bedeutet immer verkürzen." msgid "URL shortening service is too long (maximum 50 characters)." msgstr "URL-Auto-Kürzungs-Dienst ist zu lang (maximal 50 Zeichen)." -msgid "Invalid number for max url length." +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum URL length." msgstr "Ungültige Zahl für maximale URL-Länge." -msgid "Invalid number for max notice length." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." msgstr "Ungültige Zahl für maximale Nachrichten-Länge." +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "Fehler beim speichern der URL-Verkürzungs-Einstellungen." -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Benutzer" @@ -5843,6 +6028,9 @@ msgstr "Willkommens-Nachricht ungültig. Maximale Länge sind 255 Zeichen." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Ungültiges Standard-Abonnement: „%1$s“ ist kein Benutzer." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profil" @@ -5895,7 +6083,7 @@ msgstr "Benutzer-Einstellungen speichern" msgid "Authorize subscription" msgstr "Abonnement bestätigen" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5908,18 +6096,21 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" msgstr "Akzeptieren" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Abonniere diesen Benutzer" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5938,9 +6129,10 @@ msgstr "Keine Bestätigungsanfrage!" msgid "Subscription authorized" msgstr "Abonnement autorisiert" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "Das Abonnement wurde bestätigt, aber es wurde keine Antwort-URL angegeben. " @@ -5951,9 +6143,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Abonnement abgelehnt" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "Das Abonnement wurde abgelehnt, aber es wurde keine Callback-URL " @@ -5984,16 +6177,6 @@ msgstr "Die URI „%s“ für den Stream ist ein lokaler Benutzer." msgid "Profile URL \"%s\" is for a local user." msgstr "Profiladresse „%s“ ist für einen lokalen Benutzer." -#. 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. -#, 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. #, fuzzy, php-format @@ -6100,7 +6283,6 @@ msgid "Contributors" msgstr "Mitarbeiter" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Lizenz" @@ -6139,7 +6321,6 @@ msgstr "" "Programm erhalten. Wenn nicht, siehe %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Erweiterungen" @@ -6229,18 +6410,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "Ungültiger Dateiname." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Konnte Gruppe nicht beitreten" - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Nicht Mitglied der Gruppe" - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Konnte Gruppe nicht verlassen" - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6253,6 +6422,18 @@ msgstr "Profil-ID %s ist ungültig." msgid "Group ID %s is invalid." msgstr "Gruppen-ID %s ist ungültig." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Konnte Gruppe nicht beitreten" + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Nicht Mitglied der Gruppe" + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Konnte Gruppe nicht verlassen" + #. TRANS: Activity title. msgid "Join" msgstr "Beitreten" @@ -6328,6 +6509,36 @@ msgid "You are banned from posting notices on this site." msgstr "" "Du wurdest für das Schreiben von Nachrichten auf dieser Seite gesperrt." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Du kannst deine eigenen Nachrichten nicht wiederholen." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Du kannst deine eigene Nachricht nicht wiederholen." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Du kannst deine eigenen Nachrichten nicht wiederholen." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Du kannst deine eigenen Nachrichten nicht wiederholen." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Nachricht bereits wiederholt" + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Benutzer hat keine letzte Nachricht." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6355,16 +6566,13 @@ msgstr "Konnte Antwort auf %1$d, %2$d nicht speichern." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6390,6 +6598,7 @@ msgid "Unable to save tag." msgstr "Konnte Tag nicht speichern." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Dieser Benutzer erlaubt dir nicht ihn zu abonnieren." @@ -6417,7 +6626,9 @@ msgstr "Konnte OMB-Abonnement-Token nicht löschen." msgid "Could not delete subscription." msgstr "Konnte Abonnement nicht löschen." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Folgen" @@ -6485,18 +6696,24 @@ msgid "User deletion in progress..." msgstr "Löschung des Benutzers in Arbeit …" #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Profil-Einstellungen ändern" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Bearbeiten" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Direkte Nachricht an Benutzer versenden" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Nachricht" @@ -6518,10 +6735,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Abonnieren" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6547,7 +6760,9 @@ msgstr "Antworten" msgid "Write a reply..." msgstr "Antwort verfassen..." +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "Status" @@ -6670,8 +6885,9 @@ msgstr "Autor für nicht-vertrauten Benutzer wird nicht überschrieben." msgid "No content for notice %s." msgstr "Kein Inhalt für Nachricht %d." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "Unbekannter Benutzer." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6718,76 +6934,128 @@ msgstr "saveSettings() noch nicht implementiert." msgid "Unable to delete design setting." msgstr "Konnte die Design-Einstellungen nicht löschen." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Homepage" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Homepage" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Admin" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Basis-Seiteneinstellungen" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Seite" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Design-Konfiguration" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Design" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Benutzereinstellung" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Benutzer" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Zugangskonfiguration" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Zugang" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Pfadkonfiguration" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Pfad" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Sitzungseinstellungen" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "Sessions" msgstr "Sitzung" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Seitennachricht bearbeiten" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Seitennachricht" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Snapshot-Konfiguration" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Snapshots" +msgstr "Snapshots" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Website-Lizenz einstellen" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Lizenz" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Pfadkonfiguration" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Erweiterungen" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "API-Ressource erfordert lesen/schreib Zugriff; du hast nur Leserechte." @@ -6796,6 +7064,7 @@ msgstr "API-Ressource erfordert lesen/schreib Zugriff; du hast nur Leserechte." msgid "No application for that consumer key." msgstr "Kein Programm mit diesem Anwender-Schlüssel." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "Darf API nicht verwenden." @@ -6830,9 +7099,11 @@ msgstr "Konnte kein Profil und Anwendung für das Anfrage-Token finden." msgid "Could not issue access token." msgstr "Konnte Nachricht nicht einfügen." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Datenbankfehler beim Einfügen des OAuth-Programm-Benutzers." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "Datenbankfehler beim Einfügen des OAuth-Programm-Benutzers." @@ -6928,6 +7199,17 @@ msgstr "" msgid "Cancel" msgstr "Abbrechen" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Speichern" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Unbekannter Befehl" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr " von " @@ -6950,11 +7232,12 @@ msgstr "Genehmigte %1$s - „%2$s“ Zugriff." msgid "Access token starting with: %s" msgstr "Zugriffstoken beginnend mit „%s“" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Widerrufen" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. #, fuzzy msgid "Author element must contain a name element." msgstr "Das „author“-Element muss ein „name“-Element erhaten." @@ -6993,6 +7276,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Alle Abonnements" + #. TRANS: Title for command results. msgid "Command results" msgstr "Befehl-Ergebnisse" @@ -7002,6 +7291,7 @@ msgid "AJAX error" msgstr "Ajax-Fehler" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Befehl ausgeführt" @@ -7122,6 +7412,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7144,10 +7436,6 @@ msgstr "Fehler beim Senden der Nachricht." msgid "Notice from %s repeated." msgstr "Nachricht von „%s“ wiederholt." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Fehler beim Wiederholen der Nachricht." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7452,13 +7740,19 @@ msgstr "Bitte die Installation erneut starten, um das Problem zu beheben." msgid "Go to the installer." msgstr "Zur Installation gehen." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Datenbankfehler." +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Zeitleiste" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Löschen" @@ -7466,6 +7760,7 @@ msgstr "Löschen" msgid "Delete this user" msgstr "Diesen Benutzer löschen" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Design speichern" @@ -7478,23 +7773,14 @@ msgstr "Farben ändern" msgid "Use defaults" msgstr "Standardeinstellungen benutzen" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -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. -msgid "Reset back to default" -msgstr "Standard wiederherstellen" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "Datei hochladen" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Du kannst dein persönliches Hintergrundbild hochladen. Die maximale " "Dateigröße ist 2 MB." @@ -7509,15 +7795,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Aus" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "Konnte dein Design nicht aktualisieren." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Standard-Design wieder hergestellt." @@ -7549,47 +7826,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Zu Favoriten hinzufügen" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -#, fuzzy -msgid "Not an atom feed." -msgstr "Kein Mitglied" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Feeds" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Alle" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Wähle ein Tag, um die Liste einzuschränken" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Tag" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Wähle ein Tag, um die Liste einzuschränken" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Los geht's" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Teile dem Benutzer die „%s“-Rolle zu" @@ -7651,9 +7942,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Mitglied seit" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7720,6 +8013,7 @@ msgid "%s blocked users" msgstr "Blockierte Benutzer der Gruppe „%s“" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Admin" @@ -7820,23 +8114,46 @@ msgid_plural "%dB" msgstr[0] "%d Byte" msgstr[1] "%d Bytes" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Unbekannte inbox-Quelle %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Beitreten" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Verlassen" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Anmelden" @@ -7898,6 +8215,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s hat deine Nachrichten auf „%2$s“ abonniert." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s hat deine Nachrichten auf „%2$s“ abonniert." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8189,9 +8520,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Nur der Benutzer selbst kann seinen Posteingang lesen." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8200,32 +8533,47 @@ msgstr "" "schicken, um sie in eine Konversation zu verwickeln. Andere Leute können dir " "Nachrichten schicken, die nur du sehen kannst." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +msgctxt "MENU" msgid "Inbox" msgstr "Posteingang" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Deine eingehenden Nachrichten" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Postausgang" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Deine gesendeten Nachrichten" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Konnte Nachricht nicht parsen." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Kein registrierter Benutzer." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Sorry, das ist nicht deine Adresse für eingehende E-Mails." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Sorry, keine eingehenden E-Mails gestattet." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Nachrichten-Typ „%s“ wird nicht unterstützt." #. TRANS: Form legend for form to make a user a group admin. @@ -8279,10 +8627,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "„%s“ ist kein unterstütztes Dateiformat auf diesem Server." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Versende eine direkte Nachricht" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "Empfänger auswählen" @@ -8291,32 +8642,68 @@ msgstr "Empfänger auswählen" msgid "No mutual subscribers." msgstr "Nicht abonniert!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "An" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Senden" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Nachricht" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "von" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "Web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "E-Mail" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Du darfst diese Gruppe nicht löschen." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Diesen Benutzer nicht löschen" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8364,68 +8751,95 @@ msgstr "" "Es tut uns leid, aber die Abfrage deiner GPS-Position hat zu lange gedauert. " "Bitte versuche es später wieder." -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Nachrichten" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "O" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "W" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "in" -msgid "web" -msgstr "Web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "im Zusammenhang" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Wiederholt von" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Auf diese Nachricht antworten" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Antworten" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Nachricht löschen" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Nachricht wiederholt" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Gib diesem Benutzer einen Stups" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Stups" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Sende diesem Benutzer einen Stups" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Neues Profil konnte nicht angelegt werden." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Fehler beim Einfügen des Avatars." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Fehler beim Einfügen des entfernten Profils." @@ -8433,19 +8847,52 @@ msgstr "Fehler beim Einfügen des entfernten Profils." msgid "Duplicate notice." msgstr "Doppelte Nachricht." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Konnte neues Abonnement nicht eintragen." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item title in personal group navigation menu. #, fuzzy msgid "Your profile" msgstr "Gruppenprofil" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Antworten" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Favoriten" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Benutzer" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Nachricht" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Deine eingehenden Nachrichten" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8469,31 +8916,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "(Plugin Beschreibung nicht verfügbar wenn deaktiviert.)" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "SMS-Einstellungen" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Ändern der Profileinstellungen" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Benutzereinstellung" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "Abmelden" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Von der Seite abmelden" -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "Auf der Seite anmelden" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "Suchen" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Website durchsuchen" #. TRANS: H2 text for user subscription statistics. @@ -8540,30 +9001,53 @@ msgstr "Alle Gruppen" msgid "Unimplemented method." msgstr "Nicht unterstützte Methode." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Gruppen" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Benutzer-Gruppen" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Aktuelle Tags" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Aktuelle Tags" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Beliebte Benutzer" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Beliebte Beiträge" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Kein Rückkehr-Argument." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Diese Nachricht wiederholen?" -msgid "Yes" -msgstr "Ja" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Diese Nachricht wiederholen" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Widerrufe die „%s“-Rolle von diesem Benutzer" @@ -8572,9 +9056,13 @@ msgstr "Widerrufe die „%s“-Rolle von diesem Benutzer" msgid "Page not found." msgstr "Seite nicht gefunden." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Spielwiese" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Diesen Benutzer auf die Spielwiese setzen" @@ -8592,128 +9080,273 @@ msgctxt "BUTTON" msgid "Search" msgstr "Suchen" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Leute" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Finde Leute auf dieser Seite" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Nachrichten" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Durchsuche den Inhalt der Nachrichten" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Finde Gruppen auf dieser Seite" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "Hilfe" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Über" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "FAQ" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "AGB" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Privatsphäre" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Quellcode" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Version" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Kontakt" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Plakette" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Abschnitt ohne Titel" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Mehr …" +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "SMS-Einstellungen" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Ändern der Profileinstellungen" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Avatar hochladen" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Passwort" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Ändere dein Passwort" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "E-Mail" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Ändere die E-Mail-Verarbeitung" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Passe dein Profil an" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "URL-Verkürzer" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Aktualisierungen via Instant Messenger (IM)" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Aktualisierungen via SMS" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" msgid "Connections" msgstr "Verbindungen" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Programme mit Zugriffserlaubnis" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Stummschalten" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Benutzer verstummen lassen" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Abonnements" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Leute, die „%s“ abonniert hat" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Abonnenten" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Leute, die „%s“ abonniert haben" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Gruppen, in denen „%s“ Mitglied ist" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "Einladen" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Lade Freunde und Kollegen ein, dir auf „%s“ zu folgen" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Abonniere diesen Benutzer" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Personen-Tagwolke, wie man sich selbst markiert hat." +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Personen-Tag, wie markiert wurde" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Nichts" @@ -8721,19 +9354,27 @@ msgstr "Nichts" msgid "Invalid theme name." msgstr "Ungültiger Theme-Name." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" "Dieser Server kann nicht mit Theme-Uploads ohne ZIP-Unterstützung umgehen." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Die Theme-Datei fehlt oder das Hochladen ist fehlgeschlagen." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Speicherung des Themes fehlgeschlagen." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Ungültiger Theme: schlechte Ordner-Struktur." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8745,9 +9386,12 @@ msgstr[1] "" "Der hochgeladene Theme ist zu groß; er muss unkomprimiert unter %d Bytes " "sein." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Ungültigges Theme-Archiv: fehlende Datei css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -8755,22 +9399,20 @@ msgstr "" "Der Theme enthält einen ungültigen Datei- oder Ordnernamen. Bleib bei ASCII-" "Buchstaben, Zahlen, Unterstrichen und Minuszeichen." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "Theme enthält unsichere Dateierweiterungen; könnte unsicher sein." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Das Theme enthält Dateien des Types „.%s“, die nicht erlaubt sind." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Fehler beim Öffnen des Theme-Archives." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Nachrichten" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -8801,8 +9443,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Zu den Favoriten hinzufügen" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Aus Favoriten entfernen" @@ -8814,8 +9457,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Nachricht bereits wiederholt" +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Nachricht bereits wiederholt" @@ -8825,6 +9469,28 @@ msgstr[1] "Nachricht bereits wiederholt" msgid "Top posters" msgstr "Top-Schreiber" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "An" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Unbekanntes Verb: „%s“" + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8941,6 +9607,5 @@ msgstr "Ungültiges XML, XRD-Root fehlt." msgid "Getting backup from file '%s'." msgstr "Hole Backup von der Datei „%s“." -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "" -#~ "Nachricht zu lang - maximal %1$d Zeichen erlaubt, du hast %2$d gesendet." +#~ msgid "Couldn't update your design." +#~ msgstr "Konnte dein Design nicht aktualisieren." diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index 10440f927b..4cc841e2a5 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -14,20 +14,54 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:43+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:45+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 (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Unknown" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Unknown action" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Access" @@ -79,7 +113,9 @@ msgstr "Save access settings" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -91,6 +127,7 @@ msgstr "Save" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "No such page." @@ -109,6 +146,7 @@ msgstr "No such page." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -133,8 +171,11 @@ msgstr "No such page." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "No such user." @@ -147,7 +188,15 @@ msgstr "%1$s and friends, page %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s and friends" @@ -218,28 +267,14 @@ msgstr "You and friends" msgid "Updates from %1$s and friends on %2$s!" msgstr "Updates from %1$s and friends on %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API method not found." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -275,6 +310,7 @@ msgstr "Could not update user." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "User has no profile." @@ -314,6 +350,8 @@ msgstr "Unable to save your design settings." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Could not update your design." @@ -688,9 +726,12 @@ msgstr "You are not authorised." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "There was a problem with your session token. Try again, please." @@ -844,16 +885,6 @@ msgstr "You may not delete another user's status." msgid "No such notice." msgstr "No such notice." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Cannot repeat your own notice." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Already repeated that notice." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -897,8 +928,11 @@ msgstr "Delete notice" msgid "Client must provide a 'status' parameter with a value." msgstr "" +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -912,6 +946,8 @@ msgstr "API method not found." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -982,6 +1018,8 @@ msgstr "%1$s updates that reply to updates from %2$s / %3$s." msgid "Repeats of %s" msgstr "Repeats of %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%1$s marked notice %2$s as a favourite." @@ -996,6 +1034,8 @@ msgstr "Notices tagged with %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Updates tagged with %1$s on %2$s!" @@ -1111,11 +1151,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Missing profile." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1123,10 +1165,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "A list of the users in this group." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1151,6 +1195,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "A list of the users in this group." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Could not join user %1$s to group %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "%1$s's status on %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Subscription authorised" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Authorisation cancelled." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1192,7 +1264,7 @@ msgstr "Add to favourites" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "%s group members" #. TRANS: Subtitle for group membership feed. @@ -1206,8 +1278,7 @@ msgstr "Groups %s is a member of" msgid "Cannot add someone else's membership." msgstr "Couldn't insert new subscription." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Find content of notices" @@ -1327,6 +1398,7 @@ msgstr "You can upload your personal avatar. The maximum file size is %s." #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "User without matching profile." @@ -1353,6 +1425,7 @@ msgstr "Preview" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. #, fuzzy msgctxt "BUTTON" msgid "Delete" @@ -1471,6 +1544,7 @@ msgstr "Do not block this user" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Yes" @@ -1529,6 +1603,32 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s left group %2$s" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Not logged in." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "No profile ID in request." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "No profile with that ID." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Unsubscribed" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "No confirmation code." @@ -1669,6 +1769,7 @@ msgstr "Application not found." msgid "You are not the owner of this application." msgstr "You are not the owner of this application." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "There was a problem with your session token." @@ -1743,24 +1844,6 @@ msgstr "Do not delete this group" msgid "Delete this group." msgstr "Delete this group" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Not logged in." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1956,16 +2039,19 @@ msgid "Use defaults" msgstr "Use defaults" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "Restore default designs" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "Reset back to default" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "Save design" @@ -2299,6 +2385,7 @@ msgstr "Disfavor favourite" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Popular notices" @@ -2339,6 +2426,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "%s's favourite notices" @@ -2351,6 +2440,7 @@ msgstr "Updates favoured by %1$s on %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Featured users" @@ -2412,6 +2502,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Remote service uses unknown version of OMB protocol." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Error updating remote profile." @@ -2449,14 +2540,6 @@ msgstr "User already has this role." msgid "No profile specified." msgstr "No profile specified." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "No profile with that ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3084,6 +3167,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Private" @@ -3322,6 +3406,9 @@ msgid "Ajax Error" msgstr "Ajax Error" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "New notice" @@ -3628,7 +3715,6 @@ msgid "Password saved." msgstr "Password saved." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "" @@ -3830,6 +3916,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Never" @@ -3985,17 +4072,22 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "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. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +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: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4008,7 +4100,9 @@ msgid "Location" msgstr "Location" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Where you are, like \"City, State (or Region), Country\"" #. TRANS: Checkbox label in form for profile settings. @@ -4016,6 +4110,9 @@ msgid "Share my current location when posting notices" msgstr "" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Tags" @@ -4051,6 +4148,27 @@ msgid "" msgstr "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Subscriptions" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4083,7 +4201,7 @@ msgstr "Invalid tag: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Couldn't update user for autosubscribe." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4092,6 +4210,7 @@ msgid "Could not save location prefs." msgstr "Couldn't save location prefs." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Could not save tags." @@ -4123,6 +4242,7 @@ msgid "Public timeline, page %d" msgstr "Public timeline, page %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Public timeline" @@ -4304,10 +4424,6 @@ msgstr "Password recovery requested" msgid "Password saved" msgstr "Password saved." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Unknown action" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4404,6 +4520,7 @@ msgstr "Registration not allowed." msgid "You cannot register if you do not agree to the license." msgstr "You can't register if you don't agree to the licence." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "E-mail address already exists." @@ -4439,26 +4556,7 @@ msgstr "Used only for updates, announcements, and password recovery" msgid "Longer name, preferably your \"real\" name." msgstr "Longer name, preferably your \"real\" name" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Describe yourself and your interests in %d chars" -msgstr[1] "Describe yourself and your interests in %d chars" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Describe yourself and your interests" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Where you are, like \"City, State (or Region), Country\"" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4577,6 +4675,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "URL of your profile on another compatible microblogging service" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4611,16 +4711,8 @@ msgstr "Only logged-in users can repeat notices." msgid "No notice specified." msgstr "No notice specified." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "You can't repeat your own notice." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "You already repeated that notice." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Repeated" @@ -4631,6 +4723,8 @@ msgstr "Repeated!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Replies to %s" @@ -4742,6 +4836,7 @@ msgid "System error uploading file." msgstr "System error uploading file." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "All members" @@ -4782,6 +4877,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "You cannot sandbox users on this site." @@ -4974,6 +5070,8 @@ msgstr "Members" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(None)" @@ -5057,6 +5155,11 @@ msgstr "Message to %1$s on %2$s" msgid "Message from %1$s on %2$s" msgstr "Message from %1$s on %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "IM is not available." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Notice deleted." @@ -5064,20 +5167,20 @@ msgstr "Notice deleted." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %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, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Notices tagged with %1$s, page %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, page %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Notices tagged with %1$s, page %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5162,6 +5265,7 @@ msgid "Repeat of %s" msgstr "Repeat of %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "You cannot silence users on this site." @@ -5450,51 +5554,69 @@ msgstr "" msgid "No code entered." msgstr "No code entered" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" -msgstr "" +msgstr "Data snapshots" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Manage snapshot configuration" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Invalid snapshot run value." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "Invalid snapshot report URL." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Data snapshots" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Data snapshots" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "Report URL" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Save" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Save snapshot settings" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5506,6 +5628,27 @@ msgstr "You are not subscribed to that profile." msgid "Could not save subscription." msgstr "Could not save subscription." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s group members" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s group members, page %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "A list of the users in this group." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "You cannot subscribe to an OMB 0.1 remote profile with this action." @@ -5622,31 +5765,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Notices tagged with %1$s, page %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Notice feed for tag %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Notice feed for tag %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Notice feed for tag %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "No ID argument." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Tag %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "User profile" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Tag user" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5655,14 +5810,23 @@ msgstr "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "You can only tag people you are subscribed to or who are subscribed to you." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Tags" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "Use this form to add tags to your subscribers or subscriptions." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "No such tag." @@ -5670,24 +5834,30 @@ msgstr "No such tag." msgid "You haven't blocked that user." msgstr "You haven't blocked that user." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "User is not sandboxed." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "User is not silenced." -msgid "No profile ID in request." -msgstr "No profile ID in request." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Unsubscribed" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "IM settings" @@ -5702,10 +5872,12 @@ msgstr "Manage various other options." msgid " (free service)" msgstr "" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "None" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5717,15 +5889,19 @@ msgstr "Shorten URLs with" msgid "Automatic shortening service to use." msgstr "Automatic shortening service to use." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5735,17 +5911,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "URL shortening service is too long (max 50 chars)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Invalid notice content." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Invalid notice content." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "User" @@ -5768,6 +5948,9 @@ msgstr "" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profile" @@ -5821,7 +6004,7 @@ msgstr "Save site settings" msgid "Authorize subscription" msgstr "Authorise subscription" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5834,18 +6017,21 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" msgstr "Accept" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Subscribe to this user" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5864,9 +6050,10 @@ msgstr "No authorisation request!" msgid "Subscription authorized" msgstr "Subscription authorised" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "The subscription has been authorized, but no callback URL was passed. Check " @@ -5877,9 +6064,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Subscription rejected" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "The subscription has been rejected, but no callback URL was passed. Check " @@ -5910,15 +6098,6 @@ msgstr "" 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. -#, 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’." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6022,7 +6201,6 @@ msgid "Contributors" msgstr "Contributors" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "License" @@ -6061,7 +6239,6 @@ msgstr "" "along with this program. If not, see %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "" @@ -6140,18 +6317,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "Invalid filename." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Group join failed." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Not part of group." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Group leave failed." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6164,6 +6329,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "Group ID %s is invalid." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Group join failed." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Not part of group." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Group leave failed." + #. TRANS: Activity title. msgid "Join" msgstr "Join" @@ -6237,6 +6414,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "You are banned from posting notices on this site." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Cannot repeat your own notice." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "You can't repeat your own notice." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Cannot repeat your own notice." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Cannot repeat your own notice." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "You already repeated that notice." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "User has no last notice." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6262,16 +6469,13 @@ msgstr "Could not save reply for %1$d, %2$d." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6293,6 +6497,7 @@ msgid "Unable to save tag." msgstr "Unable to save tag." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "You have been banned from subscribing." @@ -6320,9 +6525,11 @@ msgstr "Could not delete subscription OMB token." msgid "Could not delete subscription." msgstr "Could not delete subscription." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "Allow" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6388,18 +6595,24 @@ msgid "User deletion in progress..." msgstr "" #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Edit profile settings" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Edit" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Send a direct message to this user" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Message" @@ -6421,10 +6634,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Subscribe" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6450,7 +6659,9 @@ msgstr "Reply" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6569,8 +6780,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Find content of notices" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "No such user." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6617,76 +6829,126 @@ msgstr "saveSettings() not implemented." msgid "Unable to delete design setting." msgstr "Unable to delete design setting." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Homepage" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Homepage" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Admin" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Basic site configuration" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Site" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Design configuration" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Design" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "User configuration" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "User" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Access configuration" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Access" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Paths configuration" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Paths" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Sessions configuration" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "Sessions" msgstr "Sessions" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Edit site notice" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Site notice" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Snapshots configuration" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Snapshots" +msgstr "Data snapshots" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "License" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Paths configuration" +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Plugins" +msgstr "" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6695,6 +6957,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6731,9 +6994,11 @@ msgstr "" msgid "Could not issue access token." msgstr "Could not insert message." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Database error inserting OAuth application user." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "Database error inserting OAuth application user." @@ -6827,6 +7092,17 @@ msgstr "" msgid "Cancel" msgstr "Cancel" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Save" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Unknown action" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -6849,11 +7125,12 @@ msgstr "" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Revoke" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -6891,6 +7168,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "All subscriptions" + #. TRANS: Title for command results. msgid "Command results" msgstr "Command results" @@ -6900,6 +7183,7 @@ msgid "AJAX error" msgstr "AJAX error" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Command complete" @@ -7015,6 +7299,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7035,10 +7321,6 @@ msgstr "Error sending direct message." msgid "Notice from %s repeated." msgstr "Notice from %s repeated." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Error repeating notice." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7343,13 +7625,19 @@ msgstr "" msgid "Go to the installer." msgstr "Go to the installer." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Public" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Delete" @@ -7357,6 +7645,7 @@ msgstr "Delete" msgid "Delete this user" msgstr "Delete this user" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Save design" @@ -7369,23 +7658,14 @@ msgstr "Change colours" msgid "Use defaults" msgstr "Use defaults" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -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. -msgid "Reset back to default" -msgstr "Reset back to default" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "Upload file" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "You can upload your personal background image. The maximum file size is 2MB." @@ -7401,15 +7681,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Off" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "Couldn't update your design." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Design defaults restored." @@ -7441,47 +7712,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Favour" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "" +#. TRANS: Feed type name. msgid "Atom" msgstr "" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "" -#, fuzzy -msgid "Not an atom feed." -msgstr "All members" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "All" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Select tag to filter" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Tag" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Choose a tag to narrow list" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Go" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "" @@ -7542,9 +7827,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Member since" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7611,6 +7898,7 @@ msgid "%s blocked users" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Admin" @@ -7711,23 +7999,46 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "" +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Join" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Leave" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Login" @@ -7776,6 +8087,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s is now listening to your notices on %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s is now listening to your notices on %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -7998,40 +8323,58 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Only the user can read their own mailboxes." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." msgstr "" +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Inbox" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Your incoming messages" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Outbox" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Your sent messages" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Could not parse message." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Not a registered user." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Sorry, that is not your incoming e-mail address." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Sorry, no incoming e-mail allowed." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Unsupported message type: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8081,10 +8424,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Send a direct notice" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Select a carrier" @@ -8094,32 +8440,67 @@ msgstr "Select a carrier" msgid "No mutual subscribers." msgstr "Not subscribed!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "To" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Send" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Message" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "from" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +msgctxt "SOURCE" +msgid "web" msgstr "" +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "E-mail" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "You are not allowed to delete this group." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Do not delete this group" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8164,68 +8545,95 @@ msgid "" "try again later" msgstr "" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Notices" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" +#. TRANS: Followed by geo location. msgid "at" msgstr "" -msgid "web" -msgstr "" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "in context" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Repeated by" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Reply to this notice" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Reply" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Delete this notice" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Notice repeated" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Nudge this user" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Nudge" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Send a nudge to this user" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8233,19 +8641,52 @@ msgstr "" msgid "Duplicate notice." msgstr "" -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Couldn't insert new subscription." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profile" + +#. TRANS: Menu item title in personal group navigation menu. #, fuzzy msgid "Your profile" msgstr "Group profile" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Replies" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Favourites" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "User" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Message" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Your incoming messages" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8269,31 +8710,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "SMS settings" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Change your profile settings" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "User configuration" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "Logout" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Logout from the site" -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "Login to the site" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "Search" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Search site" #. TRANS: H2 text for user subscription statistics. @@ -8340,30 +8795,53 @@ msgstr "All groups" msgid "Unimplemented method." msgstr "" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Groups" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "User groups" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Recent tags" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Recent tags" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Featured" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Popular" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "No return-to arguments." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Repeat this notice?" -msgid "Yes" -msgstr "Yes" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Repeat this notice" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Revoke the \"%s\" role from this user" @@ -8373,9 +8851,13 @@ msgstr "Revoke the \"%s\" role from this user" msgid "Page not found." msgstr "API method not found." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Sandbox" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Sandbox this user" @@ -8393,128 +8875,272 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "People" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Find people on this site" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Notices" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Find content of notices" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Find groups on this site" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "Help" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "About" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "F.A.Q." -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +msgctxt "MENU" msgid "TOS" msgstr "" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Privacy" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Source" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Version" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Contact" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Badge" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Untitled section" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "" +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "SMS settings" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Change your profile settings" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Upload an avatar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Password" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Change your password" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "E-mail" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Change e-mail handling" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Design your profile" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Updates by instant messenger (IM)" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Updates by SMS" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" msgid "Connections" msgstr "Connections" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Authorised connected applications" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Silence" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Silence this user" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Subscriptions" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "People %s subscribes to" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Subscribers" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Groups %s is a member of" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "Invite" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Invite friends and colleagues to join you on %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Subscribe to this user" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "None" @@ -8523,18 +9149,25 @@ msgstr "None" msgid "Invalid theme name." msgstr "Invalid filename." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "" +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Failed saving theme." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8542,30 +9175,30 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Error opening theme archive." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Notices" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -8596,8 +9229,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Favour this notice" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Disfavour this notice" @@ -8609,8 +9243,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "You already repeated that notice." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Already repeated that notice." @@ -8620,6 +9255,28 @@ msgstr[1] "Already repeated that notice." msgid "Top posters" msgstr "Top posters" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "To" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Unknown file type" + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8738,5 +9395,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Message too long - maximum is %1$d characters, you sent %2$d." +#~ msgid "Couldn't update your design." +#~ msgstr "Couldn't update your design." diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index b467fb6df5..f69d3f1fec 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -17,20 +17,54 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:45+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:46+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Nekonata" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Nekonata ago" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Atingo" @@ -82,7 +116,9 @@ msgstr "Konservi atingan agordon" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -94,6 +130,7 @@ msgstr "Konservi" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Ne estas tiu paĝo." @@ -112,6 +149,7 @@ msgstr "Ne estas tiu paĝo." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -136,8 +174,11 @@ msgstr "Ne estas tiu paĝo." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Ne ekzistas tiu uzanto." @@ -150,7 +191,15 @@ msgstr "%1$s kaj amikoj, paĝo %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s kaj amikoj" @@ -221,28 +270,14 @@ msgstr "Vi kaj amikoj" msgid "Updates from %1$s and friends on %2$s!" msgstr "Ĝisdatiĝoj de %1$s kaj amikoj ĉe %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "Metodo de API ne troviĝas." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -278,6 +313,7 @@ msgstr "Malsukcesis ĝisdatigi uzanton" #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "La uzanto ne havas profilon." @@ -317,6 +353,8 @@ msgstr "Malsukcesis konservi vian desegnan agordon" #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Malsukcesis ĝisdatigi vian desegnon." @@ -688,9 +726,12 @@ msgstr "" #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Estis problemo pri via seanco. Bonvolu provi refoje." @@ -734,9 +775,8 @@ msgid "" "account data. You should only give access to your %4$s account to third " "parties you trust." msgstr "" -"La aplikaĵo %1$s de %2$s volas la kapablon " -"%3$s vian %4$s kontdatumon. Vi devas doni atingon nur al " -"via %4$s konto al triaj partioj, kiujn vi fidas." +"Aplikaĵo volas povi %3$s viajn kontodatumojn ĉe %4$s. Vi " +"ebligu atingon al via konto ĉe %4$s nur al aliuloj fidataj de vi." #. TRANS: User notification of external application requesting account access. #. TRANS: %1$s is the application name requesting access, %2$s is the organisation behind the application, @@ -801,9 +841,8 @@ msgid "The request token %s has been revoked." msgstr "La peto-ĵetono %s estis eksvalidigita." #. TRANS: Title of the page notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth. -#, fuzzy msgid "You have successfully authorized the application" -msgstr "Vi sukcese rajtigis %s." +msgstr "Vi sukcese rajtigis la aplikaĵon" #. TRANS: Message notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth. #, fuzzy @@ -816,9 +855,9 @@ msgstr "" #. TRANS: Title of the page notifying the user that the client application was successfully authorized to access the user's account with OAuth. #. TRANS: %s is the authorised application name. -#, fuzzy, php-format +#, php-format msgid "You have successfully authorized %s" -msgstr "Vi sukcese rajtigis %s." +msgstr "Vi sukcese donis la rajton al %s." #. TRANS: Message notifying the user that the client application was successfully authorized to access the user's account with OAuth. #. TRANS: %s is the authorised application name. @@ -846,16 +885,6 @@ msgstr "Vi ne povas forigi la staton de alia uzanto." msgid "No such notice." msgstr "Ne estas tiu avizo." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Vi ne povas ripeti vian propran avizon." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "La avizo jam ripetiĝis." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -899,8 +928,11 @@ msgstr "Estas forigita la avizo %d" msgid "Client must provide a 'status' parameter with a value." msgstr "Kliento devas providi al \"stato\"-parametro valoron." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -908,11 +940,14 @@ msgstr[0] "Tro longa. Longlimo por avizo estas %d signo." msgstr[1] "Tro longas. Longlimo por avizo estas %d signoj." #. TRANS: Client error displayed when replying to a non-existing notice. +#, fuzzy msgid "Parent notice not found." -msgstr "" +msgstr "Respondata avizo ne trovitas." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -966,7 +1001,7 @@ msgstr "%s ĝisdatigoj de ĉiuj!" #. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. #, fuzzy msgid "Unimplemented." -msgstr "Nerealigita" +msgstr "Nerealigita metodo." #. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. #, php-format @@ -985,6 +1020,8 @@ msgstr "%1$s ĝisdatigoj kiuj respondas al ĝisdatigoj de %2$s / %3$s." msgid "Repeats of %s" msgstr "Ripetoj de %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "Avizoj ĉe %1$s, ripetitaj de %2$s / %3$s." @@ -999,6 +1036,8 @@ msgstr "Avizoj etikeditaj %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Ĝisdatigoj etikeditaj %1$s ĉe %2$s!" @@ -1103,9 +1142,8 @@ msgstr "Ne estas alinomo aŭ ID." #. TRANS: Client error displayed trying to approve group membership while not logged in. #. TRANS: Client error displayed when trying to leave a group while not logged in. -#, fuzzy msgid "Must be logged in." -msgstr "Ne konektita." +msgstr "Estas necese esti ensalutinta." #. TRANS: Client error displayed trying to approve group membership while not a group administrator. #. TRANS: Client error displayed when trying to approve or cancel a group join request without @@ -1114,22 +1152,25 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. -#, fuzzy +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. msgid "Must specify a profile." -msgstr "Mankas profilo." +msgstr "Estas necese indiki profilon." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "%s is not in the moderation queue for this group." -msgstr "Listo de uzantoj en tiu ĉi grupo" +msgstr "%s ne estas en la atendovico por aliĝo al tiu ĉi grupo." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1137,14 +1178,14 @@ msgstr "" #. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed. #, fuzzy, php-format msgid "Could not cancel request for user %1$s to join group %2$s." -msgstr "La uzanto %1$*s ne povas aliĝi al la grupo %2$*s." +msgstr "Malsukcesis nuligi peton de uzanto %1$s pri aliĝo al grupo %2$s." #. TRANS: Title for leave group page after group join request is approved/disapproved. #. TRANS: %1$s is the user nickname, %2$s is the group nickname. #, fuzzy, php-format msgctxt "TITLE" msgid "%1$s's request for %2$s" -msgstr "Stato de %1$s ĉe %2$s" +msgstr "Peto de %1$s je %2$s" #. TRANS: Message on page for group admin after approving a join request. msgid "Join request approved." @@ -1154,6 +1195,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "%s ne estas en la atendovico por aliĝo al tiu ĉi grupo." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Malsukcesis nuligi peton de uzanto %1$s pri aliĝo al grupo %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Peto de %1$s je %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Abono permesiĝis" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Rajtigo nuliĝis." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1184,7 +1253,7 @@ msgstr "Nur avizoj estas ŝatmarkeblaj." #. TRANS: Client exception thrown when trying favorite a notice without content. #, fuzzy msgid "Unknown notice." -msgstr "Nekonata" +msgstr "Nekonata avizo." #. TRANS: Client exception thrown when trying favorite an already favorited notice. #, fuzzy @@ -1194,7 +1263,7 @@ msgstr "Jam en la ŝatolisto." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "Grupanecoj de %s" #. TRANS: Subtitle for group membership feed. @@ -1207,8 +1276,7 @@ msgstr "Grupoj, kies ano %1$s estas ĉe %2$s" msgid "Cannot add someone else's membership." msgstr "Estas neeble aldoni anecon de aliulo." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "" @@ -1326,6 +1394,7 @@ msgstr "Vi povas alŝuti vian personan vizaĝbildon. Dosiero-grandlimo estas %s. #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Uzanto sen egala profilo." @@ -1352,6 +1421,7 @@ msgstr "Antaŭrigardo" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Forigi" @@ -1471,6 +1541,7 @@ msgstr "Ne bloki la uzanton" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Jes" @@ -1529,6 +1600,32 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s eksaniĝis de grupo %2$s" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Ne konektita." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Neniu profila ID petiĝas." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Ne estas profilo kun tiu ID." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Malabonita" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Neniu konfirma kodo." @@ -1670,6 +1767,7 @@ msgstr "Aplikaĵo ne trovita." msgid "You are not the owner of this application." msgstr "Vi ne estas la posedanto de ĉi tiu aplikaĵo." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Problemo okazas pri via seancĵetono." @@ -1740,24 +1838,6 @@ msgstr "Ne forigi ĉi tiun grupon" msgid "Delete this group." msgstr "Forigi ĉi tiun grupon." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Ne konektita." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1948,16 +2028,19 @@ msgid "Use defaults" msgstr "Uzi defaŭlton" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "Restaŭri defaŭltajn desegnojn" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "Redefaŭltiĝi" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "Savi desegnon" @@ -2291,6 +2374,7 @@ msgstr "Forigi ŝatmarkon." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Popularaj avizoj" @@ -2330,6 +2414,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Ŝatataj avizoj de %s" @@ -2342,6 +2428,7 @@ msgstr "Ŝatataj ĝisdatiĝoj de %1$s ĉe %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Elstaraj uzantoj" @@ -2403,6 +2490,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Fora servo uzas nekonatan version de OMB-protokolo." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Eraro je ĝisdatigo de fora profilo." @@ -2440,14 +2528,6 @@ msgstr "Uzanto jam havas la rolon." msgid "No profile specified." msgstr "Neniu profilo elektita." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Ne estas profilo kun tiu ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2750,7 +2830,7 @@ msgstr "Sendi al mi respondojn de personoj, kiujn mi ne abonas." #. TRANS: Checkbox label in IM preferences form. #, fuzzy msgid "Publish a MicroID" -msgstr "Publikigi MikroID por mia retpoŝtadreso." +msgstr "Publikigi «MicroID»’on" #. TRANS: Server error thrown on database error updating IM preferences. #, fuzzy @@ -2796,7 +2876,6 @@ msgid "That is the wrong IM address." msgstr "Tiu tujmesaĝila adreso estas malĝusta." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#, fuzzy msgid "Could not delete confirmation." msgstr "Malsukcesis forigo de adreskonfirmo." @@ -2858,15 +2937,14 @@ msgstr "Inviti novajn uzantojn" #. TRANS: is already subscribed to one or more users with the given e-mail address(es). #. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses. #. TRANS: Followed by a bullet list. -#, fuzzy msgid "You are already subscribed to this user:" msgid_plural "You are already subscribed to these users:" -msgstr[0] "Vi jam abonas jenajn uzantojn:" -msgstr[1] "Vi jam abonas jenajn uzantojn:" +msgstr[0] "Vi jam abonas avizojn de ĉi tiu uzanto:" +msgstr[1] "Vi jam abonas avizojn de ĉi tiuj uzantoj:" #. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address). #. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address). -#, fuzzy, php-format +#, php-format msgctxt "INVITE" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2999,7 +3077,7 @@ msgid "You must be logged in to join a group." msgstr "Ensalutu por aniĝi al grupo." #. TRANS: Title for join group page after joining. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s joined group %2$s" msgstr "%1$s aniĝis al grupo %2$s" @@ -3007,7 +3085,7 @@ msgstr "%1$s aniĝis al grupo %2$s" #. TRANS: Exception thrown when there is an unknown error joining a group. #, fuzzy msgid "Unknown error joining group." -msgstr "Nekonata grupo." +msgstr "Nekonata eraro je grupaniĝo." #. TRANS: Client error displayed when trying to join a group while already a member. #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. @@ -3028,10 +3106,13 @@ msgid "Invalid license selection." msgstr "Nevalida permesila elekto" #. TRANS: Client error displayed when not specifying an owner for the all rights reserved license in the license admin panel. +#, fuzzy msgid "" "You must specify the owner of the content when using the All Rights Reserved " "license." msgstr "" +"Vi devas specifi la posedanton de la materialoj kiam vi uzas la " +"neperemesilon «Ĉiuj rajtoj estas rezervitaj»." #. TRANS: Client error displayed selecting a too long license title in the license admin panel. #, fuzzy @@ -3062,6 +3143,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privata" @@ -3080,7 +3162,7 @@ msgstr "Speco" #. TRANS: Dropdown field instructions in the license admin panel. #, fuzzy msgid "Select a license." -msgstr "Elektu peranton" +msgstr "Elektu permesilon" #. TRANS: Form legend in the license admin panel. msgid "License details" @@ -3088,11 +3170,14 @@ msgstr "" #. TRANS: Field label in the license admin panel. msgid "Owner" -msgstr "" +msgstr "Rajtposedanto" #. TRANS: Field title in the license admin panel. +#, fuzzy msgid "Name of the owner of the site's content (if applicable)." msgstr "" +"Nomo de la posedanto de kopirajto pri la enhavo de la retpaĝaro (if " +"applicable)." #. TRANS: Field label in the license admin panel. msgid "License Title" @@ -3121,7 +3206,7 @@ msgstr "" #. TRANS: Button title in the license admin panel. #, fuzzy msgid "Save license settings." -msgstr "Konservi retejan agordon" +msgstr "Konservi la permesilan agordon." #. TRANS: Client error displayed when trying to log in while already logged in. #. TRANS: Client error displayed trying to use "one time password login" when already logged in. @@ -3215,7 +3300,7 @@ msgstr "Ne estas kuranta stato." #. TRANS: This is the title of the form for adding a new application. #, fuzzy msgid "New application" -msgstr "Nova Apliko" +msgstr "Nova aplikaĵo" #. TRANS: Client error displayed trying to add a new application while not logged in. msgid "You must be logged in to register an application." @@ -3236,7 +3321,7 @@ msgstr "Malsukcesis krei aplikaĵon." #. TRANS: Form validation error on New application page when providing an invalid image upload. #, fuzzy msgid "Invalid image." -msgstr "Grando nevalida." +msgstr "Nevalida bildo." #. TRANS: Title for form to create a group. msgid "New group" @@ -3295,6 +3380,9 @@ msgid "Ajax Error" msgstr "Eraro de Ajax" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nova avizo" @@ -3351,7 +3439,7 @@ msgstr "Ĝisdatiĝo enhavante \"%s\"" #. TRANS: %1$s is the query, %2$s is the StatusNet site name. #, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s." -msgstr "Ĝisdatiĝo kongruanta al serĉvorto \"%1$s\" ĉe %2$s!" +msgstr "Avizoj kongruaj kun la serĉfrazo «%1$s» ĉe %2$s." #. TRANS: Client error displayed trying to nudge a user that cannot be nudged. #, fuzzy @@ -3577,7 +3665,6 @@ msgstr "Pasvorto devas esti 6-litera aŭ pli longa." #. TRANS: Form validation error on password change when password confirmation does not match. #. TRANS: Form validation error displayed when trying to register with non-matching passwords. -#, fuzzy msgid "Passwords do not match." msgstr "La pasvortoj diferencas." @@ -3593,16 +3680,14 @@ msgstr "Eraris konservi uzanton: nevalida." #. TRANS: Server error displayed on page where to change password when password change #. TRANS: could not be made because of a server error. #. TRANS: Reset password form validation error message. -#, fuzzy msgid "Cannot save new password." -msgstr "Malsukcesis konservi novan pasvorton." +msgstr "Malsukcesis konservo de nova pasvorto." #. TRANS: Form validation notice on page where to change password. msgid "Password saved." msgstr "Pasvorto konservitas." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Vojoj" @@ -3798,6 +3883,7 @@ msgid "SSL" msgstr "\"SSL\"" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Neniam" @@ -3871,7 +3957,7 @@ msgstr "Vi ne povas forigi uzantojn." #. TRANS: Client error displayed when trying to enable or disable a non-existing plugin. #, fuzzy msgid "No such plugin." -msgstr "Ne estas tiu paĝo." +msgstr "Ne estas tiu kromprogramo." #. TRANS: Page title for AJAX form return when enabling a plugin. msgctxt "plugin" @@ -3882,7 +3968,7 @@ msgstr "" #, fuzzy msgctxt "TITLE" msgid "Plugins" -msgstr "Kromprogramo" +msgstr "Kromprogramoj" #. TRANS: Instructions at top of plugin admin page. msgid "" @@ -3955,17 +4041,22 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "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. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +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: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3978,7 +4069,9 @@ msgid "Location" msgstr "Loko" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Kie vi estas, ekzemple \"Urbo, Ŝtato (aŭ Regiono), Lando\"" #. TRANS: Checkbox label in form for profile settings. @@ -3986,6 +4079,9 @@ msgid "Share my current location when posting notices" msgstr "Sciigu mian nunan lokon, kiam mi sendas avizon." #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Markiloj" @@ -4020,6 +4116,27 @@ msgid "" "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: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Abonatoj" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4052,7 +4169,7 @@ msgstr "Nevalida markilo: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Malsukcesis ĝisdatigi uzanton por aŭtomatabonado." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4061,6 +4178,7 @@ msgid "Could not save location prefs." msgstr "Malsukcesis konservi lokan preferon." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Malsukcesis konservi etikedojn." @@ -4092,6 +4210,7 @@ msgid "Public timeline, page %d" msgstr "Publika tempstrio, paĝo %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Publika tempstrio" @@ -4270,10 +4389,6 @@ msgstr "Petiĝas pasvorton rehavado" msgid "Password saved" msgstr "Pasvorto konservitas." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Nekonata ago" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4370,6 +4485,7 @@ msgstr "Registriĝo ne permesita." msgid "You cannot register if you do not agree to the license." msgstr "Vi ne povas registriĝi, se vi ne konsentas kun la permesilo." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Retpoŝta adreso jam ekzistas." @@ -4408,30 +4524,10 @@ msgstr "Uzu nur por ĝisdatigo, anonco, kaj rehavi pasvorton." msgid "Longer name, preferably your \"real\" name." msgstr "Pli longa nomo, prefere via \"vera\" nomo." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -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: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Priskribu vin mem kaj viajn ŝatokupojn" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Kie vi estas, ekzemple \"Urbo, Ŝtato (aŭ Regiono), Lando\"" - -#. TRANS: Field label on account registration page. -#, fuzzy +#. TRANS: Button text to register a user on account registration page. msgctxt "BUTTON" msgid "Register" -msgstr "Registri" +msgstr "Registriĝi" #. TRANS: Copyright checkbox label in registration dialog, for private sites. #. TRANS: %1$s is the StatusNet sitename. @@ -4545,6 +4641,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "URL de via profilo ĉe alia kongrua mikroblogilo-servo" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4580,15 +4678,8 @@ msgstr "Nur ensalutinto rajtas ripeti avizon." msgid "No notice specified." msgstr "Neniu profilo specifiĝas." -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "Vi ne povas ripeti vian propran avizon." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "La avizo jam ripetiĝis." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Ripetita" @@ -4599,6 +4690,8 @@ msgstr "Ripetita!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Respondoj al %s" @@ -4716,6 +4809,7 @@ msgid "System error uploading file." msgstr "Sisteme eraris alŝuti dosieron." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Ĉiuj grupanoj" @@ -4756,6 +4850,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Vi ne rajtas provejigi uzantojn ĉe tiu ĉi retejo." @@ -4847,7 +4942,7 @@ msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " "not supported." msgstr "" -"Rimarku: Ni subtenas HMAC-SHA1-subskribo. Ni ne subtenas platteksta " +"Rimarku: Ni subtenas HMAC-SHA1-subskribadon. Ni ne subtenas plattekstan " "subskribado-metodon." #. TRANS: Text in confirmation dialog to reset consumer key and secret for an OAuth application. @@ -4951,6 +5046,8 @@ msgstr "Grupanoj" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(nenio)" @@ -4964,16 +5061,14 @@ msgid "Statistics" msgstr "Statistiko" #. TRANS: Label for group creation date. -#, fuzzy msgctxt "LABEL" msgid "Created" -msgstr "Kreita" +msgstr "Kreita je" #. TRANS: Label for member count in statistics on group page. -#, fuzzy msgctxt "LABEL" msgid "Members" -msgstr "Grupanoj" +msgstr "Anoj" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. #. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, @@ -5008,10 +5103,9 @@ msgstr "" "siaj vivoj kaj ŝatokupoj. " #. TRANS: Title for list of group administrators on a group page. -#, fuzzy msgctxt "TITLE" msgid "Admins" -msgstr "Administrantoj" +msgstr "Estroj" #. TRANS: Client error displayed requesting a single message that does not exist. msgid "No such message." @@ -5033,6 +5127,11 @@ msgstr "Mesaĝo al %1$s ĉe %2$s" msgid "Message from %1$s on %2$s" msgstr "Mesaĝo de %1$s ĉe %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "Tujmesaĝilo ne estas disponebla." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Avizo viŝiĝas" @@ -5040,20 +5139,20 @@ msgstr "Avizo viŝiĝas" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %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, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Avizoj etikeditaj per %1$s - paĝo %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, paĝo %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Avizoj etikeditaj per %1$s - paĝo %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5139,6 +5238,7 @@ msgid "Repeat of %s" msgstr "Ripeto de %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Vi ne rajtas silentigi uzanton ĉe ĉi tiu retejo." @@ -5193,7 +5293,7 @@ msgstr "Nomo de retejo" #. TRANS: Field title on site settings panel. #, fuzzy msgid "The name of your site, like \"Yourcompany Microblog\"." -msgstr "Nomo de via retejo, ekzemple \"Viafirmo Mikroblogo\"" +msgstr "Nomo de via retpaĝaro, ekzemple «Mikroblogaro de Viafirmo»." #. TRANS: Field label on site settings panel. msgid "Brought by" @@ -5435,51 +5535,72 @@ msgstr "" msgid "No code entered." msgstr "Neniu kodo entajpita" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Momentfotoj" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Administri agordon pri momentfoto" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Momentfota ofteco nevalida." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "Momentfota ofteco estu nombro." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "Momentfota alraporta URL nevalida." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Momentfotoj" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Harzarde dum ret-alklako." +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "Laŭplane" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Datumaj momentfotoj" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Kiam sendu statistikan datumon al status.net serviloj" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Ofteco" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Momentfotoj sendiĝos post po N alklakoj" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "Alraporta URL" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Momentfotoj sendiĝos al ĉi tiu URL" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Konservi" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Konservi retejan agordon" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5491,6 +5612,27 @@ msgstr "Vi ne abonis tiun profilon." msgid "Could not save subscription." msgstr "Malsukcesis konservi abonon." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "Grupanecoj de %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Grupanoj de %1$s, paĝo %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Listo de uzantoj en tiu ĉi grupo" + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "Vi ne povas aboni foran OMB 0.1-an profilon per ĉi tiu ago." @@ -5609,31 +5751,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Avizoj etikeditaj per %1$s - paĝo %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Avizofluo pri etikedo %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Avizofluo pri etikedo %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Avizofluo pri etikedo %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Neniu ID-argumento" +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Etikedo %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Uzanta profilo" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Etikedi uzanton" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5642,13 +5796,22 @@ msgstr "" "Etikedoj por ĉi tiuj uzanto (literoj, ciferoj, -, . Kaj _), apartigu per " "komo aŭ spaco." +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "Vi rajtas entikedi nur abonanton aŭ abonaton." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Markiloj" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "Uzu ĉi tiun formularon por etikedi viajn abonantojn aŭ abonatojn." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Ne estas tiu etikedo." @@ -5656,27 +5819,33 @@ msgstr "Ne estas tiu etikedo." msgid "You haven't blocked that user." msgstr "Vi ne jam blokis la uzanton." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "La uzanto ne estas provejigita." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Uzanto ne estas silentigita." -msgid "No profile ID in request." -msgstr "Neniu profila ID petiĝas." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Malabonita" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "Rigardato-flua permesilo \"%1$s\" ne konformas al reteja permesilo \"%2$s\"." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" -msgstr "Tujmesaĝila agordo." +msgstr "Agordo pri URLoj." #. TRANS: Instructions for tab "Other" in user profile settings. msgid "Manage various other options." @@ -5688,10 +5857,12 @@ msgstr "Agordi diversajn aliajn elektojn." msgid " (free service)" msgstr " (libera servo)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" -msgstr "Nenio" +msgstr "[neniu]" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "[interna]" @@ -5703,17 +5874,21 @@ msgstr "Mallongigu URLojn per" msgid "Automatic shortening service to use." msgstr "Uzota aŭtomata mallongigad-servo." +#. TRANS: Field label in URL settings in profile. #, fuzzy msgid "URL longer than" msgstr "URL pli longa, ol" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "URLoj pli longaj ol tio mallongigatos, uzu «0» por ĉiam mallongigi." +#. TRANS: Field label in URL settings in profile. #, fuzzy msgid "Text longer than" msgstr "Teksto pli longa, ol" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5725,17 +5900,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "URL-mallongigado-servo tro longas (maksimume 50 literojn)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Nevalida avizo-enhavo" +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Nevalida avizo-enhavo" + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Uzanto" @@ -5759,6 +5938,9 @@ msgstr "Nevalida bonvena teksto. La longlimo estas 225 literoj." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Nevalida defaŭlta abono: '%1$s' ne estas uzanto." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profilo" @@ -5812,7 +5994,7 @@ msgstr "Konservi retejan agordon" msgid "Authorize subscription" msgstr "Rajtigi abonon" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5824,18 +6006,21 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" msgstr "Akcepti" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Aboni la uzanton" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5854,9 +6039,11 @@ msgstr "Ne bezonas permesado!" msgid "Subscription authorized" msgstr "Abono permesiĝis" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "La abono permesiĝis, sed ne pasiĝis revoka URL. Legu gvidon de la retejo pro " @@ -5866,9 +6053,11 @@ msgstr "" msgid "Subscription rejected" msgstr "Abono rifuziĝis" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "La abono rifuziĝis sed ne pasiĝis revoka URL. Legu gvidon de la retejo pro " @@ -5898,15 +6087,6 @@ msgstr "URL de abonito ‘%s’ estas de loka uzanto." msgid "Profile URL \"%s\" is for a local user." msgstr "Profila URL ‘%s’ estas de loka uzanto." -#. 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. -#, 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. #, fuzzy, php-format @@ -6010,7 +6190,6 @@ msgid "Contributors" msgstr "Kontribuantoj" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licenco" @@ -6048,30 +6227,25 @@ msgstr "" "Nekaze, legu %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Kromprogramo" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Name" msgstr "Nomo" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Version" msgstr "Versio" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Author(s)" msgstr "Aŭtoro(j)" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Description" msgstr "Priskribo" @@ -6132,6 +6306,18 @@ msgstr[1] "Dosiero tiel granda superos vian monatan kvoton kun %d bajtoj." msgid "Invalid filename." msgstr "Nevalida dosiernomo." +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#, php-format +msgid "Profile ID %s is invalid." +msgstr "Profil-identigilo %s estas nevalida." + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#, php-format +msgid "Group ID %s is invalid." +msgstr "Grup-identigilo %s estas nevalida." + #. TRANS: Exception thrown when joining a group fails. msgid "Group join failed." msgstr "Malsukcesis aniĝi al grupon." @@ -6144,18 +6330,6 @@ msgstr "Ne grupano." msgid "Group leave failed." msgstr "Malsukcesis foriri de grupo." -#. TRANS: Exception thrown providing an invalid profile ID. -#. TRANS: %s is the invalid profile ID. -#, php-format -msgid "Profile ID %s is invalid." -msgstr "" - -#. TRANS: Exception thrown providing an invalid group ID. -#. TRANS: %s is the invalid group ID. -#, fuzzy, php-format -msgid "Group ID %s is invalid." -msgstr "Eraris konservi uzanton: nevalida." - #. TRANS: Activity title. msgid "Join" msgstr "Aniĝi" @@ -6228,6 +6402,35 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Vi estas blokita de afiŝi ĉe tiu ĉi retejo." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Vi ne povas ripeti vian propran avizon." + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "Vi ne povas ripeti vian propran avizon." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Vi ne povas ripeti vian propran avizon." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Vi ne povas ripeti vian propran avizon." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "La avizo jam ripetiĝis." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "La uzanto ne havas lastan averton." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6254,16 +6457,13 @@ msgstr "Malsukcesis lokan grupan informon." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6285,6 +6485,7 @@ msgid "Unable to save tag." msgstr "Malsukcesis konservi etikedon." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Vi esatas blokita de aboni." @@ -6312,7 +6513,9 @@ msgstr "Malsukcesis forigi abonan OMB-ĵetonon." msgid "Could not delete subscription." msgstr "Malsukcesis forigi abonon." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Sekvi" @@ -6356,7 +6559,7 @@ msgstr "Malsukcesis lokan grupan informon." #. TRANS: %s is the remote site. #, fuzzy, php-format msgid "Cannot locate account %s." -msgstr "Vi ne povas forigi uzantojn." +msgstr "Ne trovitas la konto %s." #. TRANS: Exception thrown when a service document could not be located account move. #. TRANS: %s is the remote site. @@ -6380,18 +6583,24 @@ msgid "User deletion in progress..." msgstr "Forigante uzanton..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Redakti profilan agordon" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Redakti" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Sendi rektan mesaĝon a ĉi tiu uzanto" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Mesaĝo" @@ -6413,10 +6622,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderanto" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Aboni" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6429,20 +6634,22 @@ msgstr "Sentitola paĝo" #. TRANS: Localized tooltip for '...' expansion button on overlong remote messages. msgctxt "TOOLTIP" msgid "Show more" -msgstr "" +msgstr "Montri pli" #. TRANS: Inline reply form submit button: submits a reply comment. -#, fuzzy msgctxt "BUTTON" msgid "Reply" msgstr "Respondi" #. TRANS: Placeholder text for inline reply form. Clicking in this box will turn it into a mini notice form. #. TRANS: Field label for reply mini form. -msgid "Write a reply..." -msgstr "" - #, fuzzy +msgid "Write a reply..." +msgstr "Skribi respondon…" + +#. TRANS: Tab on the notice form. +#, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6519,7 +6726,7 @@ msgstr "" #. TRANS: Client exception thrown when using an unknown verb for the activity importer. #, fuzzy, php-format msgid "Unknown verb: \"%s\"." -msgstr "Nekonata lingvo \"%s\"." +msgstr "Nekonata verbo: «%s»." #. TRANS: Client exception thrown when trying to force a subscription for an untrusted user. msgid "Cannot force subscription for untrusted user." @@ -6562,10 +6769,11 @@ msgstr "" #. TRANS: %s is the notice URI. #, fuzzy, php-format msgid "No content for notice %s." -msgstr "Serĉi enhavon ĉe la retejo" +msgstr "Ne troviĝas la enhavo por la avizo %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "Ne ekzistas tiu uzanto." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6612,76 +6820,128 @@ msgstr "saveSettings() ne jam realigita." msgid "Unable to delete design setting." msgstr "Malsukcesas forigi desegnan agordon." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. #, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Hejmpaĝo" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Hejmpaĝo" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Administranto" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Baza reteja agordo" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Retejo" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Desegna agordo" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Desegno" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Uzanta agordo" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Uzanto" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Alira agordo" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Atingo" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Voja agordo" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Vojoj" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Seanca agodo" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Seancoj" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Redakti retejan anoncon" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Reteja anonco" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Momentfota Agordo" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Snapshots" +msgstr "Momentfotoj" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licenco" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" -msgstr "Voja agordo" +msgstr "Agordo pri kromprogramoj" + +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Kromprogramo" #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." @@ -6691,6 +6951,7 @@ msgstr "API-fonto bezonas leg-skriba aliro, sed vi nur rajtas legi." msgid "No application for that consumer key." msgstr "Ne estas aplikaĵo kun la kosumanta ŝlosilo." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6727,9 +6988,11 @@ msgstr "" msgid "Could not issue access token." msgstr "Malsukcesis enmeti mesaĝon." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Datumbaza eraro enigi la uzanton de *OAuth-aplikaĵo." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "Datumbaza eraro enigi la uzanton de *OAuth-aplikaĵo." @@ -6823,6 +7086,17 @@ msgstr "Defaŭta aliro por la aplikaĵo: nur-lege aŭ leg-skribe." msgid "Cancel" msgstr "Nuligi" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Konservi" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Nekonata ago" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr " De " @@ -6845,11 +7119,12 @@ msgstr "Permesita %1$s - aliro \"%2$s\"." msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Revoki" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -6867,7 +7142,6 @@ msgid "Tags for this attachment" msgstr "Etikedoj por ĉi tiu aldonaĵo" #. TRANS: Exception thrown when a password change fails. -#, fuzzy msgid "Password changing failed." msgstr "Ŝanĝo de pasvorto malsukcesis." @@ -6885,9 +7159,16 @@ msgid "Block this user" msgstr "Bloki la uzanton" #. TRANS: Submit button text on form to cancel group join request. +#, fuzzy msgctxt "BUTTON" msgid "Cancel join request" -msgstr "" +msgstr "Nuligi aliĝpeton" + +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Nuligi aliĝpeton" #. TRANS: Title for command results. msgid "Command results" @@ -6899,6 +7180,7 @@ msgid "AJAX error" msgstr "Eraro de Ajax" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Komando kompleta" @@ -7019,6 +7301,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7039,10 +7323,6 @@ msgstr "Eraris sendi rektan mesaĝon." msgid "Notice from %s repeated." msgstr "Avizo de %s ripetiĝas." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Eraris ripeti avizon." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7166,10 +7446,9 @@ msgstr[0] "Vi estas grupano de jena grupo:" msgstr[1] "Vi estas grupano de jenaj grupoj:" #. TRANS: Header line of help text for commands. -#, fuzzy msgctxt "COMMANDHELP" msgid "Commands:" -msgstr "Komandaj rezultoj" +msgstr "Komandoj:" #. TRANS: Help message for IM/SMS command "on" #, fuzzy @@ -7186,7 +7465,7 @@ msgstr "Malsukcesis malŝalti sciigon." #. TRANS: Help message for IM/SMS command "help" msgctxt "COMMANDHELP" msgid "show this help" -msgstr "" +msgstr "montri ĉi tiun helpilon" #. TRANS: Help message for IM/SMS command "follow " #, fuzzy @@ -7321,10 +7600,9 @@ msgstr "" #. TRANS: Help message for IM/SMS command "untrack all" #. TRANS: Help message for IM/SMS command "tracks" #. TRANS: Help message for IM/SMS command "tracking" -#, fuzzy msgctxt "COMMANDHELP" msgid "not yet implemented." -msgstr "Komando ankoraŭ ne realigita." +msgstr "ankoraŭ ne realigita." #. TRANS: Help message for IM/SMS command "nudge " msgctxt "COMMANDHELP" @@ -7351,13 +7629,19 @@ msgstr "Vi eble volas uzi instalilon por ripari tiun ĉi." msgid "Go to the installer." msgstr "Al la instalilo." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Datumbaza eraro" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Publika" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Forigi" @@ -7365,6 +7649,7 @@ msgstr "Forigi" msgid "Delete this user" msgstr "Forigi la uzanton" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Savi desegnon" @@ -7377,23 +7662,14 @@ msgstr "Ŝanĝi kolorojn" msgid "Use defaults" msgstr "Uzi defaŭlton" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -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. -msgid "Reset back to default" -msgstr "Redefaŭltiĝi" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "Alŝuti dosieron" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Vi povas alŝuti vian propran fonbildon. La dosiera grandlimo estas 2MB." @@ -7409,15 +7685,6 @@ msgctxt "RADIO" msgid "Off" msgstr "For" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "Malsukcesis ĝisdatigi vian desegnon." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Desegnaj defaŭltoj konserviĝas." @@ -7449,47 +7716,60 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Ŝati" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -#, fuzzy -msgid "Not an atom feed." -msgstr "Ĉiuj grupanoj" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Fluoj" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Ĉiuj" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Eletu etikedon por filtrado" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Etikedo" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +msgid "Choose a tag to narrow list." msgstr "" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Iri" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Donu al la uzanto rolon \"%s\"" @@ -7550,11 +7830,13 @@ msgstr[1] "" #. TRANS: Dropdown fieldd label on group edit form. #, fuzzy msgid "Membership policy" -msgstr "Ano ekde" +msgstr "Membriĝpolitiko" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7563,10 +7845,9 @@ msgid "Whether admin approval is required to join this group." msgstr "" #. TRANS: Indicator in group members list that this user is a group administrator. -#, fuzzy msgctxt "GROUPADMIN" msgid "Admin" -msgstr "Administranto" +msgstr "Grupestrarano" #. TRANS: Menu item in the group navigation page. msgctxt "MENU" @@ -7621,6 +7902,7 @@ msgid "%s blocked users" msgstr "Blokito de %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Administri" @@ -7722,23 +8004,46 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Nekonata alvenkesta fonto %d" +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Aniĝi" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Forlasi" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Ensaluti" @@ -7763,7 +8068,7 @@ msgstr "Retpoŝtadresa konfirmo" #. TRANS: Body for address confirmation email. #. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename, #. TRANS: %3$s is the URL to confirm at. -#, fuzzy, php-format +#, php-format msgid "" "Hey, %1$s.\n" "\n" @@ -7778,18 +8083,18 @@ msgid "" "Thanks for your time, \n" "%2$s\n" msgstr "" -"Saluton, %s.\n" +"Saluton, %1$s.\n" "\n" -"Iu ĵus entajpis tiun ĉi retpoŝtadreson ĉe %s.\n" +"Iu ĵus enigis ĉi tiun retpoŝtadreson ĉe %2$s.\n" "\n" -"Se faris vi tion, kaj vi volas konfirmi vian eniron, uzu la URL sube:\n" +"Se tio estis vi, kaj vi volas konfirmi vian enigon, uzu la jenan URLon:\n" "\n" -"%s\n" +"\t%3$s\n" "\n" -"Se ne, simple ignoru ĉi mesaĝon.\n" +"Se ne, simple ignoru ĉi tiun mesaĝon.\n" "\n" -"Dankon por via tempo,\n" -"%s\n" +"Dankon por via tempo, \n" +"%2$s\n" #. TRANS: Subject of new-subscriber notification e-mail. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. @@ -7799,6 +8104,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s nun rigardas viajn avizojn ĉe %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s nun rigardas viajn avizojn ĉe %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -7825,7 +8144,7 @@ msgstr "" #. TRANS: %s is a URL. #, fuzzy, php-format msgid "Profile: %s" -msgstr "Profilo" +msgstr "Profilo: %s" #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is biographical information. @@ -7835,13 +8154,13 @@ msgstr "Biografio: %s" #. TRANS: This is a paragraph in a new-subscriber e-mail. #. TRANS: %s is a URL where the subscriber can be reported as abusive. -#, fuzzy, php-format +#, php-format msgid "" "If you believe this account is being used abusively, you can block them from " "your subscribers list and report as spam to site administrators at %s." msgstr "" -"Se vi kredas, ke ĉi tiun konton iu misuzas, vi rajtas bloki ĝin de via " -"abonanto-listo kaj raporti ĝin kiel rubmesaĝanto al administrantoj ĉe %s" +"Se vi kredas, ke ĉi tiun konton iu misuzas, vi povas bloki ĝin de via " +"abonanto-listo kaj raporti ĝin kiel rubmesaĝanton al administrantoj de %s." #. TRANS: Subject of notification mail for new posting email address. #. TRANS: %s is the StatusNet sitename. @@ -7926,7 +8245,7 @@ msgstr "Nova privata mesaĝo de %s" #. TRANS: Body for direct-message notification email. #. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, #. TRANS: %3$s is the message content, %4$s a URL to the message, -#, fuzzy, php-format +#, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" "\n" @@ -7946,14 +8265,11 @@ msgstr "" "%3$s\n" "------------------------------------------------------\n" "\n" -"Vi povas respondi al lia mesaĝon jene:\n" +"Vi povas respondi al lia mesaĝo ĉe:\n" "\n" "%4$s\n" "\n" -"Ne respondu al tiu ĉi mesaĝon; li ne ricevos ĝin.\n" -"\n" -"Kun bona espero,\n" -"%5$s\n" +"Ne respondu al ĉi tiu retpoŝtadreso; respondo ne atingos lin.\n" #. TRANS: Subject for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. @@ -8070,9 +8386,9 @@ msgstr "" #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. #. TRANS: %5$s is a link to the addressed user's e-mail settings. -#, fuzzy, php-format +#, php-format msgid "%1$s has joined your group %2$s on %3$s." -msgstr "%1$s aniĝis grupon %2$s." +msgstr "%1$s aliĝis vian grupon %2$s ĉe %3$s." #. TRANS: Subject of pending group join request notification e-mail. #. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. @@ -8089,9 +8405,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Nur uzanto povas legi sian propran paŝton." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8099,33 +8417,49 @@ msgstr "" "Vi ne ricevis privatan mesaĝon. Vi povas sendi privatan mesaĝon al iu kaj " "interparoli kun ili. Homo sendas al vi mesaĝon al vi sole." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Alvenkesto" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Viaj alvenaj mesaĝoj" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Elirkesto" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Viaj senditaj mesaĝoj" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. #, fuzzy msgid "Could not parse message." -msgstr "Malsukcesis ĝisdatigi uzanton" +msgstr "Malsukcesis analizo de mesaĝo" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Ne registrita uzanto" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Pardonon, tiu ne estas via alvena retpoŝtadreso." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Pardonon, neniu alvena mesaĝo permesiĝas." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Nesubtenata mesaĝo-tipo: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8177,45 +8511,82 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "\"%s\" ne estas subtenata tipo ĉe tiu ĉi servilo." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Sendi rektan avizon" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. -#, fuzzy +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" -msgstr "Elektu peranton" +msgstr "Elektu ricevonton:" #. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. -#, fuzzy msgid "No mutual subscribers." msgstr "Mankas abonantoj reciprokaj." +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Al" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Sendi" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Mesaĝo" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "de" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "TTT" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Retpoŝto" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." -msgstr "Vi ne rajtas forigi ĉi tiun grupon." +msgstr "" +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Ne forigi la avizon" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8263,68 +8634,95 @@ msgstr "" "Pardonon, legi vian lokon estas pli malrapide, ol ni pensis. Bonvolu reprovi " "poste." -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Avizoj" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "E" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "W" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "al" -msgid "web" -msgstr "TTT" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "kuntekste" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Ripetita de" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Respondi ĉi tiun avizon" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Respondi" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Forigi la avizon" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Avizo ripetiĝas" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Puŝeti la uzanton" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Puŝeti" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Sendi puŝeton al la uzanto" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Eraris enmeti novan profilon" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Eraris enmeti novan vizaĝbildon." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Eraris enmeti foran profilon." @@ -8332,18 +8730,51 @@ msgstr "Eraris enmeti foran profilon." msgid "Duplicate notice." msgstr "Refoja avizo." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Eraris enmeti novan abonon." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profilo" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Via profilo" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Respondoj" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Ŝatolisto" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Uzanto" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Mesaĝo" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Viaj alvenaj mesaĝoj" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8367,29 +8798,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Agordoj" -msgid "Change your personal settings" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Change your personal settings." msgstr "Ŝanĝi viajn personajn agordojn" -msgid "Site configuration" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Site configuration." msgstr "Retej-agordo" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" -msgstr "Elsaluti" +msgstr " Elsaluti" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Elsaluti el la retpaĝaro" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Login to the site" +msgid "Login to the site." msgstr "Ensaluti al la retpaĝaro" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "Serĉi" -msgid "Search the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Search the site." msgstr "Serĉi en la retpaĝaro" #. TRANS: H2 text for user subscription statistics. @@ -8436,31 +8883,54 @@ msgstr "Ĉiuj grupoj" msgid "Unimplemented method." msgstr "Nerealiĝita metodo" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grupoj" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Uzantaj grupoj" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Freŝaj etikedoj" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Freŝaj etikedoj" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Elstara" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Populara" +#. TRANS: Client error displayed when return-to was defined without a target. #, fuzzy msgid "No return-to arguments." msgstr "Ne estas aldonaĵo." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Ĉu ripeti la avizon?" -msgid "Yes" -msgstr "Jes" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Ripeti la avizon" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Revoki rolon %s de la uzanto" @@ -8469,9 +8939,13 @@ msgstr "Revoki rolon %s de la uzanto" msgid "Page not found." msgstr "Paĝo ne trovitas." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Provejo" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Provejigi la uzanton" @@ -8489,128 +8963,276 @@ msgctxt "BUTTON" msgid "Search" msgstr "Serĉi" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Homon" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Serĉi homon ĉe la retejo" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Avizoj" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Serĉi enhavon ĉe la retejo" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Serĉi grupon ĉe la retejo" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "Helpo" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Enkonduko" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "Oftaj demandoj" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "Serva Kondiĉo" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Privateco" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Fontkodo" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Versio" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Kontakto" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Insigno" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Sentitola sekcio" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Pli..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Agordoj" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Ŝanĝi vian profilan agordon." +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Vizaĝbildo" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Alŝuti vizaĝbildon" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Pasvorto" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Ŝanĝi vian pasvorton." +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Retpoŝto" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Ŝanĝi retpoŝtan disponadon." +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Desegni vian profilon" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "Mallongigiloj de URLoj" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "Tujmesaĝilo" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Ĝisdatiĝo per tujmesaĝilo." +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Ĝisdatiĝo per SMM" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Konektoj" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Konektitaj aplikaĵoj rajtigitaj" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Silento" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Silentigi la uzanton" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Abonatoj" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Abonatoj de %s" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Abonantoj" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Abonantoj de %s" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Grupoj de %s" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "Inviti" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Inviti amikojn kaj kolegojn al %s kun vi" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Aboni la uzanton" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Nenio" @@ -8619,18 +9241,26 @@ msgstr "Nenio" msgid "Invalid theme name." msgstr "Nevalida dosiernomo." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "Ĉi tiu servilo ne povas disponi desegnan alŝuton sen ZIP-a subteno." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "La desegna dosiero mankas aŭ malsukcesis alŝuti." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Malsukcesis konservi desegnon." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Nevalida desegno: fuŝa dosieruja sturkturo." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, fuzzy, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8640,9 +9270,12 @@ msgstr[0] "" msgstr[1] "" "Alŝutata desegno tro grandas; ĝi estu apenaŭ %d bitoj sen densigado." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Nevalida desegna arkivo: mankas dosiero css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -8650,22 +9283,20 @@ msgstr "" "Desegno enhavas nevalidan dosieran aŭ dosierujan nomon. Uzu nur ASCII-" "literaron, ciferojn, substrekon kaj minussignon." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "Desegno enhavas malsekuran dosiersufikson; eble malsukuras." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Desegno enhavas dosieron de tipo \".%s\", kiu malpermesiĝas." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Eraris malfermi desegnan arkivon." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Avizoj" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -8696,8 +9327,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Ŝati la avizon" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Forigi ŝatmarkon de ĉi tiu avizo" @@ -8709,8 +9341,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "La avizo jam ripetiĝis." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "La avizo jam ripetiĝis." @@ -8720,6 +9353,28 @@ msgstr[1] "La avizo jam ripetiĝis." msgid "Top posters" msgstr "Pintaj afiŝantoj" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Al" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Nekonata verbo: «%s»." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8838,5 +9493,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Mesaĝo tro longas - longlimo estas %1$d, via estas %2$d" +#~ msgid "Couldn't update your design." +#~ msgstr "Malsukcesis ĝisdatigi vian desegnon." diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index cb1b4faac1..17590b07c1 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -19,20 +19,54 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:46+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:48+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Desconocido" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Acción desconocida" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Acceder" @@ -84,7 +118,9 @@ msgstr "Guardar la configuración de acceso" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -96,6 +132,7 @@ msgstr "Guardar" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "No existe tal página." @@ -114,6 +151,7 @@ msgstr "No existe tal página." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -138,8 +176,11 @@ msgstr "No existe tal página." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "No existe ese usuario." @@ -152,7 +193,15 @@ msgstr "%1$s y sus amistades, página %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s y sus amistades" @@ -224,28 +273,14 @@ msgstr "Tú y tus amistades" msgid "Updates from %1$s and friends on %2$s!" msgstr "¡Actualizaciones de %1$s y sus amistades en %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "Método de API no encontrado." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -281,6 +316,7 @@ msgstr "No se pudo actualizar el usuario." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "El usuario no tiene un perfil." @@ -320,6 +356,8 @@ msgstr "No se pudo grabar tu configuración de diseño." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "No se pudo actualizar tu diseño." @@ -692,9 +730,12 @@ msgstr "No estás autorizado." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" "Hubo un problema con tu clave de sesión. Por favor, intenta nuevamente." @@ -850,16 +891,6 @@ msgstr "No puedes borrar el estado de otro usuario." msgid "No such notice." msgstr "No existe ese mensaje." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "No puedes repetir tus propios mensajes" - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Este mensaje ya se ha repetido." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -902,8 +933,11 @@ msgstr "Aviso eliminado %d" msgid "Client must provide a 'status' parameter with a value." msgstr "El cliente debe proveer un parámetro de 'status' con un valor." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -917,6 +951,8 @@ msgstr "Método de API no encontrado." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -989,6 +1025,8 @@ msgstr "actualizaciones de %1$s en respuesta a las de %2$s / %3$s" msgid "Repeats of %s" msgstr "Repeticiones de %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%s (@%s) agregó tu mensaje a los favoritos" @@ -1003,6 +1041,8 @@ msgstr "Mensajes etiquetados con %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualizaciones etiquetadas con %1$s en %2$s!" @@ -1117,11 +1157,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Perfil ausente." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1129,10 +1171,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Lista de los usuarios en este grupo." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1157,6 +1201,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Lista de los usuarios en este grupo." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "No se pudo unir el usuario %s al grupo %s" + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "estado de %1$s en %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Suscripción autorizada" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Autorización cancelada" + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1192,8 +1264,8 @@ msgstr "Ya incluido en favoritos." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "%s miembros en el grupo" #. TRANS: Subtitle for group membership feed. @@ -1207,8 +1279,7 @@ msgstr "%s es miembro de los grupos" msgid "Cannot add someone else's membership." msgstr "No se pudo insertar una nueva suscripción." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Buscar en el contenido de mensajes" @@ -1328,6 +1399,7 @@ msgstr "Puedes subir tu imagen personal. El tamaño máximo de archivo es %s." #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Usuario sin perfil coincidente." @@ -1354,6 +1426,7 @@ msgstr "Vista previa" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Borrar" @@ -1469,6 +1542,7 @@ msgstr "No bloquear a este usuario" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Sí" @@ -1527,6 +1601,32 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s ha dejado el grupo %2$s" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "No conectado." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "No hay id de perfil en solicitud." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "No existe perfil con ese ID" + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Desuscrito" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Ningún código de confirmación." @@ -1668,6 +1768,7 @@ msgstr "Aplicación no encontrada." msgid "You are not the owner of this application." msgstr "No eres el propietario de esta aplicación." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Hubo problemas con tu clave de sesión." @@ -1741,24 +1842,6 @@ msgstr "No eliminar este grupo" msgid "Delete this group." msgstr "Eliminar este grupo." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "No conectado." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1949,16 +2032,19 @@ msgid "Use defaults" msgstr "Usar los valores predeterminados" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "Restaurar los diseños predeterminados" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "Volver a los valores predeterminados" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "Guardar el diseño" @@ -2298,6 +2384,7 @@ msgstr "Sacar favorito" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Mensajes populares" @@ -2339,6 +2426,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Mensajes favoritos de %s" @@ -2351,6 +2440,7 @@ msgstr "¡Actualizaciones favorecidas por %1$s en %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Usuarios que figuran" @@ -2412,6 +2502,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "El servicio remoto utiliza una versión desconocida del protocolo OMB." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Error al actualizar el perfil remoto." @@ -2449,14 +2540,6 @@ msgstr "El usuario ya tiene esta función." msgid "No profile specified." msgstr "No se especificó perfil." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "No existe perfil con ese ID" - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3087,6 +3170,7 @@ msgid "License selection" msgstr "Selección de Licencia" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privado" @@ -3327,6 +3411,9 @@ msgid "Ajax Error" msgstr "Error de Ajax" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nuevo mensaje" @@ -3629,7 +3716,6 @@ msgid "Password saved." msgstr "Se guardó la contraseña." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Rutas" @@ -3837,6 +3923,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Nunca" @@ -3994,17 +4081,22 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "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. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +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: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4017,7 +4109,8 @@ msgid "Location" msgstr "Ubicación" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Dónde estás, por ejemplo \"Ciudad, Estado (o Región), País\"" #. TRANS: Checkbox label in form for profile settings. @@ -4025,6 +4118,9 @@ msgid "Share my current location when posting notices" msgstr "Compartir mi ubicación actual al publicar los mensajes" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Etiquetas" @@ -4062,6 +4158,28 @@ msgstr "" "Suscribirse automáticamente a quien quiera que se suscriba a mí (es mejor " "para no-humanos)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Suscripciones" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "Sólo puede seguir personas" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4094,7 +4212,7 @@ msgstr "Etiqueta inválida: \"% s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "No se pudo actualizar el usuario para autosuscribirse." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4103,6 +4221,7 @@ msgid "Could not save location prefs." msgstr "No se han podido guardar las preferencias de ubicación." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "No se han podido guardar las etiquetas." @@ -4133,6 +4252,7 @@ msgid "Public timeline, page %d" msgstr "Línea temporal pública, página %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Línea temporal pública" @@ -4321,10 +4441,6 @@ msgstr "Recuperación de contraseña solicitada" msgid "Password saved" msgstr "Contraseña guardada." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Acción desconocida" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "6 o más caracteres, ¡y no la olvides!" @@ -4418,6 +4534,7 @@ msgstr "Registro de usuario no permitido." msgid "You cannot register if you do not agree to the license." msgstr "No puedes registrarte si no estás de acuerdo con la licencia." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "La dirección de correo electrónico ya existe." @@ -4454,25 +4571,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "Nombre largo, preferiblemente tu nombre \"real\"" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -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: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Descríbete y cuéntanos acerca de tus intereses" - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Dónde estás, por ejemplo \"Ciudad, Estado (o Región), País\"" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4594,6 +4693,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "El URL de tu perfil en otro servicio de microblogueo compatible" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4630,16 +4731,8 @@ msgstr "Sólo los usuarios que hayan accedido pueden repetir mensajes." msgid "No notice specified." msgstr "No se ha especificado un mensaje." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "No puedes repetir tus propios mensajes." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Ya has repetido este mensaje." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Repetido" @@ -4650,6 +4743,8 @@ msgstr "¡Repetido!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Respuestas a %s" @@ -4766,6 +4861,7 @@ msgid "System error uploading file." msgstr "Error del sistema subir el archivo" #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Todos los miembros" @@ -4805,6 +4901,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "No puedes imponer restricciones a los usuarios en este sitio." @@ -5002,6 +5099,8 @@ msgstr "Miembros" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Ninguno)" @@ -5084,6 +5183,11 @@ msgstr "Mensaje a %1$s en %2$s" msgid "Message from %1$s on %2$s" msgstr "Mensaje de %1$s en %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "La mensajería instantánea no está disponible." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Mensaje borrado" @@ -5091,20 +5195,20 @@ msgstr "Mensaje borrado" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %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, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Mensajes etiquetados con %1$s, página %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, página %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Mensajes etiquetados con %1$s, página %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5192,6 +5296,7 @@ msgid "Repeat of %s" msgstr "Repetición de %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "No puedes silenciar a otros usuarios en este sitio." @@ -5495,51 +5600,72 @@ msgstr "" msgid "No code entered." msgstr "No ingresó el código" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Capturas" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Administrar la configuración de instantáneas" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Valor de ejecución de instantánea inválido" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "La frecuencia de captura debe ser un número." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "URL de instantánea de reporte inválido" +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Capturas" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Aleatoriamente durante visita Web" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "En un trabajo programado" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Capturas de datos" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Cuándo enviar datos estadísticos a los servidores status.net" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frecuencia" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Las instantáneas se enviarán una vez cada N visitas Web" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "Reportar URL" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Las capturas se enviarán a este URL" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Guardar" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Guardar la configuración de instantáneas" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5551,6 +5677,27 @@ msgstr "No te has suscrito a ese perfil." msgid "Could not save subscription." msgstr "No se ha podido guardar la suscripción." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s miembros en el grupo" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s miembros de grupo, página %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Lista de los usuarios en este grupo." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "No puedes suscribirte a un perfil remoto 0.1 de OMB con esta acción." @@ -5672,31 +5819,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Mensajes etiquetados con %1$s, página %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Canal de mensajes con etiqueta %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Canal de mensajes con etiqueta %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Canal de mensajes con etiqueta %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "No existe argumento de ID." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "%s etiqueta" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Perfil de usuario" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Etiquetar usuario" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5705,17 +5864,26 @@ msgstr "" "Etiquetas para este usuario (letras, números, -, ., y _), separadas por " "comas o espacios" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Sólo puedes marcar a las personas a quienes estás suscrito o que están " "suscritas a ti." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Etiquetas" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Usa este formulario para agregar etiquetas a tus suscriptores o " "suscripciones." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "No existe tal etiqueta." @@ -5723,25 +5891,31 @@ msgstr "No existe tal etiqueta." msgid "You haven't blocked that user." msgstr "No has bloqueado ese usuario." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Al usuario no se le ha impuesto restricciones." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "El usuario no ha sido silenciado." -msgid "No profile ID in request." -msgstr "No hay id de perfil en solicitud." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Desuscrito" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "Licencia de flujo del emisor ‘%1$s’ es incompatible con la licencia del " "sitio ‘%2$s’." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Configuración de mensajería instantánea" @@ -5756,10 +5930,12 @@ msgstr "Manejo de varias opciones adicionales." msgid " (free service)" msgstr " (servicio libre)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Ninguno" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5771,15 +5947,19 @@ msgstr "Acortar los URL con" msgid "Automatic shortening service to use." msgstr "Servicio de acorte automático a usar." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5789,17 +5969,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "El servicio de acortamiento de URL es muy largo (máx. 50 caracteres)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Contenido de mensaje inválido." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Contenido de mensaje inválido." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Usuario" @@ -5823,6 +6007,9 @@ msgstr "Texto de bienvenida inválido. La longitud máx. es de 255 caracteres." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Suscripción predeterminada inválida : '%1$s' no es un usuario" +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Perfil" @@ -5876,7 +6063,7 @@ msgstr "Guardar la configuración del sitio" msgid "Authorize subscription" msgstr "Autorizar la suscripción" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5889,16 +6076,19 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "Aceptar" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. msgid "Subscribe to this user." msgstr "Suscribirse a este usuario." #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "Rechazar" @@ -5915,9 +6105,10 @@ msgstr "¡Ninguna petición de autorización!" msgid "Subscription authorized" msgstr "Suscripción autorizada" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "La suscripción ha sido autorizada, pero no se ha pasado un URL de retorno. " @@ -5928,9 +6119,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Suscripción rechazada" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "!Se ha rechazado la suscripción, pero no se ha pasado un URL de retorno. Lee " @@ -5961,16 +6153,6 @@ msgstr "El URI ‘%s’ del receptor es un usuario local." msgid "Profile URL \"%s\" is for a local user." msgstr "El URL ‘%s’ de perfil es para un usuario local." -#. 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. -#, 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. #, fuzzy, php-format @@ -6076,7 +6258,6 @@ msgid "Contributors" msgstr "Colaboradores" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licencia" @@ -6115,7 +6296,6 @@ msgstr "" "con este programa. Si no la recibiste, visita %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Complementos" @@ -6203,18 +6383,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "Nombre de archivo inválido." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Ha fallado la acción de unirse el grupo" - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "No es parte del grupo." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Ha fallado la acción de abandonar el grupo" - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6227,6 +6395,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "Error al guardar el usuario; inválido." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Ha fallado la acción de unirse el grupo" + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "No es parte del grupo." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Ha fallado la acción de abandonar el grupo" + #. TRANS: Activity title. msgid "Join" msgstr "Unirse" @@ -6301,6 +6481,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Tienes prohibido publicar avisos en este sitio." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "No puedes repetir tus propios mensajes" + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "No puedes repetir tus propios mensajes." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "No puedes repetir tus propios mensajes" + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "No puedes repetir tus propios mensajes" + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Ya has repetido este mensaje." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "El/La usuario/a no tiene ningún último mensaje" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6327,16 +6537,13 @@ msgstr "No se ha podido guardar la información del grupo local." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6359,6 +6566,7 @@ msgid "Unable to save tag." msgstr "Incapaz de grabar etiqueta." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Se te ha prohibido la suscripción." @@ -6387,9 +6595,11 @@ msgstr "No se pudo eliminar la ficha OMB de suscripción." msgid "Could not delete subscription." msgstr "No se pudo eliminar la suscripción." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "Permitir" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6455,18 +6665,24 @@ msgid "User deletion in progress..." msgstr "Eliminación de usuario en curso..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Editar configuración del perfil" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Editar" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Enviar un mensaje directo a este usuario" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Mensaje" @@ -6488,10 +6704,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderador" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Suscribirse" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6516,6 +6728,9 @@ msgstr "Responder" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. +#, fuzzy +msgctxt "TAB" msgid "Status" msgstr "Estado" @@ -6641,8 +6856,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Buscar en el contenido de mensajes" -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "Este usuario no existe %s" #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6689,75 +6905,128 @@ msgstr "saveSettings() no implementada." msgid "Unable to delete design setting." msgstr "No se puede eliminar la configuración de diseño." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Página de inicio" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Página de inicio" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Admin" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Configuración básica del sitio" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Sitio" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Configuración del diseño" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Diseño" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Configuración de usuario" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Usuario" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Configuración de acceso" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Acceder" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Configuración de rutas" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Rutas" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Configuración de sesiones" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Sesiones" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Editar el mensaje del sitio" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Mensaje de sitio" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Configuración de instantáneas" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Snapshots" +msgstr "Capturas" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licencia" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Plugins configuration" msgstr "Configuración de plugins" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Complementos" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6768,6 +7037,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "No hay ninguna aplicación para esa clave de consumidor." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6803,9 +7073,11 @@ msgstr "" msgid "Could not issue access token." msgstr "No se pudo insertar mensaje." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Error de base de datos al insertar usuario de la aplicación OAuth." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "Error de base de datos al insertar usuario de la aplicación OAuth." @@ -6900,6 +7172,17 @@ msgstr "" msgid "Cancel" msgstr "Cancelar" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Guardar" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Acción desconocida" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "por " @@ -6922,11 +7205,12 @@ msgstr "Aprobado el %1$s - acceso \"%2$s\"." msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Revocar" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -6965,6 +7249,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Todas las suscripciones" + #. TRANS: Title for command results. msgid "Command results" msgstr "Resultados de comando" @@ -6975,6 +7265,7 @@ msgid "AJAX error" msgstr "Error de Ajax" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Comando completo" @@ -7096,6 +7387,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7116,10 +7409,6 @@ msgstr "Error al enviar mensaje directo." msgid "Notice from %s repeated." msgstr "Se ha repetido el mensaje de %s." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Ha habido un error al repetir el mensaje." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7429,13 +7718,19 @@ msgstr "Quizá desees ejecutar el instalador para solucionar este problema." msgid "Go to the installer." msgstr "Ir al instalador." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Error de la base de datos" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Público" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Borrar" @@ -7443,6 +7738,7 @@ msgstr "Borrar" msgid "Delete this user" msgstr "Borrar este usuario" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Guardar el diseño" @@ -7455,23 +7751,14 @@ 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. -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. -msgid "Reset back to default" -msgstr "Volver a los valores predeterminados" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "Subir archivo" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Puedes subir tu imagen de fondo personal. El tamaño de archivo máximo " "permitido es 2 MB." @@ -7486,15 +7773,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Desactivar" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "No fue posible actualizar tu diseño." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Diseño predeterminado restaurado." @@ -7526,47 +7804,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Aceptar" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "Amistad de amistad" -#, fuzzy -msgid "Not an atom feed." -msgstr "Todos los miembros" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Feeds" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Todo" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Seleccione una etiqueta a filtrar" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Etiqueta" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Elegir una etiqueta para reducir la lista" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Ir" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Otorgar al usuario el papel de \"%$\"" @@ -7630,9 +7922,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Miembro desde" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7699,6 +7993,7 @@ msgid "%s blocked users" msgstr "%s usuarios bloqueados" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Admin" @@ -7799,23 +8094,46 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Origen de bandeja de entrada %d desconocido." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Unirse" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Abandonar" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Inicio de sesión" @@ -7877,6 +8195,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s ahora está escuchando tus avisos en %2$s" +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s ahora está escuchando tus avisos en %2$s" + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8171,9 +8503,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Sólo el usuario puede leer sus bandejas de correo." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8182,32 +8516,48 @@ msgstr "" "otros usuarios partícipes de la conversación. La gente puede enviarte " "mensajes que sólo puedas leer tú." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Bandeja de Entrada" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Mensajes entrantes" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Bandeja de Salida" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Mensajes enviados" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "No se pudo analizar sintácticamente mensaje." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "No es un usuario registrado" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Lo sentimos, pero este no es su dirección de correo entrante." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Lo sentimos, pero no se permite correos entrantes" -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Tipo de mensaje no compatible: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8261,10 +8611,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "\"%s\" no es un tipo de archivo compatible en este servidor." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Enviar un mensaje directo" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Seleccione un operador móvil" @@ -8273,31 +8626,67 @@ msgstr "Seleccione un operador móvil" msgid "No mutual subscribers." msgstr "Sin suscripción mutua" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Para" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Enviar" +#. TRANS: Header in message list. msgid "Messages" msgstr "Mensajes" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "desde" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "red" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Correo electrónico" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "No puede eliminar este grupo." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "No eliminar este usuario" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8344,68 +8733,95 @@ msgstr "" "Lo sentimos, pero geolocalizarte está tardando más de lo esperado. Por " "favor, inténtalo más tarde." -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Mensajes" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "E" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "W" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "en" -msgid "web" -msgstr "red" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "en contexto" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Repetido por" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Responder a este mensaje." +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Responder" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Borrar este mensaje" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Mensaje repetido" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "Actualiza tu estado." +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Dar un toque a este usuario" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Dar un toque a " -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Dar un toque a este usuario" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Error al insertar un nuevo perfil." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Error al insertar el avatar." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Error al insertar el perfil remoto." @@ -8413,18 +8829,51 @@ msgstr "Error al insertar el perfil remoto." msgid "Duplicate notice." msgstr "Mensaje duplicado." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "No se pudo insertar una nueva suscripción." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Perfil" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Perfil del grupo" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Respuestas" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Favoritos" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Usuario" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Mensajes" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Mensajes entrantes" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8448,30 +8897,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Configuración de SMS" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Cambia tus opciones de perfil" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Configuración de usuario" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "Cerrar sesión" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Cerrar sesión en el sitio" -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "Iniciar sesión en el sitio" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "Buscar" -msgid "Search the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Search the site." msgstr "Buscar en el sitio" #. TRANS: H2 text for user subscription statistics. @@ -8518,30 +8982,53 @@ msgstr "Todos los grupos" msgid "Unimplemented method." msgstr "Método no implementado." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grupos" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Grupos de usuario" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Etiquetas recientes" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Etiquetas recientes" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Destacado" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Popular" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "No hay respuesta a los argumentos." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Repetir este mensaje?" -msgid "Yes" -msgstr "Sí" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Repetir este mensaje." +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Revocar el rol \"%s\" de este usuario" @@ -8551,9 +9038,13 @@ msgstr "Revocar el rol \"%s\" de este usuario" msgid "Page not found." msgstr "Método de API no encontrado." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Restringir" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Imponer restricciones a este usuario" @@ -8571,128 +9062,276 @@ msgctxt "BUTTON" msgid "Search" msgstr "Buscar" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Gente" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Encontrar gente en este sitio" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Mensajes" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Buscar en el contenido de mensajes" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Encontrar grupos en este sitio" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "Ayuda" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Acerca de" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "Preguntas Frecuentes" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "TOS" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Privacidad" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Fuente" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Versión" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Ponerse en contacto" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Insignia" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Sección sin título" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Más..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Configuración de SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Cambia tus opciones de perfil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Imagen" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Subir una imagen." +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Contraseña" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Cambia tu contraseña" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Correo electrónico" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Cambiar el manejo del correo." +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Diseñar tu perfil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Actualizaciones por mensajería instantánea" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Actualizaciones por sms" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Conecciones" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Aplicaciones conectadas autorizadas" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Silenciar" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Silenciar a este usuario" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Suscripciones" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Personas a las que %s está suscrito" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Suscriptores" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Personas suscritas a %s" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "%s es miembro de los grupos" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "Invitar" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Invita a amigos y colegas a unirse a %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Suscribirse a este usuario" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Nube de etiquetas de personas auto-etiquetadas" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Nube de etiquetas de personas etiquetadas" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Ninguno" @@ -8701,18 +9340,26 @@ msgstr "Ninguno" msgid "Invalid theme name." msgstr "Nombre de archivo inválido." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "Este servidor no puede manejar cargas de temas sin soporte ZIP." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "El archivo de tema está perdido o la carga falló." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Grabado de tema errado." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Tema inválido: mala estructura de directorio." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, fuzzy, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8722,9 +9369,12 @@ msgstr[0] "" msgstr[1] "" "Tema subido es demasiado grande; debe ser menor que %d bytes sin comprimir." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Archivo de tema inválido: archivo perdido css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -8732,24 +9382,22 @@ msgstr "" "El tema contiene archivo o nombre de carpeta inválido. Restrínjase a letras " "ASCII, dígitos, carácter de subrayado, y signo menos." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" "El tema contiene nombres de extensiones de archivo inseguras y puede ser " "peligroso." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "El tema contiene archivo de tipo '.%s', que no está permitido." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Error al abrir archivo de tema." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Mensajes" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -8780,8 +9428,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Incluir este mensaje en tus favoritos" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Excluir este mensaje de mis favoritos" @@ -8793,8 +9442,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Ya has repetido este mensaje." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Este mensaje ya se ha repetido." @@ -8804,6 +9454,28 @@ msgstr[1] "Este mensaje ya se ha repetido." msgid "Top posters" msgstr "Principales posteadores" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Para" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Idioma desconocido \"%s\"." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8921,5 +9593,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Mensaje muy largo - máximo %1$d caracteres, enviaste %2$d" +#~ msgid "Couldn't update your design." +#~ msgstr "No fue posible actualizar tu diseño." diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 67cc7c6682..91fe6eb01a 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -2,6 +2,7 @@ # Exported from translatewiki.net # # Author: ArianHT +# Author: Bersam # Author: Brion # Author: Choxos # Author: Ebraminio @@ -17,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:47+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:49+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" @@ -27,12 +28,46 @@ 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 (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "ناشناخته" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "عمل نامعلوم" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "دسترسی" @@ -84,7 +119,9 @@ msgstr "ذخیرهٔ تنظیمات دسترسی" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -96,6 +133,7 @@ msgstr "ذخیره" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "چنین صفحه‌ای وجود ندارد." @@ -114,6 +152,7 @@ msgstr "چنین صفحه‌ای وجود ندارد." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -138,8 +177,11 @@ msgstr "چنین صفحه‌ای وجود ندارد." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "چنین کاربری وجود ندارد." @@ -152,7 +194,15 @@ msgstr "%1$s و دوستان، صفحهٔ %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s و دوستان" @@ -222,28 +272,14 @@ msgstr "شما و دوستان" msgid "Updates from %1$s and friends on %2$s!" msgstr "به روز رسانی از %1$s و دوستان در %2$s" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "رابط مورد نظر پیدا نشد." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -278,6 +314,7 @@ msgstr "نمی‌توان کاربر را به‌هنگام‌سازی کرد." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "کاربر هیچ نمایه‌ای ندارد." @@ -313,6 +350,8 @@ msgstr "نمی‌توان تنظیمات طرح‌تان را ذخیره کرد. #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "نمی‌توان طرح‌تان به‌هنگام‌سازی کرد." @@ -400,7 +439,6 @@ msgid "Recipient user not found." msgstr "کاربر گیرنده یافت نشد." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). -#, fuzzy msgid "Cannot send direct messages to users who aren't your friend." msgstr "نمی‌توان پیام مستقیم را به کاربرانی که دوست شما نیستند، فرستاد." @@ -501,7 +539,6 @@ msgstr "صفحهٔ خانگی یک نشانی معتبر نیست." #. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #. TRANS: Form validation error displayed when trying to register with a too long full name. -#, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "نام کامل خیلی طولانی است (حداکثر ۲۵۵ نویسه)." @@ -656,9 +693,8 @@ msgstr "لقب باید شامل حروف کوچک و اعداد و بدون ف #. TRANS: API validation exception thrown when alias is the same as nickname. #. TRANS: Group create form validation error. -#, fuzzy msgid "Alias cannot be the same as nickname." -msgstr "نام و نام مستعار شما نمی تواند یکی باشد ." +msgstr "نام و نام مستعار شما نمی‌تواند یکی باشد ." #. TRANS: Client error displayed when uploading a media file has failed. msgid "Upload failed." @@ -686,9 +722,12 @@ msgstr "شما شناسایی نشده اید." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "مشکلی در دریافت نشست شما وجود دارد. لطفا بعدا سعی کنید." @@ -752,7 +791,6 @@ msgstr "" "بدهید." #. TRANS: Fieldset legend. -#, fuzzy msgctxt "LEGEND" msgid "Account" msgstr "حساب کاربری" @@ -783,7 +821,6 @@ msgid "Cancel" msgstr "انصراف" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "اجازه دادن" @@ -805,15 +842,15 @@ msgid "The request token %s has been revoked." msgstr "نشانهٔ درخواست %s پذیرفته نشد و لغو شد." #. TRANS: Title of the page notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth. -#, fuzzy msgid "You have successfully authorized the application" -msgstr "شما شناسایی نشده اید." +msgstr "شما با موفقیت برنامه را تایید کردید." #. TRANS: Message notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth. msgid "" "Please return to the application and enter the following security code to " "complete the process." msgstr "" +"لطفا به نرم‌افزار بازگردید و برای تکمیل فرایند، کد امنیتی زیر را وارد کنید" #. TRANS: Title of the page notifying the user that the client application was successfully authorized to access the user's account with OAuth. #. TRANS: %s is the authorised application name. @@ -828,6 +865,7 @@ msgid "" "Please return to %s and enter the following security code to complete the " "process." msgstr "" +"لطفا به نرم‌افزار %s بازگردید و برای تکمیل فرایند، کد امنیتی زیر را وارد کنید" #. TRANS: Client error displayed trying to delete a status not using POST or DELETE. #. TRANS: POST and DELETE should not be translated. @@ -846,16 +884,6 @@ msgstr "شما توانایی حذف وضعیت کاربر دیگری را ند msgid "No such notice." msgstr "چنین پیامی وجود ندارد." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "نمی توانید پیام خود را تکرار کنید." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "قبلا آن پیام تکرار شده است." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -899,8 +927,11 @@ msgstr "پیام را پاک کن" msgid "Client must provide a 'status' parameter with a value." msgstr "" +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -913,6 +944,8 @@ msgstr "رابط مورد نظر پیدا نشد." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -982,6 +1015,8 @@ msgstr "%1$s به روز رسانی هایی که در پاسخ به $2$s / %3$s msgid "Repeats of %s" msgstr "تکرار %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "پیام شما را به برگزیده‌های خود اضافه کرد %s (@%s)" @@ -996,6 +1031,8 @@ msgstr "پیام‌هایی که با %s نشانه گزاری شده اند." #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "پیام‌های نشانه گزاری شده با %1$s در %2$s" @@ -1109,14 +1146,16 @@ msgstr "شما به سیستم وارد نشده اید." #. TRANS: Client error displayed when trying to approve or cancel a group join request without #. TRANS: being a group administrator. msgid "Only group admin can approve or cancel join requests." -msgstr "" +msgstr "فقط مدیر گروه می‌تواند که درخواست‌های عضویت را تایید یا لغو کند." #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "نمایه وجود ندارد." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1124,10 +1163,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "یک فهرست از کاربران در این گروه" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1146,11 +1187,39 @@ msgstr "وضعیت %1$s در %2$s" #. TRANS: Message on page for group admin after approving a join request. msgid "Join request approved." -msgstr "" +msgstr "درخواست عضویت تایید شد." #. TRANS: Message on page for group admin after rejecting a join request. msgid "Join request canceled." -msgstr "" +msgstr "درخواست عضویت لغو شد." + +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "یک فهرست از کاربران در این گروه" + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "نمی‌توان کاربر %1$s را عضو گروه %2$s کرد." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "وضعیت %1$s در %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "اشتراک تصدیق شد" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "تایید پیام‌رسان فوری لغو شد." #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. @@ -1192,7 +1261,7 @@ msgstr "افزودن به برگزیده‌ها" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "اعضای گروه %s" #. TRANS: Subtitle for group membership feed. @@ -1206,8 +1275,7 @@ msgstr "هست عضو %s گروه" msgid "Cannot add someone else's membership." msgstr "نمی‌توان اشتراک تازه‌ای افزود." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "پیدا کردن محتوای پیام‌ها" @@ -1223,7 +1291,7 @@ msgstr "همهٔ اعضا" #. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group. msgid "Blocked by admin." -msgstr "" +msgstr "توسط مدیر مسدود شده است." #. TRANS: Client exception thrown when referencing a non-existing favorite. #, fuzzy @@ -1327,6 +1395,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "کاربر نمایهٔ تطبیق ندارد." @@ -1353,6 +1422,7 @@ msgstr "پیش‌نمایش" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. #, fuzzy msgctxt "BUTTON" msgid "Delete" @@ -1399,7 +1469,7 @@ msgstr "چهره پاک شد." #. TRANS: Title for backup account page. #. TRANS: Option in profile settings to create a backup of the account of the currently logged in user. msgid "Backup account" -msgstr "" +msgstr "تهیه نسخهٔ پشتیبان از حساب کاربری" #. TRANS: Client exception thrown when trying to backup an account while not logged in. #, fuzzy @@ -1408,7 +1478,7 @@ msgstr "تنها کاربران وارد شده می توانند پیام‌ه #. TRANS: Client exception thrown when trying to backup an account without having backup rights. msgid "You may not backup your account." -msgstr "" +msgstr "شما نمی‌توانید از حساب کاربری خود نسخهٔ پشتیبان تهیه کنید." #. TRANS: Information displayed on the backup account page. msgid "" @@ -1426,7 +1496,7 @@ msgstr "پشتیبان‌گیری" #. TRANS: Title for submit button to backup an account on the backup account page. msgid "Backup your account." -msgstr "" +msgstr "از حساب کاربری خود نسخهٔ پشتیبان تهیه کنید." #. TRANS: Client error displayed when blocking a user that has already been blocked. msgid "You already blocked that user." @@ -1460,9 +1530,8 @@ msgid "No" msgstr "خیر" #. TRANS: Submit button title for 'No' when blocking a user. -#, fuzzy msgid "Do not block this user." -msgstr "کاربر را مسدود نکن" +msgstr "کاربر را مسدود نکن." #. TRANS: Button label on the user block form. #. TRANS: Button label on the delete application form. @@ -1470,12 +1539,12 @@ msgstr "کاربر را مسدود نکن" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "بله" #. TRANS: Submit button title for 'Yes' when blocking a user. -#, fuzzy msgid "Block this user." msgstr "کاربر را مسدود کن" @@ -1504,10 +1573,9 @@ msgid "Unblock user from group" msgstr "آزاد کردن کاربر در پیوستن به گروه" #. TRANS: Button text for unblocking a user from a group. -#, fuzzy msgctxt "BUTTON" msgid "Unblock" -msgstr "آزاد سازی" +msgstr "باز شود" #. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. @@ -1523,11 +1591,36 @@ msgstr "فرستادن به %s" #. TRANS: Title for leave group page after leaving. #. TRANS: %s$s is the leaving user's name, %2$s is the group name. #. TRANS: Title for leave group page after leaving. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s گروه %2$s را ترک کرد" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "شما به سیستم وارد نشده اید." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "هیچ شناسهٔ نمایه‌ای درخواست نشده است." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "کاربری با چنین شناسه‌ای وجود ندارد." + +#. TRANS: Title after unsubscribing from a group. +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "لغو اشتراک شده" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "بدون کد تصدیق." @@ -1594,14 +1687,12 @@ msgid "Notice" msgstr "پیام‌ها" #. TRANS: Client exception displayed trying to delete a user account while not logged in. -#, fuzzy msgid "Only logged-in users can delete their account." -msgstr "تنها کاربران وارد شده می توانند پیام‌ها را تکرار کنند." +msgstr "تنها کاربران وارد شده می توانند حساب کاربری خود را حذف کنند." #. TRANS: Client exception displayed trying to delete a user account without have the rights to do that. -#, fuzzy msgid "You cannot delete your account." -msgstr "شما نمی‌توانید کاربران را پاک کنید." +msgstr "شما نمی‌توانید حساب کاربری خود را حذف کنید." #. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation. msgid "I am sure." @@ -1611,7 +1702,7 @@ msgstr "من مطمئن هستم." #. TRANS: %s is the text that needs to be input. #, php-format msgid "You must write \"%s\" exactly in the box." -msgstr "" +msgstr "شما باید عبارت \"%s\" را در کادر بنویسید." #. TRANS: Confirmation that a user account has been deleted. msgid "Account deleted." @@ -1666,6 +1757,7 @@ msgstr "برنامه یافت نشد." msgid "You are not the owner of this application." msgstr "شما مالک این برنامه نیستید." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "یک مشکل با رمز نشست شما وجود داشت." @@ -1742,24 +1834,6 @@ msgstr "این پیام را پاک نکن" msgid "Delete this group." msgstr "حذف این کاربر" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "شما به سیستم وارد نشده اید." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1778,12 +1852,10 @@ msgid "Are you sure you want to delete this notice?" msgstr "آیا اطمینان دارید که می‌خواهید این پیام را پاک کنید؟" #. TRANS: Submit button title for 'No' when deleting a notice. -#, fuzzy msgid "Do not delete this notice." msgstr "این پیام را پاک نکن" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#, fuzzy msgid "Delete this notice." msgstr "این پیام را پاک کن" @@ -1796,7 +1868,6 @@ msgid "You can only delete local users." msgstr "شما فقط می‌توانید کاربران محلی را پاک کنید." #. TRANS: Title of delete user page. -#, fuzzy msgctxt "TITLE" msgid "Delete user" msgstr "حذف کاربر" @@ -1814,9 +1885,8 @@ msgstr "" "پاک و بدون برگشت خواهند بود." #. TRANS: Submit button title for 'No' when deleting a user. -#, fuzzy msgid "Do not delete this user." -msgstr "این پیام را پاک نکن" +msgstr "این کاربر را حذف نکن" #. TRANS: Submit button title for 'Yes' when deleting a user. msgid "Delete this user." @@ -1958,16 +2028,19 @@ msgid "Use defaults" msgstr "استفاده‌کردن از پیش‌فرض‌ها" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "بازگرداندن طرح‌های پیش‌فرض" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "برگشت به حالت پیش گزیده" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "ذخیره‌کردن طرح" @@ -2167,6 +2240,8 @@ msgid "" "To send notices via email, we need to create a unique email address for you " "on this server:" msgstr "" +"برای ارسال اطلاعیه‌ها از طریق ایمیل، ما نیاز داریم تا یک ایمیل منحصر به فرد " +"برای شما بر روی این سرور ایجاد کنیم." #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. @@ -2306,6 +2381,7 @@ msgstr "خارج‌کردن از برگزیده‌ها" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "پیام‌های برگزیده" @@ -2347,6 +2423,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "پیام‌های برگزیدهٔ %s" @@ -2359,6 +2437,7 @@ msgstr "پیام‌های دوست داشتنی %s در %s" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "کاربران ویژه" @@ -2420,6 +2499,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "خدمات مورد نظر از نسخهٔ نامفهومی از قرارداد OMB استفاده می‌کند." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "خطا هنگام به‌هنگام‌سازی نمایهٔ از راه دور." @@ -2457,14 +2537,6 @@ msgstr "کاربر از قبل این وظیفه را داشته است." msgid "No profile specified." msgstr "نمایه‌ای مشخص نشده است." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "کاربری با چنین شناسه‌ای وجود ندارد." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2593,7 +2665,7 @@ msgstr "یک فهرست از کاربران در این گروه" #. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. msgid "Only the group admin may approve users." -msgstr "" +msgstr "فقط مدیر گروه اجازه دارد تا عضویت کاربران را تایید کند." #. TRANS: Title of the first page showing pending group members still awaiting approval to join the group. #. TRANS: %s is the name of the group. @@ -2746,7 +2818,7 @@ msgstr "نشانی پیام‌رسان فوری" #. TRANS: Field title for IM address. %s is the IM service name. #, php-format msgid "%s screenname." -msgstr "" +msgstr "%s نام کاربری." #. TRANS: Header for IM preferences form. #, fuzzy @@ -2997,15 +3069,15 @@ msgstr "" "و کسانی که به شما توجه دارند، به‌روز بمانید.\n" "\n" "شما همچنین می‌توانید خبرهایی دربارهٔ خودتان، افکارتان و یا زندگی‌تان با کسانی " -"که شما را می‌شناسند، به صورت آنلاین به اشتراک بگذارید.همچنین این راهی خوب " +"که شما را می‌شناسند، به صورت آنلاین به اشتراک بگذارید. همچنین این راهی خوب " "برای ملاقات افراد تازه‌ای است که علاقه‌مندی‌هایتان را با آن‌ها به اشتراک " "می‌گذارید.\n" "\n" -"%1$sگفته است:\n" +"%1$s گفته‌است:\n" "\n" "%4$s\n" "\n" -"شما می‌توانید صفحهٔ نمایهٔ %1$s' را در %2$s این‌جا ببینید:\n" +"شما می‌توانید صفحهٔ نمایهٔ %1$s' را در %2$s اینجا ببینید:\n" "\n" "%5$s\n" "\n" @@ -3042,7 +3114,7 @@ msgstr "شما یک کاربر این گروه نیستید." #. TRANS: User admin panel title msgctxt "TITLE" msgid "License" -msgstr "" +msgstr "مجوز" #. TRANS: Form instructions for the site license admin panel. msgid "License for this StatusNet site" @@ -3057,6 +3129,8 @@ msgid "" "You must specify the owner of the content when using the All Rights Reserved " "license." msgstr "" +"هنگامی که شما از گزینه‌ی «تمام حقوق محفوظ است» استفاده می‌کنید، باید نام صاحب " +"اثر را مشخص کنید." #. TRANS: Client error displayed selecting a too long license title in the license admin panel. #, fuzzy @@ -3081,23 +3155,24 @@ msgstr "" #. TRANS: Form legend in the license admin panel. msgid "License selection" -msgstr "" +msgstr "انتخاب مجوز" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "خصوصی" #. TRANS: License option in the license admin panel. msgid "All Rights Reserved" -msgstr "" +msgstr "تمام حقوق محفوظ است." #. TRANS: License option in the license admin panel. msgid "Creative Commons" -msgstr "" +msgstr "کریتیو کامانز" #. TRANS: Dropdown field label in the license admin panel. msgid "Type" -msgstr "" +msgstr "نوع" #. TRANS: Dropdown field instructions in the license admin panel. #, fuzzy @@ -3110,7 +3185,7 @@ msgstr "" #. TRANS: Field label in the license admin panel. msgid "Owner" -msgstr "" +msgstr "صاحب" #. TRANS: Field title in the license admin panel. msgid "Name of the owner of the site's content (if applicable)." @@ -3118,7 +3193,7 @@ msgstr "" #. TRANS: Field label in the license admin panel. msgid "License Title" -msgstr "" +msgstr "عنوان مجوز" #. TRANS: Field title in the license admin panel. msgid "The title of the license." @@ -3321,6 +3396,9 @@ msgid "Ajax Error" msgstr "خطای آژاکس" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "پیام جدید" @@ -3629,7 +3707,6 @@ msgid "Password saved." msgstr "گذرواژه ذخیره شد." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "مسیر ها" @@ -3840,6 +3917,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "هیچ وقت" @@ -3999,16 +4077,21 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "خودتان و علاقه‌مندی‌هایتان را در %d نویسه توصیف کنید" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "خودتان و علاقه‌مندی‌هایتان را توصیف کنید" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4021,7 +4104,9 @@ msgid "Location" msgstr "موقعیت" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "مکانی که شما در آن هستید، مانند «شهر، ایالت (یا استان)، کشور»" #. TRANS: Checkbox label in form for profile settings. @@ -4029,6 +4114,9 @@ msgid "Share my current location when posting notices" msgstr "مکان کنونی من هنگام فرستادن پیام‌ها به اشتراک گذاشته شود" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "برچسب‌ها" @@ -4064,6 +4152,27 @@ msgid "" msgstr "" "به صورت خودکار مشترک هر کسی بشو که مشترک من می‌شود (بهترین برای غیر انسان‌ها)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "اشتراک‌ها" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "به همه اجازه دهید تا من را دنبال کند." + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "اول از من بپرس" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4095,7 +4204,7 @@ msgstr "نشان نادرست »%s«" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "نمی‌توان کاربر را برای اشتراک خودکار به‌هنگام‌سازی کرد." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4104,6 +4213,7 @@ msgid "Could not save location prefs." msgstr "نمی‌توان تنظیمات مکانی را تنظیم کرد." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "نمی‌توان برچسب‌ها را ذخیره کرد." @@ -4135,6 +4245,7 @@ msgid "Public timeline, page %d" msgstr "خط‌زمانی عمومی، صفحهٔ %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "خط‌زمانی عمومی" @@ -4316,10 +4427,6 @@ msgstr "بازیابی گذرواژه درخواست شد" msgid "Password saved" msgstr "گذرواژه ذخیره شد." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "عمل نامعلوم" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4416,6 +4523,7 @@ msgstr "اجازهٔ ثبت‌نام داده نشده است." msgid "You cannot register if you do not agree to the license." msgstr "شما نمی توانید ثبت نام کنید اگر با لیسانس( جواز ) موافقت نکنید." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "نشانی پست الکترونیکی از قبل وجود دارد." @@ -4454,25 +4562,7 @@ msgstr "تنها برای به‌هنگام‌سازی‌ها، اعلامیه msgid "Longer name, preferably your \"real\" name." msgstr "نام بلند تر، به طور بهتر نام واقعیتان" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, 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: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "خودتان و علاقه‌مندی‌هایتان را توصیف کنید" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "مکانی که شما در آن هستید، مانند «شهر، ایالت (یا استان)، کشور»" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4529,7 +4619,7 @@ msgid "" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -"به شما تبریک می‌گوییم، %1$s! و به %%%%site.name%%%% خوش آمدید. از این‌جا، شما " +"به شما تبریک می‌گوییم، %1$s! و به %%%%site.name%%%% خوش آمدید. از اینجا، شما " "ممکن است بخواهید...\n" "\n" "* به [نمایه‌تان](%2$s) بروید و اولین پیام‌تان را بفرستید.\n" @@ -4592,6 +4682,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "نشانی اینترنتی نمایهٔ شما در سرویس میکروبلاگینگ سازگار دیگری" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4628,16 +4720,8 @@ msgstr "تنها کاربران وارد شده می توانند پیام‌ه msgid "No notice specified." msgstr "هیچ پیامی مشخص نشده است." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "شما نمی‌توانید پیام خودتان را تکرار کنید." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "شما قبلا آن پیام را تکرار کرده‌اید." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "تکرار شده" @@ -4648,6 +4732,8 @@ msgstr "تکرار شد!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "پاسخ‌های به %s" @@ -4759,6 +4845,7 @@ msgid "System error uploading file." msgstr "هنگام بارگذاری پرونده خطای سیستمی رخ داد." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "همهٔ اعضا" @@ -4799,6 +4886,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. #, fuzzy msgid "You cannot sandbox users on this site." msgstr "شما نمی توانید کاربری را در این سایت ساکت کنید." @@ -4997,6 +5085,8 @@ msgstr "اعضا" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "هیچ" @@ -5082,6 +5172,11 @@ msgstr "پیام به %1$s در %2$s" msgid "Message from %1$s on %2$s" msgstr "پیام از %1$s در %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "پیام‌رسان فوری در دسترس نیست." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "پیام پاک شد." @@ -5089,20 +5184,20 @@ msgstr "پیام پاک شد." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %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, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "پیام‌های برچسب‌دار شده با %1$s، صفحهٔ %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s، صفحهٔ %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "پیام‌های برچسب‌دار شده با %1$s، صفحهٔ %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5190,6 +5285,7 @@ msgid "Repeat of %s" msgstr "تکرار %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "شما نمی توانید کاربری را در این سایت ساکت کنید." @@ -5480,7 +5576,7 @@ msgid "" "email but isn't listed here, send email to let us know at %s." msgstr "" "اپراتور موبایل برای گوشی شما. اگر شما اپراتوری را می‌شناسید که از پیامک از " -"راه پست الکترونیک پشتیبانی می‌کند، اما این‌جا فهرست نشده است، در %s نامه " +"راه پست الکترونیک پشتیبانی می‌کند، اما اینجا فهرست نشده است، در %s نامه " "بفرستید تا ما باخبر شویم." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. @@ -5488,52 +5584,72 @@ msgstr "" msgid "No code entered." msgstr "کدی وارد نشد" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "تصاویر لحظه‌ای" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "مدیریت پیکربندی تصویر لحظه‌ای" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "مقدار اجرای تصویر لحظه‌ای نامعتبر است." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "تناوب تصویر لحظه‌ای باید یک عدد باشد." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "نشانی اینترنتی گزارش تصویر لحظه‌ای نامعتبر است." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "تصاویر لحظه‌ای" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "در یک وظیفهٔ برنامه‌ریزی‌شده" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "داده‌های تصاویر لحظه‌ای" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "زمان فرستادن داده‌های آماری به کارگزارهای status.net" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "فرکانس" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. #, fuzzy -msgid "Snapshots will be sent once every N web hits" +msgid "Snapshots will be sent once every N web hits." msgstr "تصاویر لحظه‌ای به این نشانی اینترنتی فرستاده می‌شوند" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "نشانی اینترنتی گزارش" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "تصاویر لحظه‌ای به این نشانی اینترنتی فرستاده می‌شوند" -#. TRANS: Submit button title. -msgid "Save" -msgstr "ذخیره‌کردن" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "ذخیرهٔ تنظیمات تصویر لحظه‌ای" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5545,6 +5661,27 @@ msgstr "شما مشترک آن نمایه نیستید." msgid "Could not save subscription." msgstr "نمی‌توان اشتراک را ذخیره کرد." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "اعضای گروه %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "اعضای گروه %1$s، صفحهٔ %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "یک فهرست از کاربران در این گروه" + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "نمی‌توان با این کار مشترک یک نمایهٔ از راه دور OMB 0.1شد." @@ -5638,7 +5775,7 @@ msgstr "" "اعضای گروه‌هایی را که به آن‌ها علاقه دارید و یا [کاربران برجسته](%%action." "featured%%) را جست‌وجو کنید. اگر شما یک [کاربر توییتر](%%action." "twittersettings%%) هستید، شما می‌توانید به‌صورت خودکار مشترک افرادی شوید که " -"اکنون آن‌جا آن‌ها را دنبال می‌کنید." +"اکنون آنجا آن‌ها را دنبال می‌کنید." #. TRANS: Subscription list text when looking at the subscriptions for a of a user other #. TRANS: than the logged in user that has no subscriptions. %s is the user nickname. @@ -5667,32 +5804,44 @@ msgstr "پیامک" msgid "Notices tagged with %1$s, page %2$d" msgstr "پیام‌های برچسب‌دار شده با %1$s، صفحهٔ %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "خوراک پیام برای برچسب %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "خوراک پیام برای برچسب %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "خوراک پیام برای برچسب %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. #, fuzzy msgid "No ID argument." msgstr "هیچ پیوستی وجود ندارد." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "برچسب %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "نمایهٔ کاربر" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "برچسب‌گذاری کاربر" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5700,15 +5849,24 @@ msgid "" msgstr "" "برچسب‌ها برای این کاربر (حروف، اعداد، -، .، و _)، جدا شده با کاما- یا فاصله-" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "شما تنها می‌توانید افرادی را برچسب‌دار کنید که مشترک آن‌ها هستید یا آن‌ها مشترک " "شما هستند." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "برچسب‌ها" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "از این روش برای افزودن برچسب به مشترک‌ها یا اشتراک‌هایتان استفاده کنید." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "چنین برچسبی وجود ندارد." @@ -5716,24 +5874,30 @@ msgstr "چنین برچسبی وجود ندارد." msgid "You haven't blocked that user." msgstr "شما آن کاربر را مسدود نکرده اید." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. #, fuzzy msgid "User is not sandboxed." msgstr "کاربر ساکت نشده است." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "کاربر ساکت نشده است." -msgid "No profile ID in request." -msgstr "هیچ شناسهٔ نمایه‌ای درخواست نشده است." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "لغو اشتراک شده" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "مجوز پیام «%1$s» با مجوز وب‌گاه «%2$s» سازگار نیست." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "تنظیمات پیام‌رسان فوری" @@ -5748,9 +5912,11 @@ msgstr "مدیریت انتخاب های مختلف دیگر." msgid " (free service)" msgstr " (سرویس‌ آزاد)" +#. TRANS: Default value for URL shortening settings. msgid "[none]" msgstr "[هیچ]" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5762,15 +5928,19 @@ msgstr "کوتاه‌کردن نشانی‌های اینترنتی با" msgid "Automatic shortening service to use." msgstr "کوتاه‌کنندهٔ نشانی مورد استفاده." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5780,17 +5950,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "کوتاه کنندهٔ نشانی بسیار طولانی است (بیش‌تر از ۵۰ حرف)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "محتوای پیام نامعتبر است." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "محتوای پیام نامعتبر است." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "کاربر" @@ -5814,6 +5988,9 @@ msgstr "متن خوشامدگویی نامعتبر است. بیشینهٔ طول msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "اشتراک پیش‌فرض نامعتبر است: «%1$s» کاربر نیست." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "نمایه" @@ -5867,7 +6044,7 @@ msgstr "ذخیرهٔ تنظیمات وب‌گاه" msgid "Authorize subscription" msgstr "تصدیق اشتراک" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5880,18 +6057,21 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" msgstr "پذیرفتن" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "مشترک شدن این کاربر" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5910,9 +6090,10 @@ msgstr "هیچ درخواست اجازه‌ای وجود ندارد!" msgid "Subscription authorized" msgstr "اشتراک تصدیق شد" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" @@ -5920,9 +6101,10 @@ msgstr "" msgid "Subscription rejected" msgstr "اشتراک پذیرفته نشد" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" @@ -5950,14 +6132,6 @@ msgstr "نشانی اینترنتی نمایهٔ «%s» برای یک کاربر msgid "Profile URL \"%s\" is for a local user." msgstr "نشانی اینترنتی نمایهٔ «%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. -#, 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. #, fuzzy, php-format @@ -6064,7 +6238,6 @@ msgid "Contributors" msgstr "مشارکت‌کنندگان" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "مجوز" @@ -6101,7 +6274,6 @@ msgstr "" "برنامه دریافت کرده باشید. اگر چنین نیست، %s را ببینید." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "افزونه‌ها" @@ -6183,18 +6355,6 @@ msgstr[0] "" msgid "Invalid filename." msgstr "نام‌پرونده نادرست است." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "پیوستن به گروه شکست خورد." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "بخشی از گروه نیست." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "ترک کردن گروه شکست خورد." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6207,6 +6367,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "هنگام ذخیرهٔ کاربر خطا رخ داد؛ نامعتبر است." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "پیوستن به گروه شکست خورد." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "بخشی از گروه نیست." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "ترک کردن گروه شکست خورد." + #. TRANS: Activity title. msgid "Join" msgstr "مشارکت کردن" @@ -6282,6 +6454,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "شما از فرستادن پیام در این وب‌گاه منع شده‌اید." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "نمی توانید پیام خود را تکرار کنید." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "شما نمی‌توانید پیام خودتان را تکرار کنید." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "نمی توانید پیام خود را تکرار کنید." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "نمی توانید پیام خود را تکرار کنید." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "شما قبلا آن پیام را تکرار کرده‌اید." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "کاربر آگهی آخر ندارد" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6307,16 +6509,13 @@ msgstr "نمی‌توان اطلاعات گروه محلی را ذخیره کر msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6340,6 +6539,7 @@ msgid "Unable to save tag." msgstr "نمی‌توان پیام وب‌گاه را ذخیره کرد." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "شما از اشتراک منع شده‌اید." @@ -6367,9 +6567,11 @@ msgstr "نمی‌توان اشتراک را ذخیره کرد." msgid "Could not delete subscription." msgstr "نمی‌توان اشتراک را ذخیره کرد." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "اجازه دادن" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6436,18 +6638,24 @@ msgid "User deletion in progress..." msgstr "پاک‌کردن کاربر در حالت اجرا است..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "ویرایش تنظیمات نمایه" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "ویرایش" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "پیام مستقیم به این کاربر بفرستید" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "پیام" @@ -6469,10 +6677,6 @@ msgctxt "role" msgid "Moderator" msgstr "مدیر" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "اشتراک" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6498,7 +6702,9 @@ msgstr "پاسخ" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6618,8 +6824,9 @@ msgstr "" msgid "No content for notice %s." msgstr "پیدا کردن محتوای پیام‌ها" -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "چنین کاربری وجود ندارد %s." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6666,76 +6873,128 @@ msgstr "saveSettings() پیاده نشده است." msgid "Unable to delete design setting." msgstr "نمی توان تنظیمات طراحی شده را پاک کرد ." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "خانه" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "خانه" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "مدیر" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "پیکربندی اولیه وب‌گاه" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "وب‌گاه" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "پیکربندی طرح" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "طرح" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "پیکربندی کاربر" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "کاربر" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "پیکربندی دسترسی" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "دسترسی" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "پیکربندی مسیرها" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "مسیر ها" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "پیکربندی نشست‌ها" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "Sessions" msgstr "نشست‌ها" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "ویرایش پیام وب‌گاه" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "پیام وب‌گاه" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "پیکربندی تصاویر لحظه‌ای" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Snapshots" +msgstr "تصاویر لحظه‌ای" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "مجوز" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "پیکربندی مسیرها" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "افزونه‌ها" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6746,6 +7005,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6782,9 +7042,11 @@ msgstr "" msgid "Could not issue access token." msgstr "پیغام نمی تواند درج گردد" +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "هنگام افزودن کاربر برنامهٔ OAuth در پایگاه داده خطایی رخ داد." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "هنگام افزودن کاربر برنامهٔ OAuth در پایگاه داده خطایی رخ داد." @@ -6877,6 +7139,17 @@ msgstr "دسترسی پیش‌فرض برای این برنامه: تنها خو msgid "Cancel" msgstr "انصراف" +#. TRANS: Submit button title. +msgid "Save" +msgstr "ذخیره‌کردن" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "عمل نامعلوم" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -6899,11 +7172,12 @@ msgstr "تایید شده %1$s - با دسترسی «%2$s»" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "لغو کردن" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -6914,7 +7188,7 @@ msgstr "این پیام را پاک نکن" #. TRANS: Title. msgid "Notices where this attachment appears" -msgstr "پیام‌هایی که این پیوست در آن‌جا ظاهر می‌شود" +msgstr "پیام‌هایی که این پیوست در آنجا ظاهر می‌شود" #. TRANS: Title. msgid "Tags for this attachment" @@ -6943,6 +7217,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "تمام اشتراک‌ها" + #. TRANS: Title for command results. msgid "Command results" msgstr "نتیجه دستور" @@ -6953,6 +7233,7 @@ msgid "AJAX error" msgstr "خطای آژاکس" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "دستور انجام شد" @@ -7074,6 +7355,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7095,10 +7378,6 @@ msgstr "خطا در فرستادن پیام مستقیم." msgid "Notice from %s repeated." msgstr "پیام %s تکرار شد." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "هنگام تکرار پیام خطایی رخ داد." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7402,13 +7681,19 @@ msgstr "شما ممکن است بخواهید نصاب را اجرا کنید ت msgid "Go to the installer." msgstr "برو به نصاب." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "خطای پایگاه داده" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "عمومی" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "حذف" @@ -7416,6 +7701,7 @@ msgstr "حذف" msgid "Delete this user" msgstr "حذف این کاربر" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "ذخیره‌کردن طرح" @@ -7428,23 +7714,14 @@ msgstr "تغییر رنگ‌ها" msgid "Use defaults" msgstr "استفاده‌کردن از پیش‌فرض‌ها" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "بازگرداندن طرح‌های پیش‌فرض" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "برگشت به حالت پیش گزیده" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "بارگذاری پرونده" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "شما می‌توانید تصویر پیش‌زمینهٔ شخصی خود را بارگذاری کنید. بیشینهٔ اندازهٔ پرونده " "۲ مگابایت است." @@ -7461,15 +7738,6 @@ msgctxt "RADIO" msgid "Off" msgstr "خاموش" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "نمی‌توان ظاهر را به روز کرد." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "پیش‌فرض‌های طراحی برگردانده شدند." @@ -7501,48 +7769,62 @@ msgctxt "BUTTON" msgid "Favor" msgstr "برگزیده‌کردن" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "" +#. TRANS: Feed type name. #, fuzzy msgid "Atom" msgstr "مؤلف" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "" -#, fuzzy -msgid "Not an atom feed." -msgstr "همهٔ اعضا" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "همه" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "برچسب را برای پالودن انتخاب کنید" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "برچسب" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "یک برچسب را برای محدود کردن فهرست انتخاب کنید" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "برو" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "" @@ -7601,9 +7883,11 @@ msgstr[0] "" msgid "Membership policy" msgstr "عضو شده از" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7669,6 +7953,7 @@ msgid "%s blocked users" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "مدیر" @@ -7767,23 +8052,46 @@ msgid "%dB" msgid_plural "%dB" msgstr[0] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "منبع صندوق ورودی نامعلوم است %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "مشارکت کردن" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "ترک کردن" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "ورود" @@ -7845,6 +8153,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s اکنون پیام‌های شما را در %2$s دنبال می‌کند." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s اکنون پیام‌های شما را در %2$s دنبال می‌کند." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -7990,7 +8312,7 @@ msgstr "" "%3$s\n" "------------------------------------------------------\n" "\n" -"شما می‌توانید این‌جا به پیام‌شان پاسخ دهید:\n" +"شما می‌توانید اینجا به پیام‌شان پاسخ دهید:\n" "\n" "%4$s\n" "\n" @@ -8040,7 +8362,7 @@ msgstr "" "\n" "است.\n" "\n" -"شما می‌توانید فهرست برگزیده‌های %1$s را این‌جا ببینید:\n" +"شما می‌توانید فهرست برگزیده‌های %1$s را اینجا ببینید:\n" "\n" "%5$s\n" "\n" @@ -8054,7 +8376,7 @@ msgid "" "\n" "\t%s" msgstr "" -"گفت‌وگوی کامل می‌تواند این‌جا خوانده شود:\n" +"گفت‌وگوی کامل می‌تواند اینجا خوانده شود:\n" "\n" "\t\t%s" @@ -8089,28 +8411,28 @@ msgid "" "\n" "%7$s" msgstr "" -"%1$s (@%9$s) یک پاسخ به پیام شما (یک «@-پاسخ») در %2$s داده است.\n" +"%1$s (@%9$s) یک پاسخ به پیام شما (یک «@-پاسخ») در %2$s داده‌است.\n" "\n" "پیام این است:\n" "\n" "\t%3$s\n" "\n" -"پاسخ داده است:\n" +"پاسخ داده‌است:\n" "\n" "\t%4$s\n" "\n" -"%5$sشما می‌توانید این‌جا پاسخ دهید:\n" +"%5$sشما می‌توانید اینجا پاسخ دهید:\n" "\n" "\t%6$s\n" "\n" -"فهرست تمام @-پاسخ‌ها برای شما این‌جا است:\n" +"فهرست تمام @-پاسخ‌ها برای شما اینجا است:\n" "\n" "%7$s\n" "\n" "با تشکر،\n" "%2$s\n" "\n" -"پ.ن. شما می‌توانید این آگاه‌سازی با نامه را این‌جا خاموش کنید:%8$s\n" +"پ.ن. شما می‌توانید این آگاه‌سازی با نامه را اینجا خاموش کنید:%8$s\n" #. TRANS: Subject of group join notification e-mail. #. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. @@ -8137,40 +8459,58 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "تنها کاربران می تواند صندوق نامهٔ خودشان را بخوانند." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." msgstr "" +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "صندوق دریافتی" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "پیام های وارد شونده ی شما" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "صندوق خروجی" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "پیام‌های فرستاده شدهٔ شما" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "نمی‌توان پیام را تجزیه کرد." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "یک کاربر ثبت نام شده نیستید" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "با عرض پوزش، این پست الکترونیک شما نیست." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "با عرض پوزش، اجازه‌ی ورودی پست الکترونیک وجود ندارد" -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "نوع پیام پشتیبانی نشده است: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8221,10 +8561,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "فرستادن یک پیام مستقیم" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "یک اپراتور را انتخاب کنید" @@ -8234,32 +8577,67 @@ msgstr "یک اپراتور را انتخاب کنید" msgid "No mutual subscribers." msgstr "تایید نشده!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "به" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "فرستادن" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "پیام" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "از" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +msgctxt "SOURCE" +msgid "web" msgstr "" +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "پست الکترونیکی" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "شما یک عضو این گروه نیستید." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "این پیام را پاک نکن" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8306,69 +8684,96 @@ msgstr "" "متاسفیم، دریافت محل جغرافیایی شما بیش از انتظار طول کشیده است، لطفا بعدا " "دوباره تلاش کنید." -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "پیام‌ها" + +#. TRANS: Used in coordinates as abbreviation of north. #, fuzzy msgid "N" msgstr "خیر" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" +#. TRANS: Followed by geo location. msgid "at" msgstr "در" -msgid "web" -msgstr "" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "در زمینه" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "تکرار از" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "به این پیام پاسخ دهید" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "پاسخ" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "این پیام را پاک کن" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "پیام تکرار شد" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "یادآوری‌کردن به این کاربر" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "یادآوری‌کردن" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "یک یادآوری به این کاربر فرستاده شود" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8376,19 +8781,52 @@ msgstr "" msgid "Duplicate notice." msgstr "" -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "نمی‌توان اشتراک تازه‌ای افزود." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "نمایه" + +#. TRANS: Menu item title in personal group navigation menu. #, fuzzy msgid "Your profile" msgstr "نمایهٔ گروه" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "پاسخ ها" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "برگزیده‌ها" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "کاربر" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "پیام" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "پیام های وارد شونده ی شما" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8412,32 +8850,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. #, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "تنظیمات پیامک" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "تنظیمات نمایه‌تان را تغییر دهید" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "پیکربندی کاربر" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "خروج" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "خارج شدن از سایت ." -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "ورود به وب‌گاه" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "جست‌وجو" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "جست‌وجوی وب‌گاه" #. TRANS: H2 text for user subscription statistics. @@ -8484,31 +8935,54 @@ msgstr "تمام گروه‌ها" msgid "Unimplemented method." msgstr "روش پیاده نشده است." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "گروه‌ها" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "گروه‌های کاربر" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "برچسب‌های اخیر" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "برچسب‌های اخیر" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "خصوصیت" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "محبوب" +#. TRANS: Client error displayed when return-to was defined without a target. #, fuzzy msgid "No return-to arguments." msgstr "هیچ پیوستی وجود ندارد." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "این پیام تکرار شود؟" -msgid "Yes" -msgstr "بله" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "تکرار این پیام" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "دسترسی کاربر به گروه مسدود شود" @@ -8518,10 +8992,13 @@ msgstr "دسترسی کاربر به گروه مسدود شود" msgid "Page not found." msgstr "رابط مورد نظر پیدا نشد." +#. TRANS: Title of form to sandbox a user. #, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "صندوق دریافتی" +#. TRANS: Description of form to sandbox a user. #, fuzzy msgid "Sandbox this user" msgstr "آزاد سازی کاربر" @@ -8540,128 +9017,276 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "افراد" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "پیدا کردن افراد در این وب‌گاه" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "پیام‌ها" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "پیدا کردن محتوای پیام‌ها" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "پیدا کردن گروه‌ها در این وب‌گاه" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "کمک" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "دربارهٔ" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "سوال‌های رایج" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "شرایط سرویس" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "خصوصی" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "منبع" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "نسخه" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "تماس" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "نشان" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "بخش بی‌نام" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "بیش‌تر..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "تنظیمات پیامک" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "تنظیمات نمایه‌تان را تغییر دهید" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "چهره" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "بارگذاری یک چهره" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "گذرواژه" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "تغییر گذرواژهٔ شما" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "پست الکترونیکی" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "تغیر تنظیمات ایمل ." +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "نمایهٔ خود را طراحی کنید" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "نشانی اینترنتی" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "پیام‌رسان فوری" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "به‌هنگام‌سازی‌های انجام‌شده با پیام‌رسان فوری (IM)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "پیامک" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "به‌روزرسانی با پیامک" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "اتصال‌ها" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "برنامه‌های وصل‌شدهٔ مجاز" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "ساکت کردن" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "ساکت کردن این کاربر" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "اشتراک‌ها" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, fuzzy, php-format -msgid "People %s subscribes to" +msgid "People %s subscribes to." msgstr "افراد مشترک %s" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "مشترک‌ها" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "افراد مشترک %s" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "هست عضو %s گروه" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "دعوت‌کردن" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "به شما ملحق شوند %s دوستان و همکاران را دعوت کنید تا در" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "مشترک شدن این کاربر" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "هیچ" @@ -8670,50 +9295,57 @@ msgstr "هیچ" msgid "Invalid theme name." msgstr "نام‌پرونده نادرست است." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "" +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. #, fuzzy msgid "Failed saving theme." msgstr "به روز رسانی چهره موفقیت آمیر نبود." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" "Uploaded theme is too large; must be less than %d bytes uncompressed." msgstr[0] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. #, fuzzy msgid "Error opening theme archive." msgstr "خطا هنگام به‌هنگام‌سازی نمایهٔ از راه دور." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "پیام‌ها" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -8743,8 +9375,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "برگزیده‌کردن این پیام" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "خارج‌کردن این پیام از برگزیده‌ها" @@ -8755,8 +9388,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "شما قبلا آن پیام را تکرار کرده‌اید." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "قبلا آن پیام تکرار شده است." @@ -8765,6 +9399,28 @@ msgstr[0] "قبلا آن پیام تکرار شده است." msgid "Top posters" msgstr "اعلان های بالا" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "به" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "زبان «%s» ناشناس است." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8880,7 +9536,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "" -#~ "پیام خیلی طولانی است - حداکثر تعداد مجاز %1$d نویسه است که شما %2$d نویسه " -#~ "را فرستادید." +#~ msgid "Couldn't update your design." +#~ msgstr "نمی‌توان ظاهر را به روز کرد." diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 77452be725..74600b27ad 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -16,20 +16,54 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:48+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:51+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Tuntematon toiminto" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Tuntematon toiminto" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Käyttöoikeudet" @@ -82,7 +116,9 @@ msgstr "Tallenna käyttöoikeusasetukset" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -94,6 +130,7 @@ msgstr "Tallenna" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Sivua ei ole." @@ -112,6 +149,7 @@ msgstr "Sivua ei ole." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -136,8 +174,11 @@ msgstr "Sivua ei ole." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Käyttäjää ei ole." @@ -150,7 +191,15 @@ msgstr "%1$s ja kaverit, sivu %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s ja kaverit" @@ -220,28 +269,14 @@ msgstr "Sinä ja kaverisi" msgid "Updates from %1$s and friends on %2$s!" msgstr "Käyttäjän %1$s ja kavereiden päivitykset palvelussa %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API-metodia ei löytynyt." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -276,6 +311,7 @@ msgstr "Käyttäjän päivitys epäonnistui." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Käyttäjällä ei ole profiilia." @@ -311,6 +347,8 @@ msgstr "Ulkoasun tallennus epäonnistui." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Ulkoasua ei voitu päivittää." @@ -683,9 +721,12 @@ msgstr "Pyyntötunniste on jo hyväksytty." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" "Istuntosi avaimen kanssa oli ongelmia. Olisitko ystävällinen ja kokeilisit " @@ -841,16 +882,6 @@ msgstr "Et voi poistaa toisen käyttäjän päivitystä." msgid "No such notice." msgstr "Päivitystä ei ole." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Et voi lähettää uudelleen omaa viestiäsi." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Tätä päivitystä ei voi poistaa." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -892,8 +923,11 @@ msgstr "Poistettiin päivitys %d" msgid "Client must provide a 'status' parameter with a value." msgstr "Asiakasohjelman on annettava 'status'-parametri arvoineen." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -906,6 +940,8 @@ msgstr "Viestiä, johon vastataan, ei löytynyt." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -977,6 +1013,8 @@ msgstr "" msgid "Repeats of %s" msgstr "Toistot käyttäjältä %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "Lähetä sähköpostia, jos joku lisää päivitykseni suosikiksi." @@ -991,6 +1029,8 @@ msgstr "Päivitykset joilla on tagi %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Käyttäjän %1$s suosikit palvelussa %2$s!" @@ -1105,11 +1145,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Käyttäjällä ei ole profiilia." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1117,10 +1159,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Lista ryhmän käyttäjistä." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1145,6 +1189,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Lista ryhmän käyttäjistä." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Käyttäjä %1$s ei voinut liittyä ryhmään %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Käyttäjän %1$s päivitys %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Tilaus sallittu" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Hyväksyminen peruttiin." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1180,9 +1252,9 @@ msgstr "Tämä päivitys on jo suosikkina." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" -msgstr "%s ryhmien jäsenyydet" +#, fuzzy, php-format +msgid "Group memberships of %s" +msgstr "Käyttäjän %s ryhmäjäsenyydet" #. TRANS: Subtitle for group membership feed. #. TRANS: %1$s is a username, %2$s is the StatusNet sitename. @@ -1194,8 +1266,7 @@ msgstr "Ryhmät, joiden jäsen %1$s on palvelimella %2$s" msgid "Cannot add someone else's membership." msgstr "Ei voi lisätä toista jäseneksi." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "Vain liittymistoimintoja tuetaan." @@ -1307,6 +1378,7 @@ msgstr "Voit ladata oman profiilikuvasi. Maksimikoko on %s." #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Käyttäjällä ei ole profiilia." @@ -1333,6 +1405,7 @@ msgstr "Esikatselu" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Poista" @@ -1449,6 +1522,7 @@ msgstr "Älä estä tätä käyttäjää." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Kyllä" @@ -1505,6 +1579,32 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "Käyttäjän %1$s päivitys %2$s" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Et ole kirjautunut sisään." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Ei profiilia tuolle ID:lle." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Ei profiilia tuolle ID:lle." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Tilaus lopetettu" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Varmistuskoodia ei ole annettu." @@ -1643,6 +1743,7 @@ msgstr "Vahvistuskoodia ei löytynyt." msgid "You are not the owner of this application." msgstr "Et ole tämän sovelluksen omistaja." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Istuntoavaimesi kanssa oli ongelma." @@ -1713,24 +1814,6 @@ msgstr "Älä poista tätä ryhmää." msgid "Delete this group." msgstr "Poista tämä ryhmä." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Et ole kirjautunut sisään." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1917,14 +2000,17 @@ msgid "Use defaults" msgstr "Käytä oletusasetuksia" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." msgstr "Palauta oletusulkonäkö." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "Palauta oletusulkoasu." #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." msgstr "Tallenna ulkoasu." @@ -2256,6 +2342,7 @@ msgstr "Poista suosikeista." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Suosituimmat päivitykset" @@ -2293,6 +2380,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Käyttäjän %s suosikkipäivitykset" @@ -2305,6 +2394,7 @@ msgstr "Käyttäjän %1$s suosikit palvelussa %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Esittelyssä olevat käyttäjät" @@ -2366,6 +2456,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Etäpalvelu käyttää tuntematonta OMB-protokollan versiota." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Virhe tapahtui päivitettäessä etäprofiilia." @@ -2403,14 +2494,6 @@ msgstr "Käyttäjällä ei ole profiilia." msgid "No profile specified." msgstr "Profiilia ei ole määritelty." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Ei profiilia tuolle ID:lle." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3018,6 +3101,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. #, fuzzy msgid "Private" msgstr "Yksityisyys" @@ -3264,6 +3348,9 @@ msgid "Ajax Error" msgstr "Ajax-virhe" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Uusi päivitys" @@ -3578,7 +3665,6 @@ msgid "Password saved." msgstr "Salasana tallennettu." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Polut" @@ -3789,6 +3875,7 @@ msgid "SSL" msgstr "SMS" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. #, fuzzy msgid "Never" msgstr "Palauta" @@ -3813,7 +3900,7 @@ msgstr "" #. TRANS: Tooltip for field label in Paths admin panel. msgid "Server to direct SSL requests to." -msgstr "Palvelin jolle SSL pyynnöt lähetetään." +msgstr "Palvelin jolle SSL-pyynnöt lähetetään." #. TRANS: Button title text to store form data in the Paths admin panel. msgid "Save paths" @@ -3842,7 +3929,7 @@ msgstr "Tuo ei ole kelvollinen sähköpostiosoite." #. TRANS: Page title for users with a certain self-tag. #. TRANS: %1$s is the tag, %2$s is the page number. -#, php-format +#, fuzzy, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "Käyttäjät joilla on henkilötagi %1$s - sivu %2$d" @@ -3860,7 +3947,7 @@ msgstr "Tämä toiminto hyväksyy vain POST-pyyntöjä." #. TRANS: Client error displayed when trying to enable or disable a plugin without access rights. msgid "You cannot administer plugins." -msgstr "Et voi hallinnoida lisäosia." +msgstr "Et voi hallinnoida liitännäisiä." #. TRANS: Client error displayed when trying to enable or disable a non-existing plugin. msgid "No such plugin." @@ -3874,7 +3961,7 @@ msgstr "Käytössä" #. TRANS: Tab and title for plugins admin panel. msgctxt "TITLE" msgid "Plugins" -msgstr "Laajennukset" +msgstr "Liitännäiset" #. TRANS: Instructions at top of plugin admin page. msgid "" @@ -3882,20 +3969,19 @@ msgid "" "\"http://status.net/wiki/Plugins\">online plugin documentation for more " "details." msgstr "" -"Muita lisäosia voidaan kytkeä päälle ja säätää manuaalisesti. Katso " -"lisätietoja: online plugin " -"dokumentaatio." +"Muita liitännäisiä voidaan kytkeä päälle ja säätää manuaalisesti. " +"Lisätietoja on sivulla liitännäisten dokumentaatio." #. TRANS: Admin form section header msgid "Default plugins" -msgstr "Vakiolaajennukset" +msgstr "Oletusliitännäiset" #. TRANS: Text displayed on plugin admin page when no plugin are enabled. msgid "" "All default plugins have been disabled from the site's configuration file." msgstr "" -"Kaikki oletus liitännäiset on poistettu käytöstä sivuston " -"määritystiedostossa." +"Kaikki oletusliitännäiset on poistettu käytöstä sivuston määritystiedostossa." #. TRANS: Client error displayed if the notice posted has too many characters. msgid "Invalid notice content." @@ -3953,17 +4039,22 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "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. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +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: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3976,8 +4067,9 @@ msgid "Location" msgstr "Kotipaikka" #. TRANS: Tooltip for field label in form for profile settings. +#. TRANS: Field title on account registration page. #, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"" +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Olinpaikka kuten \"Kaupunki, Maakunta (tai Lääni), Maa\"" #. TRANS: Checkbox label in form for profile settings. @@ -3985,6 +4077,9 @@ msgid "Share my current location when posting notices" msgstr "" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Tagit" @@ -4022,6 +4117,28 @@ msgstr "" "Tilaa automaattisesti kaikki, jotka tilaavat päivitykseni (ei sovi hyvin " "ihmiskäyttäjille)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Tilaukset" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "Vain henkilöitä voi seurata." + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4054,7 +4171,7 @@ msgstr "Virheellinen tagi: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Ei voitu asettaa käyttäjälle automaattista tilausta." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4063,6 +4180,7 @@ msgid "Could not save location prefs." msgstr "Tageja ei voitu tallentaa." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Tagien tallennus epäonnistui." @@ -4094,6 +4212,7 @@ msgid "Public timeline, page %d" msgstr "Julkinen aikajana, sivu %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Julkinen aikajana" @@ -4271,10 +4390,6 @@ msgstr "Salasanan palautuspyyntö lähetetty." msgid "Password saved" msgstr "Salasana tallennettu." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Tuntematon toiminto" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4372,6 +4487,7 @@ msgstr "Rekisteröityminen ei ole sallittu." msgid "You cannot register if you do not agree to the license." msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Sähköpostiosoite on jo käytössä." @@ -4409,27 +4525,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "Pitempi nimi, mieluiten oikea nimesi" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä" -msgstr[1] "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Kuvaile itseäsi ja kiinnostuksen kohteitasi" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Olinpaikka kuten \"Kaupunki, Maakunta (tai Lääni), Maa\"" - -#. TRANS: Field label on account registration page. -#, fuzzy +#. TRANS: Button text to register a user on account registration page. msgctxt "BUTTON" msgid "Register" msgstr "Rekisteröidy" @@ -4548,6 +4644,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "Profiilisi URL-osoite toisessa yhteensopivassa mikroblogauspalvelussa" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4588,16 +4686,8 @@ msgstr "Vain käyttäjä voi lukea omaa postilaatikkoaan." msgid "No notice specified." msgstr "Profiilia ei ole määritelty." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Sinä kuulut jo tähän ryhmään." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. #, fuzzy msgid "Repeated" msgstr "Luotu" @@ -4610,6 +4700,8 @@ msgstr "Luotu" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Vastaukset käyttäjälle %s" @@ -4721,6 +4813,7 @@ msgid "System error uploading file." msgstr "Tiedoston lähetyksessä tapahtui järjestelmävirhe." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Kaikki jäsenet" @@ -4762,6 +4855,7 @@ msgid "StatusNet" msgstr "Päivitys poistettu." #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. #, fuzzy msgid "You cannot sandbox users on this site." msgstr "Et voi lähettää viestiä tälle käyttäjälle." @@ -4951,6 +5045,8 @@ msgstr "Jäsenet" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. #, fuzzy msgid "(None)" msgstr "(Tyhjä)" @@ -5028,6 +5124,11 @@ msgstr "Viesti käyttäjälle %1$s, %2$s" msgid "Message from %1$s on %2$s" msgstr "Viesti käyttäjältä %1$s, %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "Pikaviestin ei ole käytettävissä." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Päivitys on poistettu." @@ -5035,20 +5136,20 @@ msgstr "Päivitys on poistettu." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %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, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Päivitykset joilla on tagi %s" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "Ryhmät, sivu %d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Päivitykset joilla on tagi %s" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5130,6 +5231,7 @@ msgid "Repeat of %s" msgstr "Vastaukset käyttäjälle %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. #, fuzzy msgid "You cannot silence users on this site." msgstr "Et voi lähettää viestiä tälle käyttäjälle." @@ -5432,52 +5534,67 @@ msgstr "" msgid "No code entered." msgstr "Koodia ei ole syötetty." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" msgid "Snapshots" msgstr "" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Sähköpostiosoitteen vahvistus" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "" +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Tallenna" - +#. TRANS: Title for button to save snapshot settings. #, fuzzy -msgid "Save snapshot settings" +msgid "Save snapshot settings." msgstr "Profiilikuva-asetukset" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5489,6 +5606,27 @@ msgstr "Et ole tilannut tämän käyttäjän päivityksiä." msgid "Could not save subscription." msgstr "Tilausta ei onnistuttu tallentamaan." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s ryhmien jäsenyydet" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Ryhmän %s jäsenet" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Lista ryhmän käyttäjistä." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. #, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." @@ -5601,32 +5739,44 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Päivitykset joilla on tagi %s" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Syöte ryhmän %s päivityksille (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Syöte ryhmän %s päivityksille (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Syöte ryhmän %s päivityksille (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. #, fuzzy msgid "No ID argument." msgstr "Ei id parametria." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Tagi %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Käyttäjän profiili" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Tagaa käyttäjä" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5635,17 +5785,26 @@ msgstr "" "Käyttäjän tagit (kirjaimet, numerot, -, ., ja _), pilkulla tai välilyönnillä " "erotettuna" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Voit tagata ainoastaan ihmisiä, joita tilaat tai jotka tilaavat sinun " "päivityksiäsi." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Tagit" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Käytä tätä lomaketta lisätäksesi tageja tilaajillesi ja käyttäjille jotka " "tilaavat päivityksiäsi." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Tuota tagia ei ole." @@ -5653,25 +5812,31 @@ msgstr "Tuota tagia ei ole." msgid "You haven't blocked that user." msgstr "Älä estä tätä käyttäjää" +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. #, fuzzy msgid "User is not sandboxed." msgstr "Käyttäjää ei ole estetty ryhmästä." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. #, fuzzy msgid "User is not silenced." msgstr "Käyttäjällä ei ole profiilia." -msgid "No profile ID in request." -msgstr "Ei profiilia tuolle ID:lle." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Tilaus lopetettu" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Profiilikuva-asetukset" @@ -5686,10 +5851,12 @@ msgstr "Hallinnoi muita asetuksia." msgid " (free service)" msgstr "" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Ei mitään" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5701,15 +5868,19 @@ msgstr "Lyhennä URL-osoitteita" msgid "Automatic shortening service to use." msgstr "Käytettävä automaattinen lyhennyspalvelu." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5719,17 +5890,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "URL-lyhennyspalvelun nimi on liian pitkä (max 50 merkkiä)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Koko ei kelpaa." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Koko ei kelpaa." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. #, fuzzy msgctxt "TITLE" msgid "User" @@ -5753,6 +5928,9 @@ msgstr "" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profiili" @@ -5813,7 +5991,7 @@ msgstr "Profiilikuva-asetukset" msgid "Authorize subscription" msgstr "Valtuuta tilaus" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5826,18 +6004,21 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" msgstr "Hyväksy" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Tilaa tämä käyttäjä" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5856,10 +6037,10 @@ msgstr "Ei valtuutuspyyntöä!" msgid "Subscription authorized" msgstr "Tilaus sallittu" -#, fuzzy +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "Päivityksen tilaus on hyväksytty, mutta callback-osoitetta palveluun ei ole " @@ -5870,10 +6051,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Tilaus hylätty" -#, fuzzy +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "Päivityksen tilaus on hylätty, mutta callback-osoitetta palveluun ei ole " @@ -5903,14 +6084,6 @@ msgstr "" 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. -#, php-format -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. #, fuzzy, php-format @@ -6013,7 +6186,6 @@ msgid "Contributors" msgstr "" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Lisenssi" @@ -6042,7 +6214,6 @@ msgid "" msgstr "" #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "" @@ -6122,6 +6293,18 @@ msgstr[1] "" msgid "Invalid filename." msgstr "Koko ei kelpaa." +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Virhe tapahtui käyttäjän tallentamisessa; epäkelpo." + #. TRANS: Exception thrown when joining a group fails. #, fuzzy msgid "Group join failed." @@ -6137,18 +6320,6 @@ msgstr "Ei voitu päivittää ryhmää." msgid "Group leave failed." msgstr "Ryhmän profiili" -#. TRANS: Exception thrown providing an invalid profile ID. -#. TRANS: %s is the invalid profile ID. -#, php-format -msgid "Profile ID %s is invalid." -msgstr "" - -#. TRANS: Exception thrown providing an invalid group ID. -#. TRANS: %s is the invalid group ID. -#, fuzzy, php-format -msgid "Group ID %s is invalid." -msgstr "Virhe tapahtui käyttäjän tallentamisessa; epäkelpo." - #. TRANS: Activity title. msgid "Join" msgstr "Liity" @@ -6226,6 +6397,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Päivityksesi tähän palveluun on estetty." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Et voi lähettää uudelleen omaa viestiäsi." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Et voi lähettää uudelleen omaa viestiäsi." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Et voi lähettää uudelleen omaa viestiäsi." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Sinä kuulut jo tähän ryhmään." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Käyttäjällä ei ole viimeistä päivitystä" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6252,16 +6453,13 @@ msgstr "Tilausta ei onnistuttu tallentamaan." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6284,6 +6482,7 @@ msgid "Unable to save tag." msgstr "Tagien tallennus epäonnistui." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. #, fuzzy msgid "You have been banned from subscribing." msgstr "Käyttäjä on estänyt sinua tilaamasta päivityksiä." @@ -6314,9 +6513,11 @@ msgstr "Tilausta ei onnistuttu tallentamaan." msgid "Could not delete subscription." msgstr "Tilausta ei onnistuttu tallentamaan." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "Salli" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6384,18 +6585,22 @@ msgstr "" #. TRANS: Link title for link on user profile. #, fuzzy -msgid "Edit profile settings" +msgid "Edit profile settings." msgstr "Profiiliasetukset" #. TRANS: Link text for link on user profile. +msgctxt "BUTTON" msgid "Edit" msgstr "" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Lähetä suora viesti tälle käyttäjälle" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Viesti" @@ -6419,10 +6624,6 @@ msgctxt "role" msgid "Moderator" msgstr "" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Tilaa" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, fuzzy, php-format msgid "%1$s - %2$s" @@ -6448,7 +6649,9 @@ msgstr "Vastaus" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "Päivitys poistettu." @@ -6567,8 +6770,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Hae päivityksien sisällöstä" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "Käyttäjää ei ole." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6620,86 +6824,137 @@ msgstr "Komentoa ei ole vielä toteutettu." msgid "Unable to delete design setting." msgstr "Twitter-asetuksia ei voitu tallentaa!" +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Kotisivu" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Kotisivu" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Ylläpito" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Basic site configuration" msgstr "Sähköpostiosoitteen vahvistus" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Kutsu" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Design configuration" msgstr "SMS vahvistus" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Ulkoasu" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "User configuration" msgstr "SMS vahvistus" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Käyttäjä" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Access configuration" msgstr "SMS vahvistus" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Access" +msgstr "Käyttöoikeudet" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Paths configuration" msgstr "SMS vahvistus" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Polut" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Sessions configuration" msgstr "SMS vahvistus" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" -msgstr "" +msgstr "Omat" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Edit site notice" msgstr "Palvelun ilmoitus" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Palvelun ilmoitus" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Snapshots configuration" msgstr "SMS vahvistus" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Snapshots" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Lisenssi" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "SMS vahvistus" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Liitännäiset" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6708,6 +6963,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6744,10 +7000,12 @@ msgstr "" msgid "Could not issue access token." msgstr "Viestin tallennus ei onnistunut." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error inserting OAuth application user." msgstr "Tietokantavirhe tallennettaessa risutagiä: %s" +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "Tietokantavirhe tallennettaessa risutagiä: %s" @@ -6846,6 +7104,17 @@ msgstr "" msgid "Cancel" msgstr "Peruuta" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Tallenna" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Tuntematon toiminto" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -6868,12 +7137,13 @@ msgstr "" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. #, fuzzy msgctxt "BUTTON" msgid "Revoke" msgstr "Poista" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -6914,6 +7184,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Kaikki tilaukset" + #. TRANS: Title for command results. msgid "Command results" msgstr "Komennon tulos" @@ -6924,6 +7200,7 @@ msgid "AJAX error" msgstr "Ajax-virhe" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Komento suoritettu" @@ -7041,6 +7318,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7061,10 +7340,6 @@ msgstr "Tapahtui virhe suoran viestin lähetyksessä." msgid "Notice from %s repeated." msgstr "Päivitys lähetetty" -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Virhe tapahtui käyttäjän asettamisessa." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7379,13 +7654,19 @@ msgstr "" msgid "Go to the installer." msgstr "Kirjaudu sisään palveluun" +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Tietokantavirhe" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Julkinen" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Poista" @@ -7393,6 +7674,7 @@ msgstr "Poista" msgid "Delete this user" msgstr "Poista käyttäjä" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Ryhmän ulkoasu" @@ -7405,16 +7687,6 @@ 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. -#, 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. -#, fuzzy -msgid "Reset back to default" -msgstr "Käytä oletusasetuksia" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #, fuzzy @@ -7424,7 +7696,7 @@ msgstr "Lataa" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "Voit ladata oman profiilikuvasi. Maksimikoko on %s." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. @@ -7439,16 +7711,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Off" -#. TRANS: Title for button on profile design page to save settings. -#, 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". -msgid "Couldn't update your design." -msgstr "Ei voitu päivittää sinun sivusi ulkoasua." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". #, fuzzy msgid "Design defaults restored." @@ -7481,48 +7743,62 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Lisää suosikiksi" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -#, fuzzy -msgid "Not an atom feed." -msgstr "Kaikki jäsenet" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Kaikki" +#. TRANS: Fieldset legend on gallery action page. #, fuzzy msgid "Select tag to filter" msgstr "Valitse operaattori" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Tagi" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Valitse tagi lyhentääksesi listaa" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Mene" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "" @@ -7584,9 +7860,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Käyttäjänä alkaen" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7653,6 +7931,7 @@ msgid "%s blocked users" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. #, fuzzy msgctxt "MENU" msgid "Admin" @@ -7754,23 +8033,46 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "" +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Liity" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Eroa" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. #, fuzzy msgctxt "MENU" msgid "Login" @@ -7821,6 +8123,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s seuraa nyt päivityksiäsi palvelussa %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s seuraa nyt päivityksiäsi palvelussa %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8043,40 +8359,58 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Vain käyttäjä voi lukea omaa postilaatikkoaan." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." msgstr "" +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Saapuneet" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Sinulle saapuneet viestit" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Lähetetyt" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Lähettämäsi viestit" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Ei voitu lukea viestiä." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Tuo ei ole rekisteröitynyt käyttäjä." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Valitettavasti tuo ei ole oikea osoite sähköpostipäivityksille." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Valitettavasti päivitysten teko sähköpostilla ei ole sallittua." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. #, fuzzy, php-format -msgid "Unsupported message type: %s" +msgid "Unsupported message type: %s." msgstr "Kuvatiedoston formaattia ei ole tuettu." #. TRANS: Form legend for form to make a user a group admin. @@ -8126,10 +8460,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Lähetä suora viesti" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Valitse operaattori" @@ -8139,33 +8476,68 @@ msgstr "Valitse operaattori" msgid "No mutual subscribers." msgstr "Ei ole tilattu!." +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Vastaanottaja" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Lähetä" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Viesti" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. #, fuzzy msgid "from" msgstr " lähteestä " -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +msgctxt "SOURCE" +msgid "web" msgstr "" +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Sähköposti" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Sinä et kuulu tähän ryhmään." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Älä poista tätä päivitystä" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8212,72 +8584,98 @@ msgid "" "try again later" msgstr "" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Päivitykset" + +#. TRANS: Used in coordinates as abbreviation of north. #, fuzzy msgid "N" msgstr "Ei" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" +#. TRANS: Followed by geo location. msgid "at" msgstr "" -msgid "web" -msgstr "" - +#. TRANS: Addition in notice list item if notice is part of a conversation. #, fuzzy msgid "in context" msgstr "Ei sisältöä!" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. #, fuzzy msgid "Repeated by" msgstr "Luotu" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Vastaa tähän päivitykseen" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Vastaus" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Poista tämä päivitys" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. #, fuzzy -msgid "Notice repeated" +msgid "Notice repeated." msgstr "Päivitys on poistettu." +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Tönäise tätä käyttäjää" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Tönäise" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Lähetä tönäisy tälle käyttäjälle" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8285,18 +8683,51 @@ msgstr "" msgid "Duplicate notice." msgstr "" -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Ei voitu lisätä uutta tilausta." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profiili" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Sinun profiilisi" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Vastaukset" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Suosikit" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Käyttäjä" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Viesti" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Sinulle saapuneet viestit" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8321,31 +8752,46 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Profiilikuva-asetukset" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Vaihda profiiliasetuksesi" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "SMS vahvistus" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "Kirjaudu ulos" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Kirjaudu sisään" -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "Kirjaudu sisään" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Haku" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Haku" #. TRANS: H2 text for user subscription statistics. @@ -8393,33 +8839,55 @@ msgstr "Kaikki ryhmät" msgid "Unimplemented method." msgstr "" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Ryhmät" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Käyttäjäryhmät" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Viimeaikaiset tagit" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Viimeaikaiset tagit" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Esittelyssä" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Suosituimmat" +#. TRANS: Client error displayed when return-to was defined without a target. #, fuzzy msgid "No return-to arguments." msgstr "Ei id parametria." +#. TRANS: For legend for notice repeat form. #, fuzzy msgid "Repeat this notice?" msgstr "Vastaa tähän päivitykseen" -msgid "Yes" -msgstr "Kyllä" - +#. TRANS: Button title to repeat a notice on notice repeat form. #, fuzzy -msgid "Repeat this notice" +msgid "Repeat this notice." msgstr "Vastaa tähän päivitykseen" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, fuzzy, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Estä tätä käyttäjää osallistumassa tähän ryhmään" @@ -8429,10 +8897,13 @@ msgstr "Estä tätä käyttäjää osallistumassa tähän ryhmään" msgid "Page not found." msgstr "API-metodia ei löytynyt." +#. TRANS: Title of form to sandbox a user. #, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Saapuneet" +#. TRANS: Description of form to sandbox a user. #, fuzzy msgid "Sandbox this user" msgstr "Poista esto tältä käyttäjältä" @@ -8452,134 +8923,278 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Henkilö" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Hae ihmisiä tältä sivustolta" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Päivitykset" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Hae päivityksien sisällöstä" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Etsi ryhmiä tästä palvelusta" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" -msgstr "Ohjeet" +msgstr "Ohje" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Tietoa" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "UKK" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +msgctxt "MENU" msgid "TOS" msgstr "" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Yksityisyys" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Lähdekoodi" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. #, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Omat" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Ota yhteyttä" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. #, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Tönäise" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Nimetön osa" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Lisää..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Profiilikuva-asetukset" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Vaihda profiiliasetuksesi" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Kuva" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Lataa kuva" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Salasana" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Vaihda salasanasi" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Sähköposti" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Muuta sähköpostin käsittelyasetuksia." +#. TRANS: Menu item title in settings navigation panel. #, fuzzy msgid "Design your profile" msgstr "Käyttäjän profiili" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "Pikaviestin" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Päivitykset pikaviestintä käyttäen (IM)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Päivitykset SMS:llä" +#. TRANS: Menu item in settings navigation panel. #, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Yhdistä" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "" +#. TRANS: Title of form to silence a user. #, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Palvelun ilmoitus" +#. TRANS: Description of form to silence a user. #, fuzzy msgid "Silence this user" msgstr "Estä tämä käyttäjä" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Tilaukset" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Ihmiset joiden tilaaja %s on" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Tilaajat" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Ihmiset jotka ovat käyttäjän %s tilaajia" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Ryhmät, joiden jäsen %s on" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Kutsu" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Kutsu kavereita ja työkavereita liittymään palveluun %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Tilaa tämä käyttäjä" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Ei mitään" @@ -8588,19 +9203,26 @@ msgstr "Ei mitään" msgid "Invalid theme name." msgstr "Koko ei kelpaa." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "" +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. #, fuzzy msgid "Failed saving theme." msgstr "Profiilikuvan päivittäminen epäonnistui." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8608,30 +9230,30 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Tapahtui virhe, kun estoa poistettiin." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Päivitykset" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -8662,8 +9284,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Merkitse päivitys suosikkeihin" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Poista tämä päivitys suosikeista" @@ -8675,8 +9298,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Sinä kuulut jo tähän ryhmään." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Tätä päivitystä ei voi poistaa." @@ -8686,6 +9310,28 @@ msgstr[1] "Tätä päivitystä ei voi poistaa." msgid "Top posters" msgstr "Eniten päivityksiä" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Vastaanottaja" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Tunnistamaton tiedoston tyyppi" + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8806,6 +9452,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#, fuzzy -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d" +#~ msgid "Couldn't update your design." +#~ msgstr "Ei voitu päivittää sinun sivusi ulkoasua." diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 1fb9a79e29..828a226df3 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -10,6 +10,7 @@ # Author: Julien C # Author: Lockal # Author: McDutchie +# Author: Netantho # Author: Patcito # Author: Peter17 # Author: Sherbrooke @@ -22,20 +23,54 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:49+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:52+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Inconnu" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Action inconnue" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Accès" @@ -87,7 +122,9 @@ msgstr "Sauvegarder les paramètres d’accès" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -99,6 +136,7 @@ msgstr "Enregistrer" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Page non trouvée." @@ -117,6 +155,7 @@ msgstr "Page non trouvée." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -141,8 +180,11 @@ msgstr "Page non trouvée." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Utilisateur non trouvé." @@ -155,7 +197,15 @@ msgstr "%1$s et ses amis, page %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s et ses amis" @@ -228,28 +278,14 @@ msgstr "Vous et vos amis" msgid "Updates from %1$s and friends on %2$s!" msgstr "Statuts de %1$s et ses amis dans %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "Méthode API non trouvée !" +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -285,6 +321,7 @@ msgstr "Impossible de mettre à jour l’utilisateur." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Aucun profil ne correspond à cet utilisateur." @@ -324,6 +361,8 @@ msgstr "Impossible de sauvegarder les parmètres de la conception." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Impossible de mettre à jour votre conception." @@ -697,9 +736,12 @@ msgstr "Le jeton de requête a déjà été autorisé." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" "Un problème est survenu avec votre jeton de session. Veuillez essayer à " @@ -859,16 +901,6 @@ msgstr "Vous ne pouvez pas supprimer le statut d’un autre utilisateur." msgid "No such notice." msgstr "Avis non trouvé." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Vous ne pouvez pas reprendre votre propre avis." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Vous avez déjà repris cet avis." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -910,8 +942,11 @@ msgstr "A supprimé l’avis %d" msgid "Client must provide a 'status' parameter with a value." msgstr "Le client doit fournir un paramètre « statut » avec une valeur." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -926,6 +961,8 @@ msgstr "L’avis parent correspondant à cette réponse n’a pas été trouvé. #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -999,6 +1036,8 @@ msgstr "%1$s avis qui ont été répétées à %2$s / %3$s." msgid "Repeats of %s" msgstr "Reprises de %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%1$s avis que %2$s / %3$s a répété." @@ -1013,6 +1052,8 @@ msgstr "Avis marqués avec %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Mises à jour marquées avec %1$s dans %2$s !" @@ -1030,9 +1071,8 @@ msgid "Atom post must not be empty." msgstr "Un post atom ne doit pas être vide." #. TRANS: Client error displayed attempting to post an API that is not well-formed XML. -#, fuzzy msgid "Atom post must be well-formed XML." -msgstr "Une publication Atom doit être une entrée « Atom »." +msgstr "Une publication Atom doit être un fichier XML correct." #. TRANS: Client error displayed when not using an Atom entry. msgid "Atom post must be an Atom entry." @@ -1128,11 +1168,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Profil manquant." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1140,18 +1182,22 @@ msgid "%s is not in the moderation queue for this group." msgstr "Liste des utilisateurs inscrits à ce groupe." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" #. TRANS: Server error displayed when cancelling a queued group join request fails. #. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed. -#, fuzzy, php-format +#, php-format msgid "Could not cancel request for user %1$s to join group %2$s." -msgstr "Impossible d’inscrire l’utilisateur %1$s au groupe %2$s." +msgstr "" +"Impossible d’annuler la demande d'inscription de l’utilisateur %1$s au " +"groupe %2$s." #. TRANS: Title for leave group page after group join request is approved/disapproved. #. TRANS: %1$s is the user nickname, %2$s is the group nickname. @@ -1168,6 +1214,36 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Liste des utilisateurs inscrits à ce groupe." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "" +"Impossible d’annuler la demande d'inscription de l’utilisateur %1$s au " +"groupe %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Statut de %1$s sur %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Abonnement autorisé" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Autorisation annulée." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1209,7 +1285,7 @@ msgstr "Ajouter aux favoris" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "Membres du groupe %s" #. TRANS: Subtitle for group membership feed. @@ -1223,8 +1299,7 @@ msgstr "Groupes de %s" msgid "Cannot add someone else's membership." msgstr "Impossible d’insérer un nouvel abonnement." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Ne peut gérer que les activités de publication." @@ -1347,6 +1422,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Utilisateur sans profil correspondant." @@ -1373,6 +1449,7 @@ msgstr "Aperçu" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Supprimer" @@ -1445,7 +1522,7 @@ msgstr "Arrière plan" #. TRANS: Title for submit button to backup an account on the backup account page. msgid "Backup your account." -msgstr "" +msgstr "Sauvegarder votre compte" #. TRANS: Client error displayed when blocking a user that has already been blocked. msgid "You already blocked that user." @@ -1488,6 +1565,7 @@ msgstr "Ne pas bloquer cet utilisateur" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Oui" @@ -1545,6 +1623,32 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s a quitté le groupe %2$s" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Non connecté." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Aucun identifiant de profil dans la requête." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Aucun profil ne correspond à cet identifiant." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Désabonné" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Aucun code de confirmation." @@ -1621,7 +1725,7 @@ msgstr "Vous ne pouvez pas supprimer des utilisateurs." #. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation. msgid "I am sure." -msgstr "" +msgstr "Je suis sûr" #. TRANS: Notification for user about the text that must be input to be able to delete a user account. #. TRANS: %s is the text that needs to be input. @@ -1630,15 +1734,13 @@ msgid "You must write \"%s\" exactly in the box." msgstr "" #. TRANS: Confirmation that a user account has been deleted. -#, fuzzy msgid "Account deleted." -msgstr "Avatar supprimé." +msgstr "Compte supprimé." #. TRANS: Page title for page on which a user account can be deleted. #. TRANS: Option in profile settings to delete the account of the currently logged in user. -#, fuzzy msgid "Delete account" -msgstr "Créer un compte" +msgstr "Supprimer le compte" #. TRANS: Form text for user deletion form. msgid "" @@ -1684,6 +1786,7 @@ msgstr "Application non trouvée." msgid "You are not the owner of this application." msgstr "Vous n’êtes pas le propriétaire de cette application." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Un problème est survenu avec votre jeton de session." @@ -1750,32 +1853,12 @@ msgstr "" "d’actualités individuels." #. TRANS: Submit button title for 'No' when deleting a group. -#, fuzzy msgid "Do not delete this group." msgstr "Ne pas supprimer ce groupe" #. TRANS: Submit button title for 'Yes' when deleting a group. -#, fuzzy msgid "Delete this group." -msgstr "Supprimer ce groupe" - -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Non connecté." +msgstr "Supprimer ce groupe." #. TRANS: Instructions for deleting a notice. msgid "" @@ -1969,16 +2052,19 @@ 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. #, 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. #, 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. #, fuzzy msgid "Save design." msgstr "Sauvegarder la conception" @@ -2312,6 +2398,7 @@ msgstr "Retirer ce favori" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Avis populaires" @@ -2353,6 +2440,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Avis favoris de %s" @@ -2365,6 +2454,7 @@ msgstr "Mises à jour privilégiées par %1$s sur %2$s !" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Utilisateurs en vedette" @@ -2426,6 +2516,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Le service distant utilise une version inconnue du protocole OMB." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Erreur lors de la mise à jour du profil distant." @@ -2463,14 +2554,6 @@ msgstr "L’utilisateur a déjà ce rôle." msgid "No profile specified." msgstr "Aucun profil n’a été spécifié." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Aucun profil ne correspond à cet identifiant." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2764,7 +2847,6 @@ msgid "%s screenname." msgstr "" #. TRANS: Header for IM preferences form. -#, fuzzy msgid "IM Preferences" msgstr "Préférences de messagerie instantanée" @@ -2792,9 +2874,8 @@ msgid "Publish a MicroID" msgstr "Publier un MicroID pour mon adresse courriel." #. TRANS: Server error thrown on database error updating IM preferences. -#, fuzzy msgid "Could not update IM preferences." -msgstr "Impossible de mettre à jour l’utilisateur." +msgstr "Impossible de mettre à jour les préférences de messagerie instantanée." #. TRANS: Confirmation message for successful IM preferences save. #. TRANS: Confirmation message after saving preferences. @@ -2802,7 +2883,6 @@ msgid "Preferences saved." msgstr "Préférences enregistrées" #. TRANS: Message given saving IM address without having provided one. -#, fuzzy msgid "No screenname." msgstr "Aucun pseudo." @@ -3112,6 +3192,7 @@ msgid "License selection" msgstr "Sélection d’une licence" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privé" @@ -3357,6 +3438,9 @@ msgid "Ajax Error" msgstr "Erreur Ajax" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nouvel avis" @@ -3666,7 +3750,6 @@ msgid "Password saved." msgstr "Mot de passe enregistré." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Chemins" @@ -3861,6 +3944,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Jamais" @@ -4020,17 +4104,22 @@ 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). -#, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). +#, 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é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. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +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: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4043,7 +4132,9 @@ msgid "Location" msgstr "Emplacement" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Indiquez votre emplacement, ex.: « Ville, État (ou région), Pays »" #. TRANS: Checkbox label in form for profile settings. @@ -4051,6 +4142,9 @@ msgid "Share my current location when posting notices" msgstr "Partager ma localisation lorsque je poste des avis" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Balises" @@ -4088,6 +4182,27 @@ msgstr "" "M’abonner automatiquement à tous ceux qui s’abonnent à moi (recommandé pour " "les utilisateurs non-humains)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Abonnements" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4119,7 +4234,7 @@ msgstr "Marque invalide : « %s »" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Impossible de mettre à jour l’auto-abonnement." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4128,6 +4243,7 @@ msgid "Could not save location prefs." msgstr "Impossible d’enregistrer les préférences de localisation." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Impossible d’enregistrer les marques." @@ -4159,6 +4275,7 @@ msgid "Public timeline, page %d" msgstr "Flux public - page %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Flux public" @@ -4345,10 +4462,6 @@ msgstr "Récupération de mot de passe demandée" msgid "Password saved" msgstr "Mot de passe enregistré." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Action inconnue" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4444,6 +4557,7 @@ msgstr "Inscription non autorisée." msgid "You cannot register if you do not agree to the license." msgstr "Vous ne pouvez pas vous inscrire si vous n’acceptez pas la licence." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Cette adresse courriel est déjà utilisée." @@ -4484,26 +4598,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "Nom plus long, votre \"vrai\" nom de préférence" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, 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é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: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Décrivez vous et vos interêts" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Indiquez votre emplacement, ex.: « Ville, État (ou région), Pays »" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4627,6 +4722,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "URL de votre profil sur un autre service de micro-blogging compatible" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4662,16 +4759,8 @@ msgstr "Seuls les utilisateurs identifiés peuvent reprendre des avis." msgid "No notice specified." msgstr "Aucun avis n’a été spécifié." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Vous ne pouvez pas reprendre votre propre avis." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Vous avez déjà repris cet avis." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Repris" @@ -4682,6 +4771,8 @@ msgstr "Repris !" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Réponses à %s" @@ -4799,6 +4890,7 @@ msgid "System error uploading file." msgstr "Erreur système lors du transfert du fichier." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Tous les membres" @@ -4839,6 +4931,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "" "Vous ne pouvez pas mettre des utilisateur dans le bac à sable sur ce site." @@ -5038,6 +5131,8 @@ msgstr "Membres" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(aucun)" @@ -5122,27 +5217,32 @@ msgstr "Message adressé à %1$s le %2$s" msgid "Message from %1$s on %2$s" msgstr "Message reçu de %1$s le %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "La messagerie instantanée n’est pas disponible." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Avis supprimé." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" +#, fuzzy, php-format +msgid "Notices by %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, %3$d is the page number. -#, php-format -msgid "%1$s tagged %2$s, page %3$d" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%1$s a marqué « %2$s » la page %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, page %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Avis marqués avec %1$s, page %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5231,6 +5331,7 @@ msgid "Repeat of %s" msgstr "Reprises de %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Vous ne pouvez pas réduire des utilisateurs au silence sur ce site." @@ -5537,51 +5638,72 @@ msgstr "" msgid "No code entered." msgstr "Aucun code entré" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Instantanés" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Gérer la configuration des instantanés" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Valeur de lancement d’instantanés invalide." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "La fréquence des instantanés doit être un nombre." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "URL de rapport d’instantanés invalide." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Instantanés" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Au hasard lors des requêtes web" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "Dans une tâche programée" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Instantanés de données" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Quand envoyer des données statistiques aux serveurs status.net" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Fréquence" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Les instantanés seront envoyés une fois tous les N requêtes" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL de rapport" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Les instantanés seront envoyés à cette URL" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Enregistrer" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Sauvegarder les paramètres des instantanés" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5593,6 +5715,27 @@ msgstr "Vous n’êtes pas abonné(e) à ce profil." msgid "Could not save subscription." msgstr "Impossible d’enregistrer l’abonnement." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "Membres du groupe %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Membres du groupe %1$s - page %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Liste des utilisateurs inscrits à ce groupe." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5716,31 +5859,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Avis marqués avec %1$s, page %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Flux des avis pour la marque %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Flux des avis pour la marque %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Flux des avis pour la marque %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Aucun argument d’identifiant." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Marque %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Profil de l’utilisateur" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Marquer l’utilisateur" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5749,16 +5904,25 @@ msgstr "" "Marques pour cet utilisateur (lettres, chiffres, -, ., et _), séparées par " "des virgules ou des espaces" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Vous pouvez seulement marquer les personnes auxquelles vous êtes abonné(e) " "ou qui sont abonnées à vous." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Balises" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Remplissez les champs suivants pour marquer vos abonnés ou vos abonnements." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Cette marque n’existe pas." @@ -5766,25 +5930,31 @@ msgstr "Cette marque n’existe pas." msgid "You haven't blocked that user." msgstr "Vous n’avez pas bloqué cet utilisateur." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "L’utilisateur ne se trouve pas dans le bac à sable." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "L’utilisateur n’est pas réduit au silence." -msgid "No profile ID in request." -msgstr "Aucun identifiant de profil dans la requête." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Désabonné" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "La licence du flux auquel vous êtes abonné(e), « %1$s », n’est pas compatible " "avec la licence du site « %2$s »." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Paramètres de messagerie instantanée" @@ -5799,10 +5969,12 @@ msgstr "Autres options à configurer" msgid " (free service)" msgstr " (service libre)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Aucun" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5814,15 +5986,19 @@ msgstr "Raccourcir les URL avec" msgid "Automatic shortening service to use." msgstr "Sélectionnez un service de réduction d’URL." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5831,17 +6007,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Le service de réduction d’URL est trop long (50 caractères maximum)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Contenu de l’avis invalide." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Contenu de l’avis invalide." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Utilisateur" @@ -5864,6 +6044,9 @@ msgstr "Texte de bienvenue invalide. La taille maximale est de 255 caractères." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Abonnement par défaut invalide : « %1$s » n’est pas un utilisateur." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profil" @@ -5918,7 +6101,7 @@ msgstr "Sauvegarder les paramètres utilisateur" msgid "Authorize subscription" msgstr "Autoriser l’abonnement" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5931,18 +6114,21 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" msgstr "Accepter" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "S’abonner à cet utilisateur" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5961,9 +6147,10 @@ msgstr "Pas de requête d’autorisation !" msgid "Subscription authorized" msgstr "Abonnement autorisé" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "L’abonnement a été autorisé, mais aucune URL de rappel n’a pas été passée. " @@ -5974,9 +6161,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Abonnement refusé" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "L’abonnement a été refusé, mais aucune URL de rappel n’a pas été passée. " @@ -6008,16 +6196,6 @@ msgstr "" msgid "Profile URL \"%s\" is for a local user." msgstr "L’URL du profil ‘%s’ est pour un utilisateur local." -#. 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. -#, 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. #, fuzzy, php-format @@ -6125,7 +6303,6 @@ msgid "Contributors" msgstr "Contributeurs" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licence" @@ -6164,7 +6341,6 @@ msgstr "" "avec ce programme. Si ce n’est pas le cas, consultez %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Extensions" @@ -6252,18 +6428,6 @@ msgstr[1] "Un fichier aussi gros dépasserait votre quota mensuel de %d octets." msgid "Invalid filename." msgstr "Nom de fichier non valide." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "L’inscription au groupe a échoué." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "N’appartient pas au groupe." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "La désinscription du groupe a échoué." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6276,6 +6440,18 @@ msgstr "L’identifiant de profil « %s » est invalide." msgid "Group ID %s is invalid." msgstr "L’identifiant de groupe %s est invalide." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "L’inscription au groupe a échoué." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "N’appartient pas au groupe." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "La désinscription du groupe a échoué." + #. TRANS: Activity title. msgid "Join" msgstr "Rejoindre" @@ -6350,6 +6526,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Il vous est interdit de poster des avis sur ce site." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Vous ne pouvez pas reprendre votre propre avis." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Vous ne pouvez pas reprendre votre propre avis." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Vous ne pouvez pas reprendre votre propre avis." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Vous ne pouvez pas reprendre votre propre avis." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Vous avez déjà repris cet avis." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Aucun avis récent pour cet utilisateur." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6375,16 +6581,13 @@ msgstr "Impossible d’enregistrer la réponse à %1$d, %2$d." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6410,6 +6613,7 @@ msgid "Unable to save tag." msgstr "Impossible d’enregistrer l’étiquette." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Il vous a été interdit de vous abonner." @@ -6437,7 +6641,9 @@ msgstr "Impossible de supprimer le jeton OMB de l'abonnement." msgid "Could not delete subscription." msgstr "Impossible de supprimer l’abonnement" -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Suivre" @@ -6505,18 +6711,24 @@ msgid "User deletion in progress..." msgstr "Suppression de l'utilisateur en cours..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Modifier les paramètres du profil" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Modifier" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Envoyer un message à cet utilisateur" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Message" @@ -6538,10 +6750,6 @@ msgctxt "role" msgid "Moderator" msgstr "Modérateur" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "S’abonner" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6567,7 +6775,9 @@ msgstr "Répondre" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6691,8 +6901,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Chercher dans le contenu des avis" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "Utilisateur non trouvé." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6739,76 +6950,125 @@ msgstr "saveSettings() n’a pas été implémentée." msgid "Unable to delete design setting." msgstr "Impossible de supprimer les paramètres de conception." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Site personnel" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Site personnel" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Administrer" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Configuration basique du site" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Site" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Configuration de la conception" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Conception" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Configuration utilisateur" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "User" msgstr "Utilisateur" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Configuration d’accès" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Access" +msgstr "Accès" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Configuration des chemins" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Paths" +msgstr "Chemins" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Configuration des sessions" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "Sessions" msgstr "Sessions" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Modifier l'avis du site" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Notice du site" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Configuration des instantanés" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Snapshots" +msgstr "Instantanés" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Définir la licence du site" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licence" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Configuration des chemins" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Extensions" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6819,6 +7079,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "Aucune demande trouvée pour cette clé de consommateur." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6854,10 +7115,12 @@ msgstr "" msgid "Could not issue access token." msgstr "Impossible d’émettre le jeton d’accès." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "" "Erreur de base de donnée en insérant l’utilisateur de l’application OAuth" +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "" @@ -6954,6 +7217,17 @@ msgstr "" msgid "Cancel" msgstr "Annuler" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Enregistrer" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Action inconnue" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr " par " @@ -6976,11 +7250,12 @@ msgstr "Accès « %2$s » approuvé le %1$s." msgid "Access token starting with: %s" msgstr "Jeton d’accès qui commence par : %s" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Révoquer" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. #, fuzzy msgid "Author element must contain a name element." msgstr "l’élément « author » doit contenir un élément « name »." @@ -7019,6 +7294,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Tous les abonnements" + #. TRANS: Title for command results. msgid "Command results" msgstr "Résultats de la commande" @@ -7028,6 +7309,7 @@ msgid "AJAX error" msgstr "Erreur AJAX" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Commande complétée" @@ -7148,6 +7430,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7172,10 +7456,6 @@ msgstr "Une erreur est survenue pendant l’envoi de votre message." msgid "Notice from %s repeated." msgstr "Avis de %s repris." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Erreur lors de la reprise de l’avis." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7486,13 +7766,19 @@ msgstr "Vous pouvez essayer de lancer l’installeur pour régler ce problème." msgid "Go to the installer." msgstr "Aller au programme d’installation" +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Erreur de la base de données" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Public" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Supprimer" @@ -7500,6 +7786,7 @@ msgstr "Supprimer" msgid "Delete this user" msgstr "Supprimer cet utilisateur" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Sauvegarder la conception" @@ -7512,14 +7799,6 @@ 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. -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. -msgid "Reset back to default" -msgstr "Revenir aux valeurs par défaut" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7527,9 +7806,9 @@ msgstr "Importer un fichier" #. TRANS: Instructions for form on profile design page. msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" -"Vous pouvez importer une image d’arrière plan personnelle. La taille " +"Vous pouvez importer votre image d’arrière plan personnelle. La taille " "maximale du fichier est de 2 Mo." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. @@ -7542,15 +7821,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Désactivé" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "Impossible de mettre à jour votre conception." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Les paramètre par défaut de la conception ont été restaurés." @@ -7582,47 +7852,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Ajouter à mes favoris" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "Ami d’un ami" -#, fuzzy -msgid "Not an atom feed." -msgstr "Tous les membres" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Flux d’informations" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Tous" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Sélectionner une marque à filtrer" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Marque" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Choissez une marque pour réduire la liste" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Aller" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Accorder le rôle « %s » à cet utilisateur" @@ -7686,9 +7970,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Membre depuis" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7755,6 +8041,7 @@ msgid "%s blocked users" msgstr "Utilisateurs bloqués du groupe « %s »" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Administrer" @@ -7856,23 +8143,46 @@ msgid_plural "%dB" msgstr[0] "%d o" msgstr[1] "%d o" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Source %d inconnue pour la boîte de réception." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Rejoindre" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Quitter" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Connexion" @@ -7934,6 +8244,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s suit maintenant vos avis sur %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s suit maintenant vos avis sur %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8229,9 +8553,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "L’accès à cette boîte de réception est réservé à son utilisateur." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8240,32 +8566,48 @@ msgstr "" "pour démarrer des conversations avec d’autres utilisateurs. Ceux-ci peuvent " "vous envoyer des messages destinés à vous seul(e)." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Boîte de réception" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Vos messages reçus" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Boîte d’envoi" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Vos messages envoyés" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Impossible de déchiffrer ce message." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Ceci n’est pas un utilisateur inscrit." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Désolé, ceci n’est pas votre adresse de courriel entrant." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Désolé, la réception de courriels n’est pas permise." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Type de message non supporté : %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8319,10 +8661,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "« %s » n’est pas un type de fichier supporté sur ce serveur." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Envoyer un message direct" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "Sélectionner le destinataire :" @@ -8330,32 +8675,68 @@ msgstr "Sélectionner le destinataire :" msgid "No mutual subscribers." msgstr "Aucun abonné réciproque." +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "À" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Envoyer" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Message" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "de" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Courriel" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Vous n’êtes pas autorisé à supprimer ce groupe." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Ne pas supprimer ce groupe" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8403,68 +8784,95 @@ msgstr "" "Désolé, l’obtention de votre localisation prend plus de temps que prévu. " "Veuillez réessayer plus tard." -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Avis" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "E" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "O" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u° %2$u' %3$u\" %4$s %5$u° %6$u' %7$u\" %8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "chez" -msgid "web" -msgstr "web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "dans le contexte" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Repris par" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Répondre à cet avis" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Répondre" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Supprimer cet avis" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Avis repris" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Envoyer un clin d’œil à cet utilisateur" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Clin d’œil" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Envoyer un clin d’œil à cet utilisateur" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Erreur lors de l’insertion du nouveau profil." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Erreur lors de l’insertion de l’avatar." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Erreur lors de l’insertion du profil distant." @@ -8472,18 +8880,51 @@ msgstr "Erreur lors de l’insertion du profil distant." msgid "Duplicate notice." msgstr "Avis en doublon." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Impossible d’insérer un nouvel abonnement." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Votre profil" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Réponses" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Favoris" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Utilisateur" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Message" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Vos messages reçus" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8507,31 +8948,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Paramètres SMS" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Modifier vos paramètres de profil" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Configuration utilisateur" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "Déconnexion" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Fermer la session" -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "Ouvrir une session" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "Rechercher" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Rechercher sur le site" #. TRANS: H2 text for user subscription statistics. @@ -8578,30 +9033,53 @@ msgstr "Tous les groupes" msgid "Unimplemented method." msgstr "Méthode non implémentée." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Groupes" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Groupes d’utilisateurs" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Marques récentes" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Marques récentes" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "En vedette" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Populaires" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Aucun argument de retour." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Reprendre cet avis ?" -msgid "Yes" -msgstr "Oui" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Reprendre cet avis" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Révoquer le rôle « %s » de cet utilisateur" @@ -8610,9 +9088,13 @@ msgstr "Révoquer le rôle « %s » de cet utilisateur" msgid "Page not found." msgstr "Page non trouvée." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Bac à sable" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Mettre cet utilisateur dans un bac à sable" @@ -8630,128 +9112,273 @@ msgctxt "BUTTON" msgid "Search" msgstr "Rechercher" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Personnes" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Chercher des personnes sur ce site" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Avis" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Chercher dans le contenu des avis" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Rechercher des groupes sur ce site" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "Aide" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "À propos" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "FAQ" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "CGU" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Confidentialité" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Source" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Version" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Contact" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Insigne" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Section sans titre" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Plus..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Paramètres SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Modifier vos paramètres de profil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Ajouter un avatar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Mot de passe" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Modifier votre mot de passe" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Courriel" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Modifier le traitement des courriels" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Concevez votre profil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Suivi des avis par messagerie instantanée" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Suivi des avis par SMS" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" msgid "Connections" msgstr "Connexions" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Applications autorisées connectées" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Silence" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Réduire cet utilisateur au silence" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Abonnements" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Abonnements de %s" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Abonnés" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Abonnés de %s" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Groupes de %s" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "Inviter" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Inviter des amis et collègues à vous rejoindre dans %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "S’abonner à cet utilisateur" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Nuage de marques pour une personne (ajoutées par eux-même)" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Nuage de marques pour une personne" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Aucun" @@ -8759,20 +9386,28 @@ msgstr "Aucun" msgid "Invalid theme name." msgstr "Nom de thème invalide." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" "Le serveur ne peut pas gérer l’import de thèmes sans le support du format " "ZIP." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Le fichier de thème est manquant ou le téléversement a échoué." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "L’enregistrement du thème a échoué." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Thème invalide : mauvaise arborescence." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8784,9 +9419,12 @@ msgstr[1] "" "Le thème téléversé est trop volumineux ; il doit occuper moins de %d octets " "une fois décompressé." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Archive de thème invalide : fichier css/display.css manquant" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -8794,24 +9432,22 @@ msgstr "" "Le thème contient un nom de fichier ou de dossier invalide. Limitez-vous aux " "lettres ASCII et aux chiffres, caractère de soulignement et signe moins." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" "Ce thème contient un nom d'extension de ficher dangereux; peut être " "dangereux." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Le thème contient un fichier de type « .%s », qui n'est pas autorisé." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Erreur lors de l’ouverture de l’archive du thème." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Avis" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -8842,8 +9478,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Ajouter aux favoris" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Retirer des favoris" @@ -8855,8 +9492,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Vous avez déjà repris cet avis." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Vous avez déjà repris cet avis." @@ -8866,6 +9504,28 @@ msgstr[1] "Vous avez déjà repris cet avis." msgid "Top posters" msgstr "Utilisateurs les plus actifs" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "À" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Langue « %s » inconnue." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8983,7 +9643,5 @@ msgstr "XML invalide, racine XRD manquante." msgid "Getting backup from file '%s'." msgstr "Obtention de la sauvegarde depuis le fichier « %s »." -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "" -#~ "Message trop long ! La taille maximale est de %1$d caractères ; vous en " -#~ "avez entré %2$d." +#~ msgid "Couldn't update your design." +#~ msgstr "Impossible de mettre à jour votre conception." diff --git a/locale/fur/LC_MESSAGES/statusnet.po b/locale/fur/LC_MESSAGES/statusnet.po index 528abccb68..136ad535db 100644 --- a/locale/fur/LC_MESSAGES/statusnet.po +++ b/locale/fur/LC_MESSAGES/statusnet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:50+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:16+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-core\n" @@ -74,7 +74,9 @@ msgstr "" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -86,6 +88,7 @@ msgstr "Salve" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "La pagjine no esist." @@ -813,16 +816,6 @@ msgstr "" msgid "No such notice." msgstr "L'avîs nol esist." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "" - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "" - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -963,6 +956,8 @@ msgstr "Avîs etichetâts cun %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Inzornaments etichetâts cun %1$s su %2$s!" @@ -1077,11 +1072,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Il profîl nol esist." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1089,10 +1086,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Une liste dai utents in chest grup." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1117,6 +1116,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Une liste dai utents in chest grup." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "No si à podût zontâ l'utent %1$s al grup %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Stât di %1$s su %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Sotscrizion autorizade" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Sotscrizion refudade" + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1153,8 +1180,8 @@ msgstr "" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "Apartignincis ai grups di %s" #. TRANS: Subtitle for group membership feed. @@ -1167,8 +1194,7 @@ msgstr "Grups dal utent %1$s su %2$s" msgid "Cannot add someone else's membership." msgstr "No si pues zontâ une apartignince a cualchidun altri." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "" @@ -1471,6 +1497,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s al à lassât il grup %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "No tu sês jentrât." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "" + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "" + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "No tu sês sotscrit" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "" @@ -1669,24 +1738,6 @@ msgstr "" msgid "Delete this group." msgstr "Elimine chest grup." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "No tu sês jentrât." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2347,14 +2398,6 @@ msgstr "" msgid "No profile specified." msgstr "" -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "" - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2923,6 +2966,7 @@ msgid "License selection" msgstr "Sielte de licence" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privât" @@ -3652,6 +3696,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Mai" @@ -3805,17 +3850,22 @@ msgstr "URL de tô pagjine web, blog o profîl suntun altri sît." #. 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). -#, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" -msgstr[0] "" -msgstr[1] "" +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." +msgstr[0] "Descrîf te e i tiei interès" +msgstr[1] "Descrîf te e i tiei interès" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "Descrîf te e i tiei interès" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3828,14 +3878,16 @@ msgid "Location" msgstr "Lûc" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Dulà che tu sês, par esempli \"Citât, Provincie, Stât\"" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Dulà che tu sês, par esempli \"Citât, Provincie, Stât\"." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" msgstr "Condivît il lûc dulà che mi cjati cuant che o publichi avîs" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Etichetis" @@ -3866,6 +3918,27 @@ msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Sotscrizions" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -3896,7 +3969,7 @@ msgstr "" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "" #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -3904,6 +3977,7 @@ msgid "Could not save location prefs." msgstr "" #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "" @@ -4233,25 +4307,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Descrîf te e i tiei interès" -msgstr[1] "Descrîf te e i tiei interès" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Descrîf te e i tiei interès" - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Dulà che tu sês, par esempli \"Citât, Provincie, Stât\"." - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4363,6 +4419,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4394,15 +4451,8 @@ msgstr "" msgid "No notice specified." msgstr "" -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "" - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "" - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Ripetût" @@ -4555,6 +4605,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "" @@ -4822,27 +4873,32 @@ msgstr "Messaç par %1$s su %2$s" msgid "Message from %1$s on %2$s" msgstr "Messaç di %1$s su %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "Nol è un sorenon valit." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "L'avîs al è stât eliminât." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s cun etichete %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, %3$d is the page number. -#, php-format -msgid "%1$s tagged %2$s, page %3$d" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%1$s cun etichete %2$s, pagjine %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, pagjine %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Avîs etichetâts cun %1$s, pagjine %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -4927,6 +4983,7 @@ msgid "Repeat of %s" msgstr "Ripetizion di %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "" @@ -5208,52 +5265,68 @@ msgstr "" msgid "No code entered." msgstr "" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" msgid "Snapshots" msgstr "" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "" +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Salve" - -msgid "Save snapshot settings" -msgstr "" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." +msgstr "Salve lis impuestazions dal sît" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. msgid "You are not subscribed to that profile." @@ -5264,6 +5337,27 @@ msgstr "No tu sês sotscrit a chest profîl." msgid "Could not save subscription." msgstr "" +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "Apartignincis ai grups di %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Membris dal grup %1$s, pagjine %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Une liste dai utents in chest grup." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5378,43 +5472,64 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Avîs etichetâts cun %1$s, pagjine %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Canâl dai avîs pe etichete %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Canâl dai avîs pe etichete %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Canâl dai avîs pe etichete %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "" +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Etichete %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Profîl dal utent" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Etichete utent" +#. TRANS: Title for input field for inputting tags on "tag other users" page. msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " "spaces." msgstr "" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Etichetis" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "" @@ -5422,23 +5537,29 @@ msgstr "" msgid "You haven't blocked that user." msgstr "" +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "" +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "" -msgid "No profile ID in request." -msgstr "" - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "No tu sês sotscrit" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Impuestazions IM" @@ -5453,9 +5574,11 @@ msgstr "" msgid " (free service)" msgstr "" +#. TRANS: Default value for URL shortening settings. msgid "[none]" msgstr "" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5467,15 +5590,19 @@ msgstr "Scurte lis URL cun" msgid "Automatic shortening service to use." msgstr "Servizi di scurte automatic di doprâ." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5484,12 +5611,15 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "" -msgid "Invalid number for max url length." +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. +msgid "Invalid number for maximum URL length." msgstr "" -msgid "Invalid number for max notice length." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +msgid "Invalid number for maximum notice length." msgstr "" +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5567,7 +5697,7 @@ msgstr "Salve lis impuestazions dal utent" msgid "Authorize subscription" msgstr "Autorize la sotscrizion" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5576,6 +5706,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "Acete" @@ -5586,6 +5717,7 @@ msgstr "Sotscrivimi a chest utent." #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "Refude" @@ -5602,9 +5734,10 @@ msgstr "" msgid "Subscription authorized" msgstr "Sotscrizion autorizade" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" @@ -5612,9 +5745,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Sotscrizion refudade" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" @@ -5642,14 +5776,6 @@ msgstr "" 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. -#, php-format -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. #, php-format @@ -5863,18 +5989,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "" -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "" - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "" - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "" - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -5887,6 +6001,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "" +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "" + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "" + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "" + #. TRANS: Activity title. msgid "Join" msgstr "Iscrizion" @@ -5957,6 +6083,33 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "" +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "" + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "" + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "No si pues eliminâ chest avîs." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +msgid "Cannot repeat a notice you cannot read." +msgstr "" + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "" + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -5982,16 +6135,13 @@ msgstr "" msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6040,7 +6190,9 @@ msgstr "" msgid "Could not delete subscription." msgstr "" -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Seguìs" @@ -6108,18 +6260,24 @@ msgid "User deletion in progress..." msgstr "" #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Cambie lis impuestazions dal profîl" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Cambie" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Mande un messaç diret a chest utent" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Messaç" @@ -6141,10 +6299,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderatôr" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Sotscrivimi" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6400,6 +6554,10 @@ msgstr "" msgid "Snapshots configuration" msgstr "" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "" @@ -6545,6 +6703,10 @@ msgstr "" msgid "Cancel" msgstr "Scancele" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Salve" + msgid " by " msgstr " di " @@ -6608,6 +6770,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Dutis lis sotscrizions" + #. TRANS: Title for command results. msgid "Command results" msgstr "" @@ -6758,10 +6926,6 @@ msgstr "" msgid "Notice from %s repeated." msgstr "L'avîs di %s al è stât ripetût." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "" - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7489,6 +7653,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "" +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "Chestis a son lis personis a che a scoltin i tiei avîs." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -7899,7 +8077,9 @@ msgstr "Rispuint" msgid "Delete this notice" msgstr "Elimine chest avîs" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Avîs ripetût" msgid "Update your status..." @@ -8188,28 +8368,77 @@ msgstr "" msgid "Silence this user" msgstr "" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profîl" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Sotscrizions" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." +msgstr "Sotscrizions di %1$s su %2$s" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Sotscritôrs" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." +msgstr "Tu sês za sotscrit a %s." + +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "People %s subscribes to" +msgctxt "MENU" +msgid "Pending (%d)" msgstr "" +#. TRANS: Menu item title in local navigation menu. #, php-format -msgid "People subscribed to %s" +msgid "Approve pending subscription requests." msgstr "" -#, php-format -msgid "Groups %s is a member of" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grups" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "%s al fâs part di chescj grups" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Invide" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Invide amîs e compagns di lavôr a partecipâ a %s" msgid "Subscribe to this user" msgstr "Sotscrivimi a chest utent" +msgid "Subscribe" +msgstr "Sotscrivimi" + msgid "People Tagcloud as self-tagged" msgstr "" @@ -8320,6 +8549,28 @@ msgstr[1] "No si pues eliminâ chest avîs." msgid "Top posters" msgstr "Cui che al publiche di plui" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "A" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, php-format +msgid "Unknown to value: \"%s\"." +msgstr "" + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8435,8 +8686,11 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#, fuzzy -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "" -#~ "Il messaç al è masse lunc. Il massim al è %1$d caratar, tu tu'nd âs " -#~ "mandâts %2$d." +#~ msgid "Describe yourself and your interests" +#~ msgstr "Descrîf te e i tiei interès" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "Dulà che tu sês, par esempli \"Citât, Provincie, Stât\"" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, pagjine %2$d" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 8d75e3649d..5ec8e2c0c4 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -12,20 +12,54 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:51+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:54+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Descoñecida" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Non se coñece esa acción" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Acceso" @@ -77,7 +111,9 @@ msgstr "Gardar a configuración de acceso" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -89,6 +125,7 @@ msgstr "Gardar" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Esa páxina non existe." @@ -107,6 +144,7 @@ msgstr "Esa páxina non existe." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -131,8 +169,11 @@ msgstr "Esa páxina non existe." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Non existe tal usuario." @@ -145,7 +186,15 @@ msgstr "%1$s e amigos, páxina %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s e amigos" @@ -217,28 +266,14 @@ msgstr "Vostede e mailos seus amigos" msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualizacións de %1$s e amigos en %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "Non se atopou o método da API." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -274,6 +309,7 @@ msgstr "Non se puido actualizar o usuario." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "O usuario non ten perfil." @@ -313,6 +349,8 @@ msgstr "Non se puido gardar a súa configuración de deseño." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Non se puido actualizar o seu deseño." @@ -685,9 +723,12 @@ msgstr "O pase solicitado xa está autorizado." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Houbo un erro co seu pase. Inténteo de novo." @@ -839,16 +880,6 @@ msgstr "Non pode borrar o estado doutro usuario." msgid "No such notice." msgstr "Non existe tal nota." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Non pode repetir a súa propia nota." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Xa repetiu esa nota." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -891,8 +922,11 @@ msgstr "Borrar a nota %d" msgid "Client must provide a 'status' parameter with a value." msgstr "O cliente debe proporcionar un parámetro de \"estado\" cun valor." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -906,6 +940,8 @@ msgstr "Non se atopou o método da API." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -980,6 +1016,8 @@ msgstr "%1$s actualizacións que responden a actualizacións de %2$s / %3$s." msgid "Repeats of %s" msgstr "Repeticións de %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%1$s marcou a nota %2$s como favorita" @@ -994,6 +1032,8 @@ msgstr "Notas etiquetadas con %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualizacións etiquetadas con %1$s en %2$s!" @@ -1110,11 +1150,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Falta o perfil de usuario." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1122,10 +1164,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Unha lista dos usuarios pertencentes a este grupo." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1150,6 +1194,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Unha lista dos usuarios pertencentes a este grupo." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "O usuario %1$s non se puido engadir ao grupo %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Estado de %1$s en %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Autorizouse a subscrición" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Autorización cancelada." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1191,7 +1263,7 @@ msgstr "Engadir aos favoritos" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "Membros do grupo %s" #. TRANS: Subtitle for group membership feed. @@ -1205,8 +1277,7 @@ msgstr "Grupos aos que pertence %s" msgid "Cannot add someone else's membership." msgstr "Non se puido inserir unha subscrición nova." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Buscar nos contidos das notas" @@ -1328,6 +1399,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "O usuario non ten perfil." @@ -1354,6 +1426,7 @@ msgstr "Vista previa" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Borrar" @@ -1469,6 +1542,7 @@ msgstr "Non bloquear este usuario" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Si" @@ -1526,6 +1600,32 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s deixou o grupo %2$s" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Non iniciou sesión." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Á solicitude fáltalle o ID do perfil." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Ningún perfil ten esa ID." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Cancelouse a subscrición" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Sen código de confirmación." @@ -1603,7 +1703,7 @@ msgstr "Non pode borrar usuarios." #. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation. msgid "I am sure." -msgstr "" +msgstr "Estou seguro." #. TRANS: Notification for user about the text that must be input to be able to delete a user account. #. TRANS: %s is the text that needs to be input. @@ -1666,6 +1766,7 @@ msgstr "Non se atopou a aplicación." msgid "You are not the owner of this application." msgstr "Non é o dono desa aplicación." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Houbo un problema co seu pase." @@ -1742,24 +1843,6 @@ msgstr "Non borrar esta nota" msgid "Delete this group." msgstr "Borrar o usuario" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Non iniciou sesión." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1957,16 +2040,19 @@ msgid "Use defaults" msgstr "Utilizar os valores por defecto" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "Restaurar o deseño por defecto" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "Volver ao deseño por defecto" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "Gardar o deseño" @@ -2308,6 +2394,7 @@ msgstr "Desmarcar como favorita" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Notas populares" @@ -2347,6 +2434,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Notas favoritas de %s" @@ -2359,6 +2448,7 @@ msgstr "Actualizacións favoritas de %1$s en %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Usuarios do momento" @@ -2420,6 +2510,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "O servizo remoto utiliza unha versión descoñecida do protocolo OMB." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Houbo un erro ao actualizar o perfil remoto." @@ -2457,14 +2548,6 @@ msgstr "O usuario xa ten este rol." msgid "No profile specified." msgstr "Non se especificou ningún perfil." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Ningún perfil ten esa ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3097,6 +3180,7 @@ msgid "License selection" msgstr "Selección da licenza" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privado" @@ -3340,6 +3424,9 @@ msgid "Ajax Error" msgstr "Houbo un erro de AJAX" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nova nota" @@ -3648,7 +3735,6 @@ msgid "Password saved." msgstr "Gardouse o contrasinal." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Rutas" @@ -3854,6 +3940,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Nunca" @@ -4016,17 +4103,22 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "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. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +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: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4039,7 +4131,9 @@ msgid "Location" msgstr "Lugar" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Onde está a vivir, coma “localidade, provincia (ou comunidade), país”" #. TRANS: Checkbox label in form for profile settings. @@ -4047,6 +4141,9 @@ msgid "Share my current location when posting notices" msgstr "Compartir o lugar onde vivo ao publicar notas" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Etiquetas" @@ -4084,6 +4181,27 @@ msgstr "" "Subscribirse automaticamente a quen se subscriba a min (o mellor para os " "bots)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Subscricións" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4116,7 +4234,7 @@ msgstr "Etiqueta incorrecta: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Non se puido actualizar o usuario para subscribirse automaticamente." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4125,6 +4243,7 @@ msgid "Could not save location prefs." msgstr "Non se puideron gardar as preferencias de lugar." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Non se puideron gardar as etiquetas." @@ -4156,6 +4275,7 @@ msgid "Public timeline, page %d" msgstr "Liña do tempo pública, páxina %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Liña do tempo pública" @@ -4343,10 +4463,6 @@ msgstr "Solicitouse a recuperación do contrasinal" msgid "Password saved" msgstr "Gardouse o contrasinal." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Non se coñece esa acción" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4445,6 +4561,7 @@ msgstr "Non se permite o rexistro." msgid "You cannot register if you do not agree to the license." msgstr "Non pode rexistrarse se non acepta a licenza." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "O enderezo de correo electrónico xa existe." @@ -4484,26 +4601,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "Nome longo, preferiblemente o seu nome \"real\"" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -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: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Descríbase a vostede e mailos seus intereses" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Onde está a vivir, coma “localidade, provincia (ou comunidade), país”" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4627,6 +4725,8 @@ msgstr "" "URL do seu perfil noutro servizo de mensaxes de blogue curtas compatible" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4663,16 +4763,8 @@ msgstr "Só os usuarios identificados poden repetir notas." msgid "No notice specified." msgstr "Non se especificou nota ningunha." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Non pode repetir a súa propia nota." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Xa repetiu esa nota." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Repetida" @@ -4683,6 +4775,8 @@ msgstr "Repetida!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Respostas a %s" @@ -4798,6 +4892,7 @@ msgid "System error uploading file." msgstr "Houbo un erro no sistema ao cargar o ficheiro." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Todos os membros" @@ -4838,6 +4933,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Non pode illar usuarios neste sitio." @@ -5037,6 +5133,8 @@ msgstr "Membros" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Ningún)" @@ -5120,6 +5218,11 @@ msgstr "Mensaxe a %1$s en %2$s" msgid "Message from %1$s on %2$s" msgstr "Mensaxe de %1$s en %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "A mensaxería instantánea non está dispoñible." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Borrouse a nota." @@ -5127,20 +5230,20 @@ msgstr "Borrouse a nota." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %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, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Notas etiquetadas con %1$s, páxina %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, páxina %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Notas etiquetadas con %1$s, páxina %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5228,6 +5331,7 @@ msgid "Repeat of %s" msgstr "Repeticións de %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Non pode silenciar usuarios neste sitio." @@ -5533,51 +5637,72 @@ msgstr "" msgid "No code entered." msgstr "Non se introduciu ningún código" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Instantáneas" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Xestione a configuración das instantáneas" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Valor de execución da instantánea incorrecto." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "A frecuencia das instantáneas debe ser un número." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "URL de envío das instantáneas incorrecto." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Instantáneas" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Ao chou durante o acceso á rede" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "Nun proceso programado" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Instantáneas de datos" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Cando enviar información estatística aos servidores status.net" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frecuencia" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "As instantáneas enviaranse unha vez cada N accesos á rede" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL de envío" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "As instantáneas enviaranse a este URL" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Gardar" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Gardar a configuración das instantáneas" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5589,6 +5714,27 @@ msgstr "Non está subscrito a ese perfil." msgid "Could not save subscription." msgstr "Non se puido gardar a subscrición." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "Membros do grupo %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Membros do grupo %1$s, páxina %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Unha lista dos usuarios pertencentes a este grupo." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "Non se pode subscribir a un perfil remoto OMB 0.1 con esta acción." @@ -5710,31 +5856,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Notas etiquetadas con %1$s, páxina %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Fonte de novas das notas para a etiqueta %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Fonte de novas das notas para a etiqueta %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Fonte de novas das notas para a etiqueta %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Sen argumento ID." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Etiqueta %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Perfil do usuario" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Etiquetar ao usuario" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5743,17 +5901,26 @@ msgstr "" "Etiquetas para este usuario (letras, números, -, ., e _), separadas por " "comas ou espazos en branco" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Só pode etiquetar a xente á que estea subscrito ou que estean subscritos a " "vostede." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Etiquetas" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Utilice este formulario para engadir etiquetas aos seus subscritores ou " "subscricións." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Esa etiqueta non existe." @@ -5761,25 +5928,31 @@ msgstr "Esa etiqueta non existe." msgid "You haven't blocked that user." msgstr "Non bloqueou a ese usuario." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "O usuario non está illado." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "O usuario non está silenciado." -msgid "No profile ID in request." -msgstr "Á solicitude fáltalle o ID do perfil." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Cancelouse a subscrición" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "A licenza \"%1$s\" das transmisións da persoa seguida non é compatible coa " "licenza deste sitio: \"%2$s\"." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Configuración da mensaxería instantánea" @@ -5794,10 +5967,12 @@ msgstr "Configure outras tantas opcións." msgid " (free service)" msgstr " (servizo libre)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Ningún" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5809,15 +5984,19 @@ msgstr "Abreviar os enderezos URL con" msgid "Automatic shortening service to use." msgstr "Servizo de abreviación automática a usar." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5829,17 +6008,21 @@ msgstr "" "O servizo de abreviación de enderezos URL é longo de máis (o límite está en " "50 caracteres)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "O contido da nota é incorrecto." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "O contido da nota é incorrecto." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Usuario" @@ -5863,6 +6046,9 @@ msgstr "Texto de benvida incorrecto. A extensión máxima é de 255 caracteres." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Subscrición por defecto incorrecta. \"%1$s\" non é un usuario." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Perfil" @@ -5916,7 +6102,7 @@ msgstr "Gardar a configuración do usuario" msgid "Authorize subscription" msgstr "Autorizar a subscrición" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5929,18 +6115,21 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" msgstr "Aceptar" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Subscribirse a este usuario" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5959,9 +6148,11 @@ msgstr "Non se solicitou a autorización!" msgid "Subscription authorized" msgstr "Autorizouse a subscrición" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "Autorizouse a subscrición, pero non se devolveu ningún URL. Bote unha ollada " @@ -5972,9 +6163,11 @@ msgstr "" msgid "Subscription rejected" msgstr "Rexeitouse a subscrición" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "Rexeitouse a subscrición, pero non se devolveu ningún URL. Bote unha ollada " @@ -6005,16 +6198,6 @@ msgstr "O URI do seguidor, \"%s\", é dun usuario local." msgid "Profile URL \"%s\" is for a local user." msgstr "O URL do perfil, \"%s\", pertence a un usuario local." -#. 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. -#, 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. #, fuzzy, php-format @@ -6120,7 +6303,6 @@ msgid "Contributors" msgstr "Colaboradores" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licenza" @@ -6159,7 +6341,6 @@ msgstr "" "programa. En caso contrario, vexa %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Complementos" @@ -6245,18 +6426,6 @@ msgstr[1] "Un ficheiro deste tamaño excedería a súa cota mensual de %d bytes. msgid "Invalid filename." msgstr "Nome de ficheiro incorrecto." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Non se puido unir ao grupo." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Non forma parte do grupo." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Non se puido deixar o grupo." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6269,6 +6438,18 @@ msgstr "A identificación do perfil, %s, é incorrecta." msgid "Group ID %s is invalid." msgstr "Houbo un erro ao gardar o usuario. Incorrecto." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Non se puido unir ao grupo." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Non forma parte do grupo." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Non se puido deixar o grupo." + #. TRANS: Activity title. msgid "Join" msgstr "Unirse" @@ -6343,6 +6524,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Prohibíuselle publicar notas neste sitio de momento." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Non pode repetir a súa propia nota." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Non pode repetir a súa propia nota." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Non pode repetir a súa propia nota." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Non pode repetir a súa propia nota." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Xa repetiu esa nota." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "O usuario non ten ningunha última nota." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6369,16 +6580,13 @@ msgstr "Non se puido gardar a resposta a %1$d, %2$d." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6402,6 +6610,7 @@ msgid "Unable to save tag." msgstr "Non se puido gardar a nota do sitio." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Prohibíuselle realizar subscricións de momento." @@ -6429,7 +6638,9 @@ msgstr "Non se puido borrar o pase de subscrición OMB." msgid "Could not delete subscription." msgstr "Non se puido borrar a subscrición." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Seguir" @@ -6497,18 +6708,24 @@ msgid "User deletion in progress..." msgstr "Procedendo a borrar o usuario..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Modificar a configuración do perfil" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Modificar" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Enviarlle unha mensaxe directa a este usuario" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Mensaxe" @@ -6530,10 +6747,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderador" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Subscribirse" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6559,7 +6772,9 @@ msgstr "Responder" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6684,8 +6899,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Buscar nos contidos das notas" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "Non existe tal usuario." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6732,77 +6948,129 @@ msgstr "saveSettings() non está integrado." msgid "Unable to delete design setting." msgstr "Non se puido borrar a configuración do deseño." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. #, fuzzy +msgctxt "HEADER" msgid "Home" -msgstr "Páxina persoal" +msgstr "Inicio" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Inicio" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Administrador" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Configuración básica do sitio" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Sitio" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Configuración do deseño" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Deseño" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Configuración do usuario" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Usuario" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Configuración de acceso" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Acceso" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Configuración das rutas" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Rutas" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Configuración das sesións" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Sesións" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Modificar a nota do sitio" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Nota do sitio" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Configuración das instantáneas" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Snapshots" +msgstr "Instantáneas" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Definir a licenza do sitio" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licenza" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Configuración das rutas" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Complementos" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6813,6 +7081,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "Non hai ningunha aplicación para esa clave." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6849,11 +7118,13 @@ msgstr "" msgid "Could not issue access token." msgstr "Non se puido inserir a mensaxe." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "" "Houbo un erro na base de datos ao intentar inserir o usuario da aplicación " "OAuth." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "" @@ -6950,6 +7221,17 @@ msgstr "" msgid "Cancel" msgstr "Cancelar" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Gardar" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Non se coñece esa acción" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -6972,11 +7254,12 @@ msgstr "Aprobado o %1$s - permisos de \"%2$s\"." msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Revogar" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. #, fuzzy msgid "Author element must contain a name element." msgstr "o elemento \"autor\" debe conter un nome." @@ -7017,6 +7300,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Todas as subscricións" + #. TRANS: Title for command results. msgid "Command results" msgstr "Resultados da orde" @@ -7027,6 +7316,7 @@ msgid "AJAX error" msgstr "Houbo un erro de AJAX" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Completouse a orde" @@ -7147,6 +7437,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7169,10 +7461,6 @@ msgstr "Houbo un erro ao enviar a mensaxe directa." msgid "Notice from %s repeated." msgstr "Repetiuse a nota de %s." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Houbo un erro ao repetir a nota." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7481,13 +7769,19 @@ msgstr "Pode que queira executar o instalador para arranxalo." msgid "Go to the installer." msgstr "Ir ao instalador." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Houbo un erro na base de datos" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Públicas" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Borrar" @@ -7495,6 +7789,7 @@ msgstr "Borrar" msgid "Delete this user" msgstr "Borrar o usuario" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Gardar o deseño" @@ -7507,23 +7802,14 @@ 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. -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. -msgid "Reset back to default" -msgstr "Volver ao deseño por defecto" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "Cargar un ficheiro" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Pode cargar a súa imaxe de fondo persoal. O ficheiro non pode ocupar máis de " "2MB." @@ -7540,15 +7826,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Desactivado" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "Non se puido actualizar o seu deseño." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Restableceuse o deseño por defecto." @@ -7580,47 +7857,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Marcar como favorito" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "Amigo dun amigo" -#, fuzzy -msgid "Not an atom feed." -msgstr "Todos os membros" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Fontes de novas" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Todas" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Escolla unha etiqueta a filtrar" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Etiqueta" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Escolla unha etiqueta para reducir a lista" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Continuar" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Outorgarlle a este usuario o rol \"%s\"" @@ -7686,9 +7977,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Membro dende" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7755,6 +8048,7 @@ msgid "%s blocked users" msgstr "Usuarios bloqueados en %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Administrador" @@ -7855,23 +8149,46 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Non se coñece a fonte %d da caixa de entrada." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Unirse" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Deixar" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Identificarse" @@ -7932,6 +8249,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "Agora %1$s segue as súas notas en %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "Agora %1$s segue as súas notas en %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8226,9 +8557,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Só o usuario pode ler as súas caixas de entrada." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8236,32 +8569,48 @@ msgstr "" "Non ten mensaxes privadas. Pode enviar mensaxes privadas para conversar con " "outros usuarios. A xente pode enviarlle mensaxes para que só as lea vostede." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Caixa de entrada" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "As mensaxes recibidas" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Caixa de saída" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "As mensaxes enviadas" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Non se puido analizar a mensaxe." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Non está rexistrado." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Ese non é o seu enderezo de correo electrónico para recibir correos." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Non se permite recibir correo electrónico." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Non se soporta o tipo de mensaxe: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8314,10 +8663,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "Neste servidor non se soporta o tipo de ficheiro \"%s\"." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Enviar unha nota directa" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Seleccionar unha licenza" @@ -8327,32 +8679,68 @@ msgstr "Seleccionar unha licenza" msgid "No mutual subscribers." msgstr "Non está subscrito!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "A" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Enviar" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Mensaxe" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "de" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Correo electrónico" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Vostede non pertence a este grupo." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Non borrar esta nota" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8400,68 +8788,95 @@ msgstr "" "Estase tardando máis do esperado en obter a súa xeolocalización, vólvao " "intentar máis tarde" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Notas" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "L" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "O" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "en" -msgid "web" -msgstr "web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "no contexto" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Repetida por" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Responder a esta nota" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Responder" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Borrar esta nota" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Repetiuse a nota" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Facerlle un aceno a este usuario" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Facer un aceno" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Facerlle un aceno a este usuario" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Houbo un erro ao inserir o novo perfil." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Houbo un erro ao inserir o avatar." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Houbo un erro ao inserir o perfil remoto." @@ -8469,19 +8884,52 @@ msgstr "Houbo un erro ao inserir o perfil remoto." msgid "Duplicate notice." msgstr "Nota duplicada." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Non se puido inserir unha subscrición nova." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Perfil" + +#. TRANS: Menu item title in personal group navigation menu. #, fuzzy msgid "Your profile" msgstr "Perfil do grupo" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Respostas" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Favoritas" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Usuario" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Mensaxe" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "As mensaxes recibidas" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8505,35 +8953,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. #, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Configuración dos SMS" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Cambie a configuración do seu perfil" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Configuración do usuario" -#, fuzzy +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "Saír" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Logout from the site" +msgid "Logout from the site." msgstr "Saír ao anonimato" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Login to the site" +msgid "Login to the site." msgstr "Identificarse no sitio" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "Buscar" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Buscar no sitio" #. TRANS: H2 text for user subscription statistics. @@ -8580,30 +9038,53 @@ msgstr "Todos os grupos" msgid "Unimplemented method." msgstr "Aínda non se implantou o método." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grupos" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Grupos do usuario" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Últimas etiquetas" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Últimas etiquetas" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Salientadas" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Populares" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Sen argumentos \"return-to\"." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Quere repetir esta nota?" -msgid "Yes" -msgstr "Si" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Repetir esta nota" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Revogarlle o rol \"%s\" a este usuario" @@ -8613,9 +9094,13 @@ msgstr "Revogarlle o rol \"%s\" a este usuario" msgid "Page not found." msgstr "Non se atopou o método da API." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Illar" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Illar a este usuario" @@ -8633,128 +9118,276 @@ msgctxt "BUTTON" msgid "Search" msgstr "Procurar" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Xente" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Atopar xente neste sitio" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Notas" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Buscar nos contidos das notas" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Buscar grupos neste sitio" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "Axuda" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Acerca de" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "Preguntas máis frecuentes" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "Condicións do servicio" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Protección de datos" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Código fonte" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Versión" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Contacto" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Insignia" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Sección sen título" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Máis..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Configuración dos SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Cambie a configuración do seu perfil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Cargue un avatar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Contrasinal" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Cambie o seu contrasinal" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Correo electrónico" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Cambie a xestión do correo electrónico" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Deseñe o seu perfil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "MI" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Actualizacións por mensaxería instantánea (MI)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Actualizacións por SMS" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Conexións" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Aplicacións conectadas autorizadas" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Silenciar" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Silenciar a este usuario" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Subscricións" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Persoas ás que está subscrito %s" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Subscritores" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Persoas subscritas a %s" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Grupos aos que pertence %s" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "Convidar" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Convide a amigos e compañeiros a unírselle en %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Subscribirse a este usuario" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Nube de etiquetas que as persoas se puxeron a si mesmas" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Nube de etiquetas que lle puxo a outras persoas" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Ningún" @@ -8763,20 +9396,28 @@ msgstr "Ningún" msgid "Invalid theme name." msgstr "Nome de ficheiro incorrecto." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" "O servidor non pode xestionar as cargas de temas visuais sen soporte para o " "formato ZIP." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "O ficheiro do tema visual non existe ou a subida fallou." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Non se puido gardar o tema visual." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Tema visual inválido: a estrutura do directorio é incorrecta" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, fuzzy, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8788,9 +9429,12 @@ msgstr[1] "" "O tema visual cargado é grande de máis; o tamaño descomprimido non pode " "superar os %d bytes." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Arquivo de tema visual inválido: falta o ficheiro css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -8798,22 +9442,20 @@ msgstr "" "O tema visual contén un ficheiro inválido ou nome de cartafol incorrecto. " "Limíteo a letras ASCII, díxitos, barras baixas e signos menos." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "O tema visual contén nomes de extensión inseguros." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "O tema visual contén o tipo de ficheiro \".%s\". Non está permitido." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Houbo un erro ao abrir o arquivo do tema visual." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Notas" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -8844,8 +9486,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Marcar esta nota como favorita" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Desmarcar esta nota como favorita" @@ -8857,8 +9500,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Xa repetiu esa nota." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Xa repetiu esa nota." @@ -8868,6 +9512,28 @@ msgstr[1] "Xa repetiu esa nota." msgid "Top posters" msgstr "Os que máis publican" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "A" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Non se coñece a lingua \"%s\"." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8986,7 +9652,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "" -#~ "A mensaxe é longa de máis, o límite de caracteres é de %1$d, e enviou %2" -#~ "$d." +#~ msgid "Couldn't update your design." +#~ msgstr "Non se puido actualizar o seu deseño." diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 40747efa04..2590f4bad6 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -11,21 +11,55 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:52+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:55+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 (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Njeznaty" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Njeznata akcija" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Přistup" @@ -77,7 +111,9 @@ msgstr "Přistupne nastajenja składować" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -89,6 +125,7 @@ msgstr "Składować" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Strona njeeksistuje." @@ -107,6 +144,7 @@ msgstr "Strona njeeksistuje." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -131,8 +169,11 @@ msgstr "Strona njeeksistuje." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Wužiwar njeeksistuje" @@ -145,7 +186,15 @@ msgstr "%1$s a přećeljo, strona %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s a přećeljo" @@ -209,28 +258,14 @@ msgstr "Ty a přećeljo" msgid "Updates from %1$s and friends on %2$s!" msgstr "Aktualizacije wot %1$s a přećelow na %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API-metoda njenamakana." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -266,6 +301,7 @@ msgstr "Wužiwar njeje so dał aktualizować." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Wužiwar nima profil." @@ -303,6 +339,8 @@ msgstr "Njeje móžno, designowe nastajenja składować." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Design njeda so aktualizować." @@ -679,9 +717,12 @@ msgstr "Naprašowanski token hižo awtorizowany." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -825,16 +866,6 @@ msgstr "Njemóžeš status druheho wužiwarja zničić." msgid "No such notice." msgstr "Zdźělenka njeeksistuje." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Njemóžno twoju zdźělenku wospjetować." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Tuta zdźělenka bu hižo wospjetowana." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -876,8 +907,11 @@ msgstr "Zhašana zdźělenka %d" msgid "Client must provide a 'status' parameter with a value." msgstr "Klient dyrbi parameter 'status' z hódnotu podać." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -892,6 +926,8 @@ msgstr "Wotpowědna zdźělenka njenamakana." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -963,6 +999,8 @@ msgstr "Aktualizacije z %1$s wot %2$s / %3$s faworizowane" msgid "Repeats of %s" msgstr "Wospjetowanja wot %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%1$s je zdźělenku %2$s jako faworit markěrował." @@ -977,6 +1015,8 @@ msgstr "Zdźělenki woznamjenjene z %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Aktualizacije z %1$s na %2$s markěrowane!" @@ -1091,11 +1131,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Falowacy profil." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1103,10 +1145,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Lisćina wužiwarjow w tutej skupinje." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1131,6 +1175,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Lisćina wužiwarjow w tutej skupinje." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Njebě móžno wužiwarja %1$s skupinje %2%s přidać." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Status %1$s na %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Abonement awtorizowany" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Awtorizacija přetorhnjena." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1166,8 +1238,8 @@ msgstr "Je hižo faworit." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "%s skupisnkich čłonstwow" #. TRANS: Subtitle for group membership feed. @@ -1180,8 +1252,7 @@ msgstr "Skupiny, w kotrychž %1$s je čłon na %2$s" msgid "Cannot add someone else's membership." msgstr "Čłonstwo druheho njeda so přidać." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "Jenož aktiwity zastupjenja hodźa so wobdźěłać." @@ -1294,6 +1365,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Wužiwar bjez hodźaceho so profila." @@ -1320,6 +1392,7 @@ msgstr "Přehlad" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Zhašeć" @@ -1428,6 +1501,7 @@ msgstr "Tutoho wužiwarja njeblokować." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Haj" @@ -1484,6 +1558,32 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s je skupinu %2$s wopušćił" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Njepřizjewjeny." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Žadyn profilowy ID w naprašowanju." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Žadyn profil z tym ID." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Wotskazany" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Žadyn wobkrućenski kod." @@ -1617,6 +1717,7 @@ msgstr "Aplikaciska njenamakana." msgid "You are not the owner of this application." msgstr "Njejsy wobsedźer tuteje aplikacije." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "" @@ -1681,24 +1782,6 @@ msgstr "Tutu skupinu njezhašeć." msgid "Delete this group." msgstr "Tutu skupinu zhašeć." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Njepřizjewjeny." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1883,14 +1966,17 @@ msgid "Use defaults" msgstr "Standardne hódnoty wužiwać" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." msgstr "Standardne designy wobnowić." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "Na standard wróćo stajić." #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." msgstr "Design składować." @@ -2212,6 +2298,7 @@ msgstr "Z faworitow wotstronić." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Woblubowane zdźělenki" @@ -2247,6 +2334,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Fawority wužiwarja %s" @@ -2259,6 +2348,7 @@ msgstr "Aktualizacije preferowane wot %1$s na %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Nazhonići wužiwarjo" @@ -2320,6 +2410,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "" #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Zmylk při aktualizaciji zdaleneho profila." @@ -2357,14 +2448,6 @@ msgstr "Wužiwar hižo ma tutu rólu." msgid "No profile specified." msgstr "Žadyn profil podaty." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Žadyn profil z tym ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2944,6 +3027,7 @@ msgid "License selection" msgstr "Wuběr licency" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Priwatny" @@ -3174,6 +3258,9 @@ msgid "Ajax Error" msgstr "Zmylk Ajax" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nowa zdźělenka" @@ -3466,7 +3553,6 @@ msgid "Password saved." msgstr "Hesło składowane." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Šćežki" @@ -3658,6 +3744,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Ženje" @@ -3809,19 +3896,24 @@ 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). -#, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Wopisaj sebje a swoje zajimy z %d znamješkom" msgstr[1] "Wopisaj sebje a swoje zajimy z %d znamješkomaj" 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. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +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: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3834,14 +3926,18 @@ msgid "Location" msgstr "Městno" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Hdźež sy, na př. \"město, zwjazkowy kraj (abo region) , kraj\"" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Hdźež sy, na př. \"město, zwjazkowy kraj (abo region) , kraj\"." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" msgstr "" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "" @@ -3873,6 +3969,28 @@ msgid "" msgstr "" "Awtomatisce kóždeho abonować, kotryž mje abonuje (najlěpše za \"njeludźi\")." +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Abonementy" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "Móžeš jenož wosobam slědować." + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -3905,7 +4023,8 @@ msgstr "Njepłaćiwa taflička: \"%s\"." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -msgid "Could not update user for autosubscribe." +#, fuzzy +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Wužiwar njeda so za awtomatiske abonowanje aktualizować." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -3913,6 +4032,7 @@ msgid "Could not save location prefs." msgstr "Nastajenja městna njedachu so składować." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Taflički njedadźa so składować." @@ -3943,6 +4063,7 @@ msgid "Public timeline, page %d" msgstr "Zjawna časowa lajsta, strona %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "" @@ -4109,10 +4230,6 @@ msgstr "Wobnowjenje hesła požadane" msgid "Password saved" msgstr "Hesło składowane" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Njeznata akcija" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "6 abo wjace znamješkow, a njezabudź jo!" @@ -4205,6 +4322,7 @@ msgstr "Registracija njedowolena." msgid "You cannot register if you do not agree to the license." msgstr "Njemóžeš so registrować, jeli njepřizwoleš do licency." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "E-mejlowa adresa hižo eksistuje." @@ -4238,27 +4356,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "Dlěše mjeno, wosebje twoje \"woprawdźite\" mjeno." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Wopisaj sebje a swoje zajimy z %d znamješkom" -msgstr[1] "Wopisaj sebje a swoje zajimy z %d znamješkomaj" -msgstr[2] "Wopisaj sebje a swoje zajimy z %d znamješkami" -msgstr[3] "Wopisaj sebje a swoje zajimy z %d znamješkami" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Wopisaj sebje a swoje zajimy" - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Hdźež sy, na př. \"město, zwjazkowy kraj (abo region) , kraj\"." - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4355,6 +4453,8 @@ msgstr "" "URL twojeho profila při druhej kompatibelnej mikroblogowanskej słužbje." #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4386,15 +4486,8 @@ msgstr "Jeno6 přizjewjeni wužiwarjo móža zdźělenki wospjetować." msgid "No notice specified." msgstr "Žana zdźělenka podata." -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "Njemóžeš swójsku zdźělenku wospjetować." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Sy tutu zdźělenku hižo wospjetował." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Wospjetowany" @@ -4405,6 +4498,8 @@ msgstr "Wospjetowany!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Wotmołwy na %s" @@ -4509,6 +4604,7 @@ msgid "System error uploading file." msgstr "Systemowy zmylk při nahrawanju dataje." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." msgstr "To Atomowy kanal njeje." @@ -4547,6 +4643,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Njemóžeš wužiwarjow na tutym sydle do pěskoweho kašćika słać." @@ -4735,6 +4832,8 @@ msgstr "Čłonojo" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Žadyn)" @@ -4807,27 +4906,32 @@ msgstr "Powěsć do %1$s na %2$s" msgid "Message from %1$s on %2$s" msgstr "Powěsć wot %1$s na %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "IM k dispoziciji njesteji." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Zdźělenka zničena." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" +#, fuzzy, php-format +msgid "Notices by %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, %3$d is the page number. -#, php-format -msgid "%1$s tagged %2$s, page %3$d" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%1$s z %2$s markěrowany, strona %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, strona %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Zdźělenki su z %1$s woznamjenjene, strona %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -4903,6 +5007,7 @@ msgid "Repeat of %s" msgstr "Wospjetowanje wot %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Njemóžeš wužiwarjam na tutym sydle hubu zatykać." @@ -5187,51 +5292,71 @@ msgstr "" msgid "No code entered." msgstr "Žadyn kod zapodaty." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Njejapke fota" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Konfiguraciju wobrazowkoweho fota zrjadować" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Njepłaćiwa hódnota za wuwjedźenje njejapkeho fota." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "Frekwenca njejapkich fotkow dyrbi ličba być." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "Njepłaćiwy URL rozprawy njejapkeho fota." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Njejapke fota" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Njejapke fota datow" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frekwenca" -msgid "Snapshots will be sent once every N web hits" -msgstr "" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." +msgstr "Njejapke fotki budu so do tutoho URL słać." +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL rozprawy" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Njejapke fotki budu so do tutoho URL słać." -#. TRANS: Submit button title. -msgid "Save" -msgstr "Składować" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Nastajenja wobrazowkoweho fota składować" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5243,6 +5368,27 @@ msgstr "Njejsy tón profil abonował." msgid "Could not save subscription." msgstr "Abonement njeda so składować." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s skupisnkich čłonstwow" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s skupinskich čłonow, strona %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Lisćina wužiwarjow w tutej skupinje." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "Njemóžeš zdaleny profil OMB 0.1 z tutej akciju abonować." @@ -5356,44 +5502,64 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Zdźělenki su z %1$s woznamjenjene, strona %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Zdźělenski kanal za tafličku %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Zdźělenski kanal za tafličku %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Zdźělenski kanal za tafličku %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Žadyn argument ID." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Wužiwarski profil" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "" +#. TRANS: Title for input field for inputting tags on "tag other users" page. msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " "spaces." msgstr "" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +#. TRANS: Title of "tag other users" page. +msgctxt "TITLE" +msgid "Tags" +msgstr "" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "wužij tutón formular, zo by swojim abonentam abo abonementam taflički přidał." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Taflička njeeksistuje." @@ -5401,23 +5567,29 @@ msgstr "Taflička njeeksistuje." msgid "You haven't blocked that user." msgstr "Njejsy toho wužiwarja zablokował." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Wužiwar njeje w pěskowym kašćiku." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Wužiwarjej huba zatykana njeje." -msgid "No profile ID in request." -msgstr "Žadyn profilowy ID w naprašowanju." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Wotskazany" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "IM-nastajenja" @@ -5432,10 +5604,12 @@ msgstr "Wšelake druhe opcije zrjadować." msgid " (free service)" msgstr " (swobodna słužba)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Žadyn" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5447,15 +5621,19 @@ msgstr "URL skrótšić z" msgid "Automatic shortening service to use." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5464,17 +5642,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Krótšenska słužba za URL je předołha (maks. 50 znamješkow)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Njepłaćiwy wobsah zdźělenki." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Njepłaćiwy wobsah zdźělenki." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Wužiwar" @@ -5497,6 +5679,9 @@ msgstr "Njepłaćiwy powitanski tekst. Maksimalna dołhosć je 255 znamješkow." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Njepłaćiwy standardny abonement: \"%1$s\" wužiwar njeje." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profil" @@ -5548,7 +5733,7 @@ msgstr "Wužiwarske nastajenja składować." msgid "Authorize subscription" msgstr "Abonement awtorizować" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5557,16 +5742,19 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "Akceptować" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. msgid "Subscribe to this user." msgstr "Tutoho wužiwarja abonować." #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "Wotpokazać" @@ -5583,9 +5771,10 @@ msgstr "Žane awtorizaciske naprašowanje!" msgid "Subscription authorized" msgstr "Abonement awtorizowany" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" @@ -5593,9 +5782,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Abonement wotpokazany" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" @@ -5623,14 +5813,6 @@ msgstr "URI posłucharki \"%s\" je lokalny wužiwar.." msgid "Profile URL \"%s\" is for a local user." msgstr "Profilowy URL \"%s\" je za lokalneho wužiwarja." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, php-format @@ -5732,7 +5914,6 @@ msgid "Contributors" msgstr "Sobuskutkowarjo" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licenca" @@ -5761,7 +5942,6 @@ msgid "" msgstr "" #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Tykače" @@ -5847,18 +6027,6 @@ msgstr[3] "" msgid "Invalid filename." msgstr "Njepłaćiwe datajowe mjeno." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Přizamknjenje k skupinje je so njeporadźiło." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Njeje dźěl skupiny." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Wopušćenje skupiny je so njeporadźiło." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -5871,6 +6039,18 @@ msgstr "Profilowy ID %s je njepłaćiwy." msgid "Group ID %s is invalid." msgstr "Skupinski ID %s je njepłaćiwy." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Přizamknjenje k skupinje je so njeporadźiło." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Njeje dźěl skupiny." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Wopušćenje skupiny je so njeporadźiło." + #. TRANS: Activity title. msgid "Join" msgstr "Zastupić" @@ -5941,6 +6121,35 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Słanje zdźělenkow na tutym sydle je ći zakazane." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Njemóžno twoju zdźělenku wospjetować." + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "Njemóžeš swójsku zdźělenku wospjetować." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Njemóžno twoju zdźělenku wospjetować." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Njemóžno twoju zdźělenku wospjetować." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Sy tutu zdźělenku hižo wospjetował." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Wužiwar nima poslednju powěsć." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -5966,16 +6175,13 @@ msgstr "Wotmołwa za %1$d, %2$d njeda so składować." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -5997,6 +6203,7 @@ msgid "Unable to save tag." msgstr "Njeje móžno, tafličku składować." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Abonowanje je ći zakazane." @@ -6024,7 +6231,9 @@ msgstr "Znamjo OMB-abonementa njeda so zhašeć." msgid "Could not delete subscription." msgstr "Abonoment njeda so zhašeć ." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Slědować" @@ -6092,18 +6301,24 @@ msgid "User deletion in progress..." msgstr "Wužiwar so haša..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Profilowe nastajenja wobdźěłać" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Wobdźěłać" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Tutomu wužiwarja direktnu powěsć pósłać" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Powěsć" @@ -6125,10 +6340,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Abonować" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6154,7 +6365,9 @@ msgstr "Wotmołwić" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6265,8 +6478,9 @@ msgstr "" msgid "No content for notice %s." msgstr "!Žadyn wobsah za powěsć %s." -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "Wužiwar %s njeeksistuje." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6313,77 +6527,129 @@ msgstr "saveSettings() njeimplementowany." msgid "Unable to delete design setting." msgstr "Njeje móžno, designowe nastajenje zhašeć." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. #, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Startowa strona" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Startowa strona" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Administrator" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Zakładna sydłowa konfiguracija" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Sydło" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Designowa konfiguracija" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Design" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Wužiwarska konfiguracija" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Wužiwar" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Přistupna konfiguracija" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Přistup" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Konfiguracija šćežkow" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Šćežki" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Konfiguracija posedźenjow" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Posedźenja" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Sydłowu zdźělenku wobdźěłać" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Sydłowa zdźělenka" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Konfiguracija wobrazowkowych fotow" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Snapshots" +msgstr "Njejapke fota" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Licencu sydła nastajić" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licenca" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Konfiguracija šćežkow" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Tykače" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6392,6 +6658,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "Žana aplikacija za tón kluč přetrjebowarja." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6425,9 +6692,11 @@ msgstr "" msgid "Could not issue access token." msgstr "Přistupny token njeda so wudać." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Zmylk datoweje banki při zasunjenju wužiwarja OAuth-aplikacije." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "Zmylk datoweje banki při aktualizowanju wužiwarja OAuth-aplikacije." @@ -6522,6 +6791,17 @@ msgstr "" msgid "Cancel" msgstr "Přetorhnyć" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Składować" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Njeznata akcija" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "wot " @@ -6544,11 +6824,12 @@ msgstr "%1$s schwalene - přistup \"%2$s\"" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Wotwołać" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "Element \"author\" dyrbi element \"name\" wobsahować." @@ -6585,6 +6866,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Wšě abonementy" + #. TRANS: Title for command results. msgid "Command results" msgstr "Přikazowe wuslědki" @@ -6594,6 +6881,7 @@ msgid "AJAX error" msgstr "Zmylk Ajax" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Přikaz wuwjedźeny" @@ -6712,6 +7000,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -6739,10 +7029,6 @@ msgstr "Zmylk při słanju direktneje powěsće," msgid "Notice from %s repeated." msgstr "Powěsć wot %s wospjetowana." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Zmylk při wospjetowanju zdźělenki" - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7062,13 +7348,19 @@ msgstr "Móže być, zo chceš instalaciski program startować, zo by to porjed msgid "Go to the installer." msgstr "K instalaciji" +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Zmylk w datowej bance" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Zjawny" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Zničić" @@ -7076,6 +7368,7 @@ msgstr "Zničić" msgid "Delete this user" msgstr "Tutoho wužiwarja wušmórnyć" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Design składować" @@ -7088,23 +7381,14 @@ 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. -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. -msgid "Reset back to default" -msgstr "Na standard wróćo stajić" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "Dataju nahrać" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Móžeš swój wosobinski pozadkowy wobraz nahrać. Maksimalna datajowa wulkosć " "je 2 MB." @@ -7119,15 +7403,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Wupinjeny" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "Twój design njeda so aktualizować." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Designowe standardne nastajenja wobnowjene." @@ -7157,46 +7432,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Faworit" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -msgid "Not an atom feed." -msgstr "To Atomowy kanal njeje." - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "Žadyn awtor w kanalu njeje." -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +#, fuzzy +msgid "Cannot import without a user." msgstr "Import bjez wužiwarja njemóžno." #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Kanale" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Wšě" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +msgid "Choose a tag to narrow list." msgstr "" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Start" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Tutomu wužiwarjej rólu \"%s\" dać" @@ -7260,9 +7550,11 @@ msgstr[3] "" msgid "Membership policy" msgstr "Čłon wot" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7331,6 +7623,7 @@ msgid "%s blocked users" msgstr "Zablokowani wužiwarjo skupiny %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Administrator" @@ -7439,23 +7732,46 @@ msgstr[1] "%d B" msgstr[2] "%d B" msgstr[3] "%d B" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Njeznate žórło postoweho kašćika %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Zastupić" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Wopušćić" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Přizjewjenje" @@ -7504,6 +7820,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s slěduje twoje zdźělenki na %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s slěduje twoje zdźělenki na %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -7711,9 +8041,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Jenož wužiwar móže swoje póstowe kašćiki čitać." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -7722,32 +8054,46 @@ msgstr "" "wužiwarjow do konwersacije zaplesć. Ludźo móža ći powěsće pósłać, kotrež " "jenož ty móžeš widźeć." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +msgctxt "MENU" msgid "Inbox" msgstr "Dochadny póst" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Twoje dochadźace powěsće" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +msgctxt "MENU" msgid "Outbox" msgstr "Wuchadny póst" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Twoje pósłane powěsće" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Powěsć njeda so analyzować." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Žadyn zregistrowany wužiwar." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Wodaj, to twoja adresa za dochadźace e-mejle njeje." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Wodaj, dochadźaće e-mejle njejsu dowolene." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Njepodpěrany powěsćowy typ: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -7801,10 +8147,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "\"%s\" njeje podpěrany datajowy typ na tutym serwerje." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Direktnu zdźělenku pósłać" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "Přijimowarja wubrać:" @@ -7812,31 +8161,67 @@ msgstr "Přijimowarja wubrać:" msgid "No mutual subscribers." msgstr "Žani wzajomni abonenća." +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Komu" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Pósłać" +#. TRANS: Header in message list. msgid "Messages" msgstr "Powěsće" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "wot" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "Web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "E-mejl" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Njesměš tutu skupinu zhašeć." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Tutoho wužiwarja njezhašeć." -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -7884,68 +8269,95 @@ msgid "" "try again later" msgstr "" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Zdźělenki" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "J" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "W" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "Z" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "w" -msgid "web" -msgstr "Web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "w konteksće" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Wospjetowany wot" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Na tutu zdźělenku wotmołwić" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Wotmołwić" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Tutu zdźělenku wušmórnyć" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Zdźělenka wospjetowana" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Tutoho wužiwarja storčić" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Stork" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Tutomu wužiwarjej stork pósłać" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Zmylk při zasunjenju noweho profila." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Zmylk při zasunjenju awatara." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Zmylk při zasunjenju zdaleneho profila." @@ -7953,19 +8365,49 @@ msgstr "Zmylk při zasunjenju zdaleneho profila." msgid "Duplicate notice." msgstr "Dwójna zdźělenka." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Nowy abonement njeda so zasunyć." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item title in personal group navigation menu. #, fuzzy msgid "Your profile" msgstr "Skupinski profil" +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" msgid "Replies" msgstr "Wotmołwy" +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" msgid "Favorites" msgstr "Fawority" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Wužiwar" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Powěsće" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Twoje dochadźace powěsće" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -7989,35 +8431,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. #, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "SMS-nastajenja" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Twoje profilowe nastajenja změnić" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Wužiwarska konfiguracija" -#, fuzzy +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "Wotzjewić" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Logout from the site" +msgid "Logout from the site." msgstr "Ze sydła wotzjewić" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Login to the site" +msgid "Login to the site." msgstr "Při sydle přizjewić" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "Pytać" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Pytanske sydło" #. TRANS: H2 text for user subscription statistics. @@ -8064,30 +8516,52 @@ msgstr "Wšě skupiny" msgid "Unimplemented method." msgstr "Njeimplementowana metoda." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Skupiny" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Wužiwarske skupiny" +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "Recent tags" msgstr "" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Wuběrne" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Woblubowany" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Žane wróćenske argumenty." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Tutu zdźělenku wospjetować?" -msgid "Yes" -msgstr "Haj" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Tutu zdźělenku wospjetować" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Rólu \"%s\" tutoho wužiwarja wotwołać" @@ -8096,9 +8570,13 @@ msgstr "Rólu \"%s\" tutoho wužiwarja wotwołać" msgid "Page not found." msgstr "Strona njenamakana." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Pěskowy kašćik" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Tutoho wužiwarja do pěskoweho kašćika pósłać" @@ -8116,128 +8594,273 @@ msgctxt "BUTTON" msgid "Search" msgstr "Pytać" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Ludźo" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Ludźi na tutym sydle pytać" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Zdźělenki" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Wobsah zdźělenkow přepytać" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Skupiny na tutym sydle pytać" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "Pomoc" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Wo" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "Huste prašenja" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "Wužiwarske wuměnjenja" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Priwatnosć" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Žórło" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Wersija" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Kontakt" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Plaketa" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Wotrězk bjez titula" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Wjace..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "SMS-nastajenja" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Twoje profilowe nastajenja změnić" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Awatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Awatar nahrać" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Hesło" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Twoje hesło změnić" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "E-mejl" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Twój profil wuhotować" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Aktualizacije přez Instant Messenger (IM)" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Aktualizacije přez SMS" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" msgid "Connections" msgstr "Zwiski" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Awtorizowane zwjazane aplikacije" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Hubu zatykać" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Tutomu wužiwarjej hubu zatykać" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Abonementy" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Ludźo, kotrychž %s abonuje" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Abonenća" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Ludźo, kotřiž su %s abonowali" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Skupiny, w kotrychž %s je čłon" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "Přeprosyć" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +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ć" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Tutoho wužiwarja abonować" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Žadyn" @@ -8245,18 +8868,26 @@ msgstr "Žadyn" msgid "Invalid theme name." msgstr "Njepłaćiwe šatowe mjeno." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Šatowa dataja faluje abo nahraće je so njeporadźiło." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Składowanje šata je so njeporadźiło." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Njepłaćiwy šat: špatna rjadowakowa struktura." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8266,30 +8897,31 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Njepłaćiwy šatowy archiw: falowaca css-dataja/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "Šat wobsahuje njewěste datajowe sufiksy; to móhło njewěste być." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Šat wobsahuje dataju typa '.%s', kotryž njeje dowoleny." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Zmylk při wočinjenju šatoweho archiwa." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Zdźělenki" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -8322,8 +8954,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Tutu zdźělenku faworitam přidać" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Tutu zdźělenku z faworitow wotstronić" @@ -8337,8 +8970,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Sy tutu zdźělenku hižo wospjetował." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Tuta zdźělenka bu hižo wospjetowana." @@ -8350,6 +8984,28 @@ msgstr[3] "Tuta zdźělenka bu hižo wospjetowana." msgid "Top posters" msgstr "" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Komu" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Njeznaty werb: \"%s\"." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8475,7 +9131,5 @@ msgstr "Njepłaćiwy XML, korjeń XRD faluje." msgid "Getting backup from file '%s'." msgstr "Wobstaruje so zawěsćenje z dataje \"%s\"-" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "" -#~ "Powěsć je předołho - maksimalna wulkosć je %1$d znamješkow, ty sy %2$d " -#~ "pósłał." +#~ msgid "Couldn't update your design." +#~ msgstr "Twój design njeda so aktualizować." diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index 7eeeaf6f36..9af6024782 100644 --- a/locale/hu/LC_MESSAGES/statusnet.po +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -12,20 +12,54 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:54+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:57+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Ismeretlen fájltípus" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Ismeretlen művelet" + #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Hozzáférés" @@ -79,7 +113,9 @@ msgstr "Hozzáférések beállításainak mentése" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -91,6 +127,7 @@ msgstr "Mentés" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Nincs ilyen lap." @@ -109,6 +146,7 @@ msgstr "Nincs ilyen lap." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -133,8 +171,11 @@ msgstr "Nincs ilyen lap." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Nincs ilyen felhasználó." @@ -147,7 +188,15 @@ msgstr "%1$s és barátai, %2$d oldal" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s és barátai" @@ -215,28 +264,14 @@ msgstr "Te és a barátaid" msgid "Updates from %1$s and friends on %2$s!" msgstr "Frissítések %1$s felhasználótól, és barátok a következő oldalon: %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "Az API-metódus nem található." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -270,6 +305,7 @@ msgstr "Nem sikerült frissíteni a felhasználót." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "A felhasználónak nincs profilja." @@ -309,6 +345,8 @@ msgstr "Nem sikerült elmenteni a megjelenítési beállításaid." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Nem sikerült frissíteni a megjelenítést." @@ -684,9 +722,12 @@ msgstr "Nincs jogosultságod." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Probléma volt a munkameneted tokenjével. Kérlek, próbáld újra." @@ -834,16 +875,6 @@ msgstr "Nem törölheted más felhasználók állapotait." msgid "No such notice." msgstr "Nincs ilyen hír." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Nem ismételheted meg a saját híredet." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Már megismételted azt a hírt." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -887,8 +918,11 @@ msgstr "Hír törlése" msgid "Client must provide a 'status' parameter with a value." msgstr "" +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -902,6 +936,8 @@ msgstr "Az API-metódus nem található." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -973,6 +1009,8 @@ msgstr "" msgid "Repeats of %s" msgstr "" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%s (@%s) az általad küldött hírt hozzáadta a kedvenceihez" @@ -987,6 +1025,8 @@ msgstr "Hírek %s címkével" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "" @@ -1103,11 +1143,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Nincs ilyen profil." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1115,10 +1157,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "A csoportban lévő felhasználók listája." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1143,6 +1187,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "A csoportban lévő felhasználók listája." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Nem sikerült %1$s felhasználót hozzáadni a %2$s csoporthoz." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "%1$s / %2$s kedvencei" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Feliratkozások" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Feliratkozások" + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1184,7 +1256,7 @@ msgstr "Hozzáadás a kedvencekhez" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "%s csoport tagjai" #. TRANS: Subtitle for group membership feed. @@ -1198,8 +1270,7 @@ msgstr "" msgid "Cannot add someone else's membership." msgstr "Nem sikerült törölni a kedvencet." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Keressünk a hírek tartalmában" @@ -1319,6 +1390,7 @@ msgstr "Feltöltheted a személyes avatarodat. A fájl maximális mérete %s leh #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "" @@ -1345,6 +1417,7 @@ msgstr "Előnézet" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. #, fuzzy msgctxt "BUTTON" msgid "Delete" @@ -1460,6 +1533,7 @@ msgstr "Ne blokkoljuk ezt a felhasználót" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Igen" @@ -1518,6 +1592,32 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s csatlakozott a(z) %2$s csoporthoz" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Nem vagy bejelentkezve." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "" + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Nincs ilyen azonosítóval rendelkező profil." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Kövessük" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Nincs megerősítő kód." @@ -1658,6 +1758,7 @@ msgstr "" msgid "You are not the owner of this application." msgstr "" +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "" @@ -1732,24 +1833,6 @@ msgstr "Ne töröljük ezt a hírt" 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. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Nem vagy bejelentkezve." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1943,16 +2026,19 @@ 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. #, 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. #, 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. #, fuzzy msgid "Save design." msgstr "Design mentése" @@ -2290,6 +2376,7 @@ msgstr "Kedvenc eltávolítása" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Népszerű hírek" @@ -2327,6 +2414,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "%s kedvenc hírei" @@ -2339,6 +2428,7 @@ msgstr "" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Kiemelt felhasználók" @@ -2400,6 +2490,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "" #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Nem sikerült frissíteni a távoli profilt." @@ -2437,14 +2528,6 @@ msgstr "A felhasználónak már van ilyen szerepe." msgid "No profile specified." msgstr "Nincs profil megadva." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Nincs ilyen azonosítóval rendelkező profil." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3031,6 +3114,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privát" @@ -3267,6 +3351,9 @@ msgid "Ajax Error" msgstr "Ajax-hiba" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Új hír" @@ -3564,7 +3651,6 @@ msgid "Password saved." msgstr "Jelszó elmentve." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Útvonalak" @@ -3774,6 +3860,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Soha" @@ -3934,17 +4021,22 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "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. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +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: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3957,7 +4049,9 @@ msgid "Location" msgstr "Helyszín" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Merre vagy, mint pl. \"Város, Megye, Ország\"" #. TRANS: Checkbox label in form for profile settings. @@ -3965,6 +4059,9 @@ msgid "Share my current location when posting notices" msgstr "Tegyük közzé az aktuális tartózkodási helyem amikor híreket küldök" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Címkék" @@ -4002,6 +4099,27 @@ msgstr "" "Automatikusan iratkozzunk fel mindazok híreire, aki feliratkoznak a mieinkre " "(nem embereknek való)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Feliratkozások" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4034,7 +4152,7 @@ msgstr "Érvénytelen címke: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Nem sikerült a felhasználónak automatikus feliratkozást beállítani." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4043,6 +4161,7 @@ msgid "Could not save location prefs." msgstr "Nem sikerült a helyszín beállításait elmenteni." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "" @@ -4073,6 +4192,7 @@ msgid "Public timeline, page %d" msgstr "Közösségi történet, %d. oldal" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Közösségi történet" @@ -4245,10 +4365,6 @@ msgstr "Jelszó visszaállítás kérvényezve" msgid "Password saved" msgstr "Jelszó elmentve." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Ismeretlen művelet" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4343,6 +4459,7 @@ msgstr "A regisztráció nem megengedett." msgid "You cannot register if you do not agree to the license." msgstr "Nem tudsz regisztrálni ha nem fogadod el a licencet." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Az e-mail cím már létezik." @@ -4380,26 +4497,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "Hosszabb név, célszerűen a \"valódi\" neved" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -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: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Jellemezd önmagad és az érdeklődési köröd" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Merre vagy, mint pl. \"Város, Megye, Ország\"" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4497,6 +4595,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4530,16 +4630,8 @@ msgstr "" msgid "No notice specified." msgstr "Nincs hír megjelölve." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Nem ismételheted meg a saját híredet." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "" - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "" @@ -4550,6 +4642,8 @@ msgstr "" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "" @@ -4657,6 +4751,7 @@ msgid "System error uploading file." msgstr "" #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Összes tag" @@ -4697,6 +4792,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "" @@ -4883,6 +4979,8 @@ msgstr "Tagok" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(nincs)" @@ -4963,6 +5061,11 @@ msgstr "" msgid "Message from %1$s on %2$s" msgstr "" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "IM nem elérhető." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "A hírt töröltük." @@ -4970,20 +5073,20 @@ msgstr "A hírt töröltük." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %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, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%1$s és barátai, %2$d oldal" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "%1$s kimenő postafiókja - %2$d. oldal" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5067,6 +5170,7 @@ msgid "Repeat of %s" msgstr "%s ismétlése" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Ezen a webhelyen nem hallgattathatod el a felhasználókat." @@ -5351,52 +5455,70 @@ msgstr "" msgid "No code entered." msgstr "Nincs kód megadva" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Pillanatképek" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "" +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Pillanatképek" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Adat pillanatképek" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Gyakoriság" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL jelentése" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Mentés" - -msgid "Save snapshot settings" -msgstr "" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." +msgstr "Mentsük el a webhely beállításait" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. msgid "You are not subscribed to that profile." @@ -5407,6 +5529,27 @@ msgstr "" msgid "Could not save subscription." msgstr "" +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s csoport tagjai" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s csoport, %2$d. oldal" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "A csoportban lévő felhasználók listája." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5518,31 +5661,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s címke RSS 1.0 hírcsatornája" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s címke RSS 2.0 hírcsatornája" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "%s címke Atom hírcsatornája" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "" +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Felhasználói profil" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5551,13 +5706,22 @@ msgstr "" "Címkék magadhoz (betűk, számok, -, ., és _), vesszővel vagy szóközzel " "elválasztva" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Címkék" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Nincs ilyen címke." @@ -5565,23 +5729,29 @@ msgstr "Nincs ilyen címke." msgid "You haven't blocked that user." msgstr "" +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "" +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "" -msgid "No profile ID in request." -msgstr "" - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, 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" +"\"." +msgstr "A hír licence ‘%1$s’ nem kompatibilis a webhely licencével ‘%2$s’." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "IM beállítások" @@ -5596,9 +5766,11 @@ msgstr "Számos egyéb beállítás kezelése." msgid " (free service)" msgstr " (ingyenes szolgáltatás)" +#. TRANS: Default value for URL shortening settings. msgid "[none]" msgstr "" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5610,15 +5782,19 @@ msgstr "" msgid "Automatic shortening service to use." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5628,17 +5804,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "A nyelv túl hosszú (legfeljebb 50 karakter lehet)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Érvénytelen megjegyzéstartalom." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Érvénytelen megjegyzéstartalom." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "" @@ -5662,6 +5842,9 @@ msgstr "Érvénytelen SSL szerver. A maximális hossz 255 karakter." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profil" @@ -5715,7 +5898,7 @@ msgstr "Mentsük el a webhely beállításait" msgid "Authorize subscription" msgstr "Feliratkozás engedélyezése" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5724,18 +5907,21 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" msgstr "Elfogadás" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Ezen felhasználók híreire már feliratkoztál:" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5754,9 +5940,10 @@ msgstr "" msgid "Subscription authorized" msgstr "" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" @@ -5764,9 +5951,10 @@ msgstr "" msgid "Subscription rejected" msgstr "" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" @@ -5794,14 +5982,6 @@ msgstr "" 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. -#, 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. #, fuzzy, php-format @@ -5903,7 +6083,6 @@ msgid "Contributors" msgstr "Közreműködők" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licenc" @@ -5932,7 +6111,6 @@ msgid "" msgstr "" #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "" @@ -6012,18 +6190,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "" -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "" - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "" - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "" - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6036,6 +6202,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "Hiba a felhasználó mentésekor; érvénytelen." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "" + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "" + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "" + #. TRANS: Activity title. msgid "Join" msgstr "Csatlakozzunk" @@ -6106,6 +6284,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "" +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Nem ismételheted meg a saját híredet." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Nem ismételheted meg a saját híredet." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Nem ismételheted meg a saját híredet." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Nem ismételheted meg a saját híredet." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "" + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "%1$s feliratkozott a híreidre a %2$s webhelyen." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6131,16 +6339,13 @@ msgstr "Nem sikerült menteni a profilt." msgid "RT @%1$s %2$s" msgstr "" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s - %2$s" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6162,6 +6367,7 @@ msgid "Unable to save tag." msgstr "" #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Eltiltottak a feliratkozástól." @@ -6189,9 +6395,11 @@ msgstr "" msgid "Could not delete subscription." msgstr "" -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "Engedjük" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6257,18 +6465,24 @@ msgid "User deletion in progress..." msgstr "" #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" -msgstr "" +#, fuzzy +msgid "Edit profile settings." +msgstr "Profilbeállítások" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Szerkesztés" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" -msgstr "" +#, fuzzy +msgid "Send a direct message to this user." +msgstr "Közvetlen üzenetek neki: %s" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Üzenet" @@ -6290,10 +6504,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderátor" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Kövessük" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6319,7 +6529,9 @@ msgstr "Válasz" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6433,8 +6645,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Keressünk a hírek tartalmában" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "Nincs ilyen felhasználó." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6481,76 +6694,128 @@ msgstr "" msgid "Unable to delete design setting." msgstr "Nem sikerült törölni a megjelenés beállításait." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Otthon" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Otthon" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Adminisztrátor" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "A webhely elemi beállításai" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "A megjelenés beállításai" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "A felhasználók beállításai" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Felhasználó" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "A jogosultságok beállításai" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Hozzáférés" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Az útvonalak beállításai" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Útvonalak" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Munkamenetek beállításai" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Munkamenetek" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "A webhely híre" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Snapshots" +msgstr "Pillanatképek" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licenc" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Az útvonalak beállításai" +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Plugins" +msgstr "" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6559,6 +6824,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6595,9 +6861,11 @@ msgstr "" msgid "Could not issue access token." msgstr "Nem sikerült az üzenetet feldolgozni." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "" +#. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "" @@ -6690,6 +6958,17 @@ msgstr "" msgid "Cancel" msgstr "Mégse" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Mentés" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Ismeretlen művelet" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -6712,11 +6991,12 @@ msgstr "" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -6756,6 +7036,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Összes feliratkozás" + #. TRANS: Title for command results. msgid "Command results" msgstr "" @@ -6766,6 +7052,7 @@ msgid "AJAX error" msgstr "Ajax-hiba" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "" @@ -6884,6 +7171,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -6904,10 +7193,6 @@ msgstr "Hiba a közvetlen üzenet küldése közben." msgid "Notice from %s repeated." msgstr "" -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Hiba a hír ismétlésekor." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7208,13 +7493,18 @@ msgstr "A telepítő futtatása kijavíthatja ezt." msgid "Go to the installer." msgstr "Menj a telepítőhöz." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Adatbázishiba" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "Public" msgstr "" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Törlés" @@ -7222,6 +7512,7 @@ msgstr "Törlés" msgid "Delete this user" msgstr "Töröljük ezt a felhasználót" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Design mentése" @@ -7234,14 +7525,6 @@ 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. -msgid "Restore default designs" -msgstr "" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Visszaállítás az alapértelmezettre" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7250,7 +7533,7 @@ msgstr "Fájl feltöltése" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "Feltöltheted a személyes avatarodat. A fájl maximális mérete %s lehet." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. @@ -7265,15 +7548,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Ki" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "Nem sikerült frissíteni a designt." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "" @@ -7305,47 +7579,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Kedvelem" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "" -#, fuzzy -msgid "Not an atom feed." -msgstr "Összes tag" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Összes" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Válassz egy címkét amire szűrjünk" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Címke" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Válassz egy címkét hogy szűkítsük a listát" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Menjünk" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "" @@ -7411,9 +7699,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Tagság kezdete:" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7480,6 +7770,7 @@ msgid "%s blocked users" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "" @@ -7580,23 +7871,46 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "" +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Csatlakozzunk" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Távozzunk" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "" @@ -7658,6 +7972,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s feliratkozott a híreidre a %2$s webhelyen." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s feliratkozott a híreidre a %2$s webhelyen." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -7914,9 +8242,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Csak a felhasználó láthatja a saját postaládáját." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -7925,34 +8255,48 @@ msgstr "" "keveredj más felhasználókkal. Olyan üzenetet küldhetnek neked emberek, amit " "csak te láthatsz." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. #, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Homokozó" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "A bejövő üzeneteid" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. #, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "%s kimenő postafiókja" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "A küldött üzeneteid" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Nem sikerült az üzenetet feldolgozni." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Nem egy regisztrált felhasználó." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Sajnos az nem a te bejövő email-címed." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Sajnos a bejövő email nincs engedélyezve." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Nem támogatott üzenet-típus: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8002,10 +8346,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Küldjünk egy üzenetet közvetlenül" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Válassz egy szolgáltatót" @@ -8015,32 +8362,67 @@ msgstr "Válassz egy szolgáltatót" msgid "No mutual subscribers." msgstr "Nem követed figyelemmel!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Címzett" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Üzenet" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "írta" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +msgctxt "SOURCE" +msgid "web" msgstr "" +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "E-mail" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Nem vagy tagja ennek a csoportnak." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Ne töröljük ezt a hírt" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8086,68 +8468,95 @@ msgid "" "try again later" msgstr "" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Hírek" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "É" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "D" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "K" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "Ny" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" +#. TRANS: Followed by geo location. msgid "at" msgstr "" -msgid "web" -msgstr "" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "előzmény" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Megismételte:" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Válaszoljunk erre a hírre" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Válasz" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Töröljük ezt a hírt" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "A hírt megismételtük" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Bökjük meg ezt a felhasználót" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Megbök" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Bökjük meg ezt a felhasználót" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8155,19 +8564,52 @@ msgstr "" msgid "Duplicate notice." msgstr "" -msgid "Couldn't insert new subscription." -msgstr "" +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." +msgstr "Nem sikerült beilleszteni a megerősítő kódot." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item title in personal group navigation menu. #, fuzzy msgid "Your profile" msgstr "Csoportprofil" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Válaszok" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Kedvencek" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Felhasználó" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Üzenet" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "A bejövő üzeneteid" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8191,32 +8633,47 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. #, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "SMS beállítások" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Változtasd meg a jelszavad" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "A felhasználók beállításai" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Kijelentkezés" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Kijelentkezés a webhelyről" -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "Bejelentkezés a webhelyre" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Keresés" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "A webhely témája." #. TRANS: H2 text for user subscription statistics. @@ -8263,30 +8720,52 @@ msgstr "Összes csoport" msgid "Unimplemented method." msgstr "" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Csoportok" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "A felhasználó csoportjai" +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "Recent tags" msgstr "" -msgid "Featured" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" msgstr "" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Featured" +msgstr "Kiemelt felhasználók" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Népszerű" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "" +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Megismételjük ezt a hírt?" -msgid "Yes" -msgstr "Igen" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Ismételjük meg ezt a hírt" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "" @@ -8296,9 +8775,13 @@ msgstr "" msgid "Page not found." msgstr "Az API-metódus nem található." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Homokozó" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "" @@ -8316,148 +8799,306 @@ msgctxt "BUTTON" msgid "Search" msgstr "" -msgid "People" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" msgstr "" +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "People" +msgstr "Emberek keresése" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Emberek keresése az oldalon" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Hírek" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Keressünk a hírek tartalmában" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Csoportok keresése az oldalon" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Súgó" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Névjegy" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "GyIK" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "Felhasználási feltételek" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" -msgstr "" +msgstr "Privát" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Forrás" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" -msgstr "" +msgstr "Munkamenetek" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Kapcsolat" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" -msgstr "" +msgstr "Megbök" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Névtelen szakasz" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Tovább…" +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "SMS beállítások" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Avatar feltöltése" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Jelszó" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Változtasd meg a jelszavad" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "E-mail" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Email kezelés megváltoztatása" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL-cím" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "IM" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Kapcsolatok" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" -msgstr "" +msgstr "A webhely híre" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Feliratkozások" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." +msgstr "Senkinek sem iratkoztál fel a híreire." + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Feliratkozók" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." +msgstr "Már feliratkoztál!" + +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "People %s subscribes to" +msgctxt "MENU" +msgid "Pending (%d)" msgstr "" +#. TRANS: Menu item title in local navigation menu. #, php-format -msgid "People subscribed to %s" +msgid "Approve pending subscription requests." msgstr "" -#, php-format -msgid "Groups %s is a member of" -msgstr "" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." +msgstr "A legtöbb tagból álló csoportok" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Meghívás" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "" +"Ezen űrlap segítségével meghívhatsz barátokat és kollégákat erre a " +"szolgáltatásra." +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" -msgstr "" +msgstr "(nincs)" #. TRANS: Server exception displayed if a theme name was invalid. #, fuzzy msgid "Invalid theme name." msgstr "Érvénytelen megjegyzéstartalom." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "" +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "" -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8465,30 +9106,30 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "" -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Hírek" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -8519,8 +9160,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Kedvelem ezt a hírt" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Nem kedvelem ezt a hírt" @@ -8532,8 +9174,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Ne töröljük ezt a hírt" +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Már megismételted azt a hírt." @@ -8543,6 +9186,28 @@ msgstr[1] "Már megismételted azt a hírt." msgid "Top posters" msgstr "" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Címzett" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Ismeretlen nyelv: \"%s\"." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8661,6 +9326,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#, fuzzy -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Az túl hosszú. Egy hír legfeljebb %d karakterből állhat." +#~ msgid "Couldn't update your design." +#~ msgstr "Nem sikerült frissíteni a designt." diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index a8c68e1404..a1ba7f2109 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,20 +9,54 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:55+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Incognite" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Action incognite" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Accesso" @@ -74,7 +108,9 @@ msgstr "Salveguardar configurationes de accesso" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -86,6 +122,7 @@ msgstr "Salveguardar" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Pagina non existe." @@ -104,6 +141,7 @@ msgstr "Pagina non existe." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -128,8 +166,11 @@ msgstr "Pagina non existe." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Iste usator non existe." @@ -142,7 +183,15 @@ msgstr "%1$s e amicos, pagina %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s e amicos" @@ -214,28 +263,14 @@ msgstr "Tu e amicos" msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualisationes de %1$s e su amicos in %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "Methodo API non trovate." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -271,6 +306,7 @@ msgstr "Non poteva actualisar le usator." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Le usator non ha un profilo." @@ -310,6 +346,8 @@ msgstr "Impossibile salveguardar le configurationes del apparentia." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Non poteva actualisar le apparentia." @@ -679,9 +717,12 @@ msgstr "Indicio de requesta jam autorisate." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Occurreva un problema con le indicio de tu session. Per favor reproba." @@ -836,16 +877,6 @@ msgstr "Tu non pote deler le stato de un altere usator." msgid "No such notice." msgstr "Nota non trovate." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Non pote repeter tu proprie nota." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Iste nota ha ja essite repetite." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -887,8 +918,11 @@ msgstr "Nota %d delite" msgid "Client must provide a 'status' parameter with a value." msgstr "Le cliente debe fornir un parametro 'status' con un valor." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -903,6 +937,8 @@ msgstr "Nota genitor non trovate." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -975,6 +1011,8 @@ msgstr "Notas de %1$s que esseva repetite a %2$s / %3$s." msgid "Repeats of %s" msgstr "Repetitiones de %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "Notas de %1$s que %2$s / %3$s ha repetite." @@ -989,6 +1027,8 @@ msgstr "Notas con etiquetta %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualisationes con etiquetta %1$s in %2$s!" @@ -1104,10 +1144,12 @@ msgstr "" "de adhesion." #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. msgid "Must specify a profile." msgstr "Es necessari specificar un profilo." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, php-format @@ -1115,10 +1157,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "%s non es in le cauda de moderation pro iste gruppo." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "Error interne: ni cancellation ni abortamento recipite." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "Error interne: e cancellation e abortamento recipite." @@ -1144,6 +1188,34 @@ msgstr "Requesta de adhesion approbate." msgid "Join request canceled." msgstr "Requesta de adhesion cancellate." +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "%s non es in le cauda de moderation pro tu subscriptiones." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "" +"Non poteva cancellar o approbar le requesta de adhesion del usator %1$s al " +"gruppo %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Le requesta de %1$s" + +#. TRANS: Message on page for user after approving a subscription request. +msgid "Subscription approved." +msgstr "Subscription approbate." + +#. TRANS: Message on page for user after rejecting a subscription request. +msgid "Subscription canceled." +msgstr "Subscription cancellate." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1180,7 +1252,7 @@ msgstr "Es ja favorite." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "Membratos del gruppo %s" #. TRANS: Subtitle for group membership feed. @@ -1193,8 +1265,7 @@ msgstr "Gruppos del quales %1$s es membro in %2$s" msgid "Cannot add someone else's membership." msgstr "Non es possibile adder le membrato de un altere persona." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "Solmente le activitates de adhesion es possibile." @@ -1307,6 +1378,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Usator sin profilo correspondente" @@ -1333,6 +1405,7 @@ msgstr "Previsualisation" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Deler" @@ -1450,6 +1523,7 @@ msgstr "Non blocar iste usator." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Si" @@ -1506,6 +1580,31 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s quitava le gruppo %2$s" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Tu non ha aperite un session." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Nulle ID de profilo in requesta." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Non existe un profilo con iste ID." + +#. TRANS: Title after unsubscribing from a group. +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Subscription cancellate" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Nulle codice de confirmation." @@ -1641,6 +1740,7 @@ msgstr "Application non trovate." msgid "You are not the owner of this application." msgstr "Tu non es le proprietario de iste application." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Il habeva un problema con tu indicio de session." @@ -1711,24 +1811,6 @@ msgstr "Non deler iste gruppo." msgid "Delete this group." msgstr "Deler iste gruppo." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Tu non ha aperite un session." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1919,14 +2001,17 @@ msgid "Use defaults" msgstr "Usar predefinitiones" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." msgstr "Restaurar apparentias predefinite." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "Revenir al predefinitiones." #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." msgstr "Salveguardar apparentia." @@ -2256,6 +2341,7 @@ msgstr "Disfavorir favorite." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Notas popular" @@ -2296,6 +2382,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Notas favorite de %s" @@ -2308,6 +2396,7 @@ msgstr "Actualisationes favorite per %1$s in %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Usatores in evidentia" @@ -2369,6 +2458,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Le servicio remote usa un version incognite del protocollo OMB." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Error durante le actualisation del profilo remote." @@ -2406,14 +2496,6 @@ msgstr "Le usator ha ja iste rolo." msgid "No profile specified." msgstr "Nulle profilo specificate." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Non existe un profilo con iste ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3020,6 +3102,7 @@ msgid "License selection" msgstr "Selection de licentia" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Private" @@ -3253,6 +3336,9 @@ msgid "Ajax Error" msgstr "Error de Ajax" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nove nota" @@ -3556,7 +3642,6 @@ msgid "Password saved." msgstr "Contrasigno salveguardate." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Camminos" @@ -3748,6 +3833,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Nunquam" @@ -3906,17 +3992,21 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" -msgstr[0] "Describe te e tu interesses in %d character" -msgstr[1] "Describe te e tu interesses in %d characteres" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." +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. -msgid "Describe yourself and your interests" -msgstr "Describe te e tu interesses" +#. TRANS: Text area title on account registration page. +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: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3929,14 +4019,18 @@ msgid "Location" msgstr "Loco" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Ubi tu es, como \"Citate, Stato (o Region), Pais\"" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Ubi tu es, como \"Citate, Stato (o Region), Pais\"." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" msgstr "Divulgar mi loco actual quando io publica notas" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Etiquettas" @@ -3971,6 +4065,26 @@ msgstr "" "Subscriber me automaticamente a qui se subscribe a me (utile pro non-" "humanos)." +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +msgid "Subscription policy" +msgstr "Politica de subscription" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "Permitter a omnes de sequer me" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "Demandar me lo primo" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "Si altere usatores require tu permission pro sequer te." + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "Render actualisationes visibile solmente a mi sequitores" + #. 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). @@ -4001,14 +4115,17 @@ msgstr "Etiquetta invalide: \"%s\"." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -msgid "Could not update user for autosubscribe." -msgstr "Non poteva actualisar le usator pro autosubscription." +msgid "Could not update user for autosubscribe or subscribe_policy." +msgstr "" +"Non poteva actualisar autosubscription o politica de subscription in le " +"conto del usator." #. TRANS: Server error thrown when user profile location preference settings could not be updated. msgid "Could not save location prefs." msgstr "Non poteva salveguardar le preferentias de loco." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Non poteva salveguardar etiquettas." @@ -4039,6 +4156,7 @@ msgid "Public timeline, page %d" msgstr "Chronologia public, pagina %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Chronologia public" @@ -4219,10 +4337,6 @@ msgstr "Recuperation de contrasigno requestate" msgid "Password saved" msgstr "Contrasigno salveguardate" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Action incognite" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "6 o plus characteres, e non oblida lo!" @@ -4313,6 +4427,7 @@ msgstr "Creation de conto non permittite." msgid "You cannot register if you do not agree to the license." msgstr "Tu non pote crear un conto si tu non accepta le licentia." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Le adresse de e-mail existe ja." @@ -4348,24 +4463,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "Nomine plus longe, preferibilemente tu nomine \"real\"." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Describe te e tu interesses in %d character." -msgstr[1] "Describe te e tu interesses in %d characteres." - -#. TRANS: Text area title on account registration page. -msgid "Describe yourself and your interests." -msgstr "Describe te e tu interesses." - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Ubi tu es, como \"Citate, Stato (o Region), Pais\"." - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. msgctxt "BUTTON" msgid "Register" msgstr "Crear conto" @@ -4483,6 +4581,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "URL de tu profilo in un altere servicio de microblogging compatibile." #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. msgctxt "BUTTON" msgid "Subscribe" msgstr "Subscriber" @@ -4515,15 +4615,8 @@ msgstr "Solmente usatores authenticate pote repeter notas." msgid "No notice specified." msgstr "Nulle nota specificate." -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "Tu non pote repeter tu proprie nota." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Tu ha ja repetite iste nota." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Repetite" @@ -4534,6 +4627,8 @@ msgstr "Repetite!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Responsas a %s" @@ -4646,6 +4741,7 @@ msgid "System error uploading file." msgstr "Error de systema durante le incargamento del file." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." msgstr "Non es un syndication Atom." @@ -4687,6 +4783,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Tu non pote mitter usatores in le cassa de sablo in iste sito." @@ -4878,6 +4975,8 @@ msgstr "Membros" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Nulle)" @@ -4958,6 +5057,10 @@ msgstr "Message a %1$s in %2$s" msgid "Message from %1$s on %2$s" msgstr "Message de %1$s in %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +msgid "Not available." +msgstr "Non disponibile." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Nota delite." @@ -4965,20 +5068,20 @@ msgstr "Nota delite." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format -msgid "%1$s tagged %2$s" -msgstr "%1$s etiquettate con %2$s" +msgid "Notices by %1$s tagged %2$s" +msgstr "Notas per %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, %3$d is the page number. #, php-format -msgid "%1$s tagged %2$s, page %3$d" -msgstr "%1$s etiquettate con %2$s, pagina %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" +msgstr "Notas per %1$s etiquettate con %2$s, pagina %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. #, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, pagina %2$d" +msgid "Notices by %1$s, page %2$d" +msgstr "Notas per %1$s, pagina %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5067,6 +5170,7 @@ msgid "Repeat of %s" msgstr "Repetition de %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Tu non pote silentiar usatores in iste sito." @@ -5353,52 +5457,67 @@ msgstr "" msgid "No code entered." msgstr "Nulle codice entrate." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" msgid "Snapshots" msgstr "Instantaneos" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Gerer configuration de instantaneos" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Valor de execution de instantaneo invalide." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "Le frequentia de instantaneos debe esser un numero." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "Le URL pro reportar instantaneos es invalide." +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Instantaneos" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Aleatorimente durante un accesso web" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "In un processo planificate" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Instantaneos de datos" -msgid "When to send statistical data to status.net servers" -msgstr "Quando inviar datos statistic al servitores de status.net" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." +msgstr "Quando inviar datos statistic al servitores de status.net." +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frequentia" -msgid "Snapshots will be sent once every N web hits" -msgstr "Un instantaneo essera inviate a cata N accessos web" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." +msgstr "Un instantaneo essera inviate a cata N accessos web." +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL pro reporto" -msgid "Snapshots will be sent to this URL" -msgstr "Le instantaneos essera inviate a iste URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." +msgstr "Le instantaneos essera inviate a iste URL." -#. TRANS: Submit button title. -msgid "Save" -msgstr "Salveguardar" - -msgid "Save snapshot settings" -msgstr "Salveguardar configuration de instantaneos" +#. TRANS: Title for button to save snapshot settings. +msgid "Save snapshot settings." +msgstr "Salveguardar configuration de instantaneos." #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. msgid "You are not subscribed to that profile." @@ -5409,6 +5528,26 @@ msgstr "Tu non es subscribite a iste profilo." msgid "Could not save subscription." msgstr "Non poteva salveguardar le subscription." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "Tu pote solmente approbar le proprie subscriptiones pendente." + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, php-format +msgid "%s subscribers awaiting approval" +msgstr "Subscriptores a %s attendente approbation" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Subscriptores de %1$s attendente approbation, pagina %2$d" + +#. TRANS: Page notice for group members page. +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Un lista de usatores attendente approbation a subscriber a te." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "Tu non pote subscriber te a un profilo remote OMB 0.1 con iste action." @@ -5530,31 +5669,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Notas etiquettate con %1$s, pagina %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Syndication de notas pro le etiquetta %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Syndication de notas pro le etiquetta %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Syndication de notas pro le etiquetta %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Nulle parametro de ID." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Etiquetta %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Profilo del usator" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Etiquettar usator" +#. TRANS: Title for input field for inputting tags on "tag other users" page. msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " "spaces." @@ -5562,16 +5713,24 @@ msgstr "" "Etiquettas pro iste usator (litteras, numeros, -, . e _), separate per " "commas o spatios." +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Tu pote solmente etiquettar personas a qui tu es subscribite o qui es " "subscribite a te." +#. TRANS: Title of "tag other users" page. +msgctxt "TITLE" +msgid "Tags" +msgstr "Etiquettas" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Usa iste formulario pro adder etiquettas a tu subscriptores o subscriptiones." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Etiquetta non existe." @@ -5579,25 +5738,31 @@ msgstr "Etiquetta non existe." msgid "You haven't blocked that user." msgstr "Tu non ha blocate iste usator." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Le usator non es in le cassa de sablo." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Le usator non es silentiate." -msgid "No profile ID in request." -msgstr "Nulle ID de profilo in requesta." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Subscription cancellate" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" -"Le licentia del fluxo que tu ascolta, ‘%1$s’, non es compatibile con le " -"licentia del sito ‘%2$s’." +"Le licentia del fluxo que tu ascolta, \"%1$s\", non es compatibile con le " +"licentia del sito \"%2$s\"." +#. TRANS: Title of URL settings tab in profile settings. msgid "URL settings" msgstr "Configuration de URL" @@ -5611,9 +5776,11 @@ msgstr "Gestion de varie altere optiones." msgid " (free service)" msgstr " (servicio libere)" +#. TRANS: Default value for URL shortening settings. msgid "[none]" msgstr "[nulle]" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "[interne]" @@ -5625,16 +5792,20 @@ msgstr "Accurtar URLs con" msgid "Automatic shortening service to use." msgstr "Le servicio de accurtamento automatic a usar." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "URL plus longe que" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" "Le URLs plus longe que isto essera abbreviate. 0 significa abbreviar sempre." +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "Texto plus longe que" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5646,18 +5817,21 @@ msgid "URL shortening service is too long (maximum 50 characters)." msgstr "" "Le servicio de accurtamento de URL es troppo longe (maximo 50 characteres)." -msgid "Invalid number for max url length." +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. +msgid "Invalid number for maximum URL length." msgstr "Numero invalide pro longitude maxime de URL." -msgid "Invalid number for max notice length." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +msgid "Invalid number for maximum notice length." msgstr "Numero invalide pro longitude maxime de nota." +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" "Error durante le salveguarda del preferentias de usator pro le abbreviation " "de URL." -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Usator" @@ -5680,6 +5854,8 @@ msgstr "Texto de benvenita invalide. Longitude maxime es 255 characteres." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Subscription predefinite invalide: \"%1$s\" non es usator." +#. TRANS: Fieldset legend in user administration panel. +msgctxt "LEGEND" msgid "Profile" msgstr "Profilo" @@ -5731,7 +5907,7 @@ msgstr "Salveguardar configurationes de usator." msgid "Authorize subscription" msgstr "Autorisar subscription" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5743,16 +5919,19 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "Acceptar" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. msgid "Subscribe to this user." msgstr "Subscriber a iste usator." #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "Rejectar" @@ -5769,9 +5948,10 @@ msgstr "Nulle requesta de autorisation!" msgid "Subscription authorized" msgstr "Subscription autorisate" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "Le subscription ha essite autorisate, ma nulle URL de retorno ha essite " @@ -5782,9 +5962,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Subscription rejectate" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "Le subscription ha essite rejectate, ma nulle URL de retorno ha essite " @@ -5815,16 +5996,6 @@ msgstr "URI de ascoltato \"%s\" es un usator local." msgid "Profile URL \"%s\" is for a local user." msgstr "URL de profilo \"%s\" es de un usator local." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"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. #, php-format @@ -5929,7 +6100,6 @@ msgid "Contributors" msgstr "Contributores" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licentia" @@ -5968,7 +6138,6 @@ msgstr "" "insimul con iste programma. Si non, vide %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Plug-ins" @@ -6048,18 +6217,6 @@ msgstr[1] "Un file de iste dimension excederea tu quota mensual de %d bytes." msgid "Invalid filename." msgstr "Nomine de file invalide." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Le inscription al gruppo ha fallite." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Non es membro del gruppo." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Le cancellation del membrato del gruppo ha fallite." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6072,6 +6229,18 @@ msgstr "Le ID de profilo %s es invalide." msgid "Group ID %s is invalid." msgstr "Le ID de gruppo %s es invalide." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Le inscription al gruppo ha fallite." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Non es membro del gruppo." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Le cancellation del membrato del gruppo ha fallite." + #. TRANS: Activity title. msgid "Join" msgstr "Inscriber" @@ -6146,6 +6315,32 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Il te es prohibite publicar notas in iste sito." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Non pote repeter; le nota original manca o ha essite delite." + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "Tu non pote repeter tu proprie nota." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +msgid "Cannot repeat a private notice." +msgstr "Non pote repeter un nota private." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +msgid "Cannot repeat a notice you cannot read." +msgstr "Non pote repeter un nota que tu non pote leger." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Tu ha ja repetite iste nota." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "%1$s non ha accesso al nota %2$d." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6171,16 +6366,13 @@ msgstr "Non poteva salveguardar le responsa pro %1$d, %2$d." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "Approbation de adhesion a gruppo invalide: non pendente." - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6204,6 +6396,7 @@ msgid "Unable to save tag." msgstr "Impossibile salveguardar le etiquetta." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Tu ha essite blocate del subscription." @@ -6231,7 +6424,8 @@ msgstr "Non poteva deler le indicio OMB del subscription." msgid "Could not delete subscription." msgstr "Non poteva deler subscription." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +msgctxt "TITLE" msgid "Follow" msgstr "Sequer" @@ -6299,18 +6493,20 @@ msgid "User deletion in progress..." msgstr "Deletion del usator in curso…" #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" -msgstr "Modificar configuration de profilo" +msgid "Edit profile settings." +msgstr "Modificar configuration de profilo." #. TRANS: Link text for link on user profile. +msgctxt "BUTTON" msgid "Edit" msgstr "Modificar" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" -msgstr "Inviar un message directe a iste usator" +msgid "Send a direct message to this user." +msgstr "Inviar un message directe a iste usator." #. TRANS: Link text for link on user profile. +msgctxt "BUTTON" msgid "Message" msgstr "Message" @@ -6332,10 +6528,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Subscriber" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6360,6 +6552,8 @@ msgstr "Responder" msgid "Write a reply..." msgstr "Scriber un responsa..." +#. TRANS: Tab on the notice form. +msgctxt "TAB" msgid "Status" msgstr "Stato" @@ -6480,9 +6674,10 @@ msgstr "" msgid "No content for notice %s." msgstr "Nulle contento pro nota %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, php-format -msgid "No such user %s." -msgstr "Le usator %s non existe." +msgid "No such user \"%s\"." +msgstr "Le usator \"%s\" non existe." #. TRANS: Client exception thrown when post to collection fails with a 400 status. #. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason. @@ -6528,75 +6723,117 @@ msgstr "saveSettings() non implementate." msgid "Unable to delete design setting." msgstr "Impossibile deler configuration de apparentia." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +msgctxt "HEADER" msgid "Home" msgstr "Initio" -msgid "Admin" -msgstr "Administrator" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "Home" +msgstr "Initio" -#. TRANS: Menu item title/tooltip +#. TRANS: Header in administrator navigation panel. +msgctxt "HEADER" +msgid "Admin" +msgstr "Administration" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Configuration basic del sito" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Sito" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Configuration del apparentia" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Apparentia" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Configuration del usator" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "User" msgstr "Usator" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Configuration del accesso" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Access" +msgstr "Accesso" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Configuration del camminos" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Paths" +msgstr "Camminos" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Configuration del sessiones" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "Sessions" msgstr "Sessiones" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Modificar aviso del sito" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "Site notice" msgstr "Aviso del sito" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Configuration del instantaneos" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Snapshots" +msgstr "Instantaneos" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Definir licentia del sito" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "License" +msgstr "Licentia" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Plugins configuration" msgstr "Configuration del plug-ins" +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Plugins" +msgstr "Plug-ins" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6607,6 +6844,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "Nulle application pro iste clave de consumitor." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "Uso del API non permittite." @@ -6642,11 +6880,13 @@ msgstr "" msgid "Could not issue access token." msgstr "Non poteva emitter le indicio de accesso." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "" "Error del base de datos durante le insertion del usator del application " "OAuth." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "" "Error del base de datos durante le actualisation del usator del application " @@ -6743,6 +6983,16 @@ msgstr "" msgid "Cancel" msgstr "Cancellar" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Salveguardar" + +#. TRANS: Name for an anonymous application in application list. +msgid "Unknown application" +msgstr "Application incognite" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr " per " @@ -6765,11 +7015,12 @@ msgstr "Accesso \"%2$s\" approbate le %1$s." msgid "Access token starting with: %s" msgstr "Indicio de accesso comenciante con: %s" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Revocar" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "Le elemento \"author\" debe continer un elemento \"name\"." @@ -6804,7 +7055,12 @@ msgstr "Blocar iste usator" #. TRANS: Submit button text on form to cancel group join request. msgctxt "BUTTON" msgid "Cancel join request" -msgstr "" +msgstr "Cancellar requesta de adhesion" + +#. TRANS: Button text for form action to cancel a subscription request. +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Cancellar requesta de subscription" #. TRANS: Title for command results. msgid "Command results" @@ -6815,6 +7071,7 @@ msgid "AJAX error" msgstr "Error de AJAX" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Commando complete" @@ -6934,6 +7191,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -6954,10 +7213,6 @@ msgstr "Error durante le invio del message directe." msgid "Notice from %s repeated." msgstr "Nota de %s repetite." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Error durante le repetition del nota." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7250,13 +7505,18 @@ msgstr "Considera executar le installator pro reparar isto." msgid "Go to the installer." msgstr "Ir al installator." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Error de base de datos" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "Public" msgstr "Public" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Deler" @@ -7264,6 +7524,7 @@ msgstr "Deler" msgid "Delete this user" msgstr "Deler iste usator" +#. TRANS: Form legend of form for changing the page design. msgid "Change design" msgstr "Cambiar de apparentia" @@ -7275,14 +7536,6 @@ msgstr "Cambiar colores" msgid "Use defaults" msgstr "Usar predefinitiones" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Restaurar apparentias predefinite" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Revenir al predefinitiones" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7290,10 +7543,10 @@ msgstr "Incargar file" #. TRANS: Instructions for form on profile design page. msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" -"Tu pote incargar tu imagine de fundo personal. Le dimension maximal del file " -"es 2MB." +"Tu pote actualisar tu imagine de fundo personal. Le dimension maximal del " +"file es 2MB." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. msgctxt "RADIO" @@ -7305,15 +7558,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Non active" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "Non poteva actualisar tu apparentia." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Apparentia predefinite restaurate." @@ -7343,46 +7587,58 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Favorir" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "Amico de un amico" -msgid "Not an atom feed." -msgstr "Non es un syndication Atom." - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "Il non ha un autor in le syndication." -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "Non pote importar sin usator." #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Syndicationes" +#. TRANS: List element on gallery action page to show all tags. +msgctxt "TAGS" msgid "All" msgstr "Totes" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Selige etiquetta a filtrar" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Etiquetta" -msgid "Choose a tag to narrow list" -msgstr "Selige etiquetta pro reducer lista" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +msgid "Choose a tag to narrow list." +msgstr "Selige un etiquetta pro reducer le lista." +#. TRANS: Submit button text on gallery action page. +msgctxt "BUTTON" msgid "Go" msgstr "Ir" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Conceder le rolo \"%s\" a iste usator" @@ -7442,9 +7698,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Politica de adhesion" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "Aperte a totes" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "Administrator debe approbar tote le membros" @@ -7511,6 +7769,7 @@ msgid "%s blocked users" msgstr "%s usatores blocate" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Admin" @@ -7611,28 +7870,52 @@ msgid_plural "%dB" msgstr[0] "%dB" msgstr[1] "%dB" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" -"Le usator \"%s\" de %s ha dicite que tu pseudonymo %s pertine a ille/illa. " -"Si isto es correcte, tu pote confirmar lo con un clic super iste URL: %s . " -"(Si tu non pote cliccar super illo, copia-e-colla lo in le barra de adresse " -"de tu navigator del web.) Si iste usator non es tu, o si tu non requestava " -"iste confirmation, simplemente ignora iste message." +"Le usator \"%1$s\" de %2$s ha dicite que tu pseudonymo de %3$s pertine a " +"ille o illa. Si isto es correcte, tu pote confirmar lo con un clic super " +"iste URL: %4$s . (Si tu non pote cliccar super illo, copia-e-colla lo in le " +"barra de adresse de tu navigator del web.) Si iste usator non es tu, o si tu " +"non requestava iste confirmation, simplemente ignora iste message." +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Fonte de cassa de entrata \"%s\" incognite" +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" +"Le functionalitate de caudas debe esser activate pro usar le plug-ins de " +"messageria instantanee." + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "Le methodo de transporto non pote esser nulle." + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Inscriber" + +#. TRANS: Button text on form to leave a group. +msgctxt "BUTTON" msgid "Leave" msgstr "Quitar" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Aperir session" @@ -7693,6 +7976,22 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s seque ora tu notas in %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s volerea sequer tu notas in %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" +"%1$s volerea sequer tu notas in %2$s. Tu pote approbar o rejectar su " +"subscription %3$s" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -7964,9 +8263,11 @@ msgstr "" "%1$s vole adherer a tu gruppo %2$s in %3$s. Tu pote approbar o rejectar su " "adhesion al gruppo a %4$s" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Solmente le usator pote leger su proprie cassas postal." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -7975,32 +8276,46 @@ msgstr "" "altere usatores in conversation. Altere personas pote inviar te messages que " "solmente tu pote leger." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +msgctxt "MENU" msgid "Inbox" msgstr "Cassa de entrata" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Tu messages recipite" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +msgctxt "MENU" msgid "Outbox" msgstr "Cassa de exito" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Tu messages inviate" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Non comprendeva le syntaxe del message." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Non un usator registrate." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Pardono, isto non es tu adresse de e-mail entrante." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Pardono, le reception de e-mail non es permittite." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Typo de message non supportate: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8054,10 +8369,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "\"%s\" non es un typo de file supportate in iste servitor." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Inviar un nota directe" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "Selige destinatario:" @@ -8065,29 +8383,67 @@ msgstr "Selige destinatario:" msgid "No mutual subscribers." msgstr "Nulle subscriptores mutual." +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "A" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Inviar" +#. TRANS: Header in message list. msgid "Messages" msgstr "Messages" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "via" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "E-mail" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +#, fuzzy +msgid "Cannot get author for activity." msgstr "Non pote determinar le autor pro le activitate." +#. TRANS: Client exception. msgid "Bookmark not posted to this group." msgstr "Le marcapaginas non es publicate in iste gruppo." +#. TRANS: Client exception. msgid "Object not posted to this user." msgstr "Le objecto non es inviate a iste usator." -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +#, fuzzy +msgid "Do not know how to handle this kind of target." msgstr "Non sape manear iste typo de destination." #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8134,68 +8490,93 @@ msgstr "" "Pardono, le obtention de tu geolocalisation prende plus tempore que " "previste. Per favor reproba plus tarde." -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +msgctxt "HEADER" +msgid "Notices" +msgstr "Notas" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "E" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "W" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "in" -msgid "web" -msgstr "web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "in contexto" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Repetite per" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Responder a iste nota" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Responder" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Deler iste nota" -msgid "Notice repeated" -msgstr "Nota repetite" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +msgid "Notice repeated." +msgstr "Nota repetite." +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "Actualisar tu stato..." +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Pulsar iste usator" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Pulsar" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Inviar un pulsata a iste usator" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Error durante le insertion del nove profilo." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Error durante le insertion del avatar." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Error durante le insertion del profilo remote." @@ -8203,18 +8584,46 @@ msgstr "Error durante le insertion del profilo remote." msgid "Duplicate notice." msgstr "Nota duplicate." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Non poteva inserer nove subscription." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Profile" +msgstr "Profilo" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Tu profilo" +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" msgid "Replies" msgstr "Responsas" +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" msgid "Favorites" msgstr "Favorites" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +msgctxt "FIXME" +msgid "User" +msgstr "iste usator" + +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Messages" +msgstr "Messages" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Tu messages recipite" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8238,28 +8647,44 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "(Le descriptiones de plug-ins non es disponibile si disactivate.)" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Settings" msgstr "Configurationes" -msgid "Change your personal settings" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Change your personal settings." msgstr "Cambiar tu optiones personal" -msgid "Site configuration" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Site configuration." msgstr "Configuration del sito" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "Clauder session" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Terminar le session del sito" -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "Authenticar te a iste sito" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "Cercar" -msgid "Search the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Search the site." msgstr "Cercar in le sito" #. TRANS: H2 text for user subscription statistics. @@ -8306,30 +8731,49 @@ msgstr "Tote le gruppos" msgid "Unimplemented method." msgstr "Methodo non implementate." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "Gruppos" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Gruppos de usatores" +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "Recent tags" msgstr "Etiquettas recente" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Etiquettas recente" + +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "Featured" msgstr "In evidentia" +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "Popular" msgstr "Popular" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Nulle parametro return-to." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Repeter iste nota?" -msgid "Yes" -msgstr "Si" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Repeter iste nota" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Revocar le rolo \"%s\" de iste usator" @@ -8338,9 +8782,13 @@ msgstr "Revocar le rolo \"%s\" de iste usator" msgid "Page not found." msgstr "Pagina non trovate." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Cassa de sablo" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Mitter iste usator in le cassa de sablo" @@ -8358,128 +8806,256 @@ msgctxt "BUTTON" msgid "Search" msgstr "Cercar" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "People" msgstr "Personas" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Cercar personas in iste sito" +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" +msgid "Notices" +msgstr "Notas" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Cercar in contento de notas" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Cercar gruppos in iste sito" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "Adjuta" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" msgid "About" msgstr "A proposito" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" msgid "FAQ" msgstr "FAQ" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +msgctxt "MENU" msgid "TOS" msgstr "CdS" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +msgctxt "MENU" msgid "Privacy" msgstr "Confidentialitate" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +msgctxt "MENU" msgid "Source" msgstr "Fonte" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +msgctxt "MENU" msgid "Version" msgstr "Version" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" msgid "Contact" msgstr "Contacto" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +msgctxt "MENU" msgid "Badge" msgstr "Insignia" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Section sin titulo" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Plus…" +#. TRANS: Header in settings navigation panel. +msgctxt "HEADER" +msgid "Settings" +msgstr "Configurationes" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Cambiar le optiones de tu profilo" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Incargar un avatar" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "Password" +msgstr "Contrasigno" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Cambiar tu contrasigno" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "Email" +msgstr "E-mail" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Modificar le tractamento de e-mail" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Designar tu profilo" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "Abbreviatores de URL" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "IM" +msgstr "MI" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Actualisationes per messageria instantanee (MI)" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Actualisationes per SMS" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" msgid "Connections" msgstr "Connexiones" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Applicationes autorisate connectite" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Silentiar" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Silentiar iste usator" -#, php-format -msgid "People %s subscribes to" -msgstr "Personas que %s seque" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Subscriptiones" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, php-format -msgid "People subscribed to %s" -msgstr "Personas qui seque %s" +msgid "People %s subscribes to." +msgstr "Personas a qui %s es subscribite." +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Subscribers" +msgstr "Subscriptores" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, php-format -msgid "Groups %s is a member of" -msgstr "Gruppos del quales %s es membro" +msgid "People subscribed to %s." +msgstr "Personas subscribite a %s." +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. +#, php-format +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "Pendente (%d)" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "Approbar requestas de subscription pendente." + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, php-format +msgid "Groups %s is a member of." +msgstr "Gruppos del quales %s es membro." + +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "Invitar" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "Invitar amicos e collegas a accompaniar te in %s" +msgid "Invite friends and colleagues to join you on %s." +msgstr "Invitar amicos e collegas a accompaniar te in %s." +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Subscriber a iste usator" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Etiquettario de personas como auto-etiquettate" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Etiquettario de personas como etiquettate" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Nulle" @@ -8487,20 +9063,28 @@ msgstr "Nulle" msgid "Invalid theme name." msgstr "Nomine de apparentia invalide." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" "Iste servitor non pote manear le incargamento de apparentias sin supporto de " "ZIP." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Le file del apparentia manca o le incargamento ha fallite." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Salveguarda del apparentia fallite." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Apparentia invalide: mal structura de directorios." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8512,9 +9096,12 @@ msgstr[1] "" "Le apparentia incargate es troppo voluminose; debe occupar minus de %d bytes " "in forma non comprimite." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Archivo de apparentia invalide: manca le file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -8522,23 +9109,22 @@ msgstr "" "Le apparentia contine un nomine de file o dossier invalide. Limita te a " "litteras ASCII, digitos, sublineamento, e signo minus." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" "Le thema contine nomines de extension de file insecur; pote esser insecur." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" "Le apparentia contine un file del typo '.%s', le qual non es permittite." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Error durante le apertura del archivo del apparentia." -#. TRANS: Header for Notices section. -msgctxt "HEADER" -msgid "Notices" -msgstr "Notas" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -8568,8 +9154,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Tu ha favorite iste nota." -#, php-format -msgctxt "FAVELIST" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. +#, fuzzy, php-format msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Un persona ha favorite iste nota." @@ -8580,8 +9167,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Tu ha repetite iste nota." -#, php-format -msgctxt "REPEATLIST" +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. +#, fuzzy, php-format msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Un persona ha repetite iste nota." @@ -8591,6 +9179,27 @@ msgstr[1] "%d personas ha repetite iste nota." msgid "Top posters" msgstr "Qui scribe le plus" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "Omnes" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "Mi collegas a %s" + +#. TRANS: Label for drop-down of potential addressees. +msgctxt "LABEL" +msgid "To:" +msgstr "A:" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Valor incognite de \"A:\": \"%s\"." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8704,5 +9313,5 @@ msgstr "XML invalide, radice XRD mancante." msgid "Getting backup from file '%s'." msgstr "Obtene copia de reserva ex file '%s'." -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Message troppo longe - maximo es %1$d characteres, tu inviava %2$d." +#~ msgid "Couldn't update your design." +#~ msgstr "Non poteva actualisar tu apparentia." diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 83ef46eeb6..c99385d521 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -11,20 +11,54 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:56+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:00+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Sconosciuto" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Azione sconosciuta" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Accesso" @@ -78,7 +112,9 @@ msgstr "Salva impostazioni di accesso" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -90,6 +126,7 @@ msgstr "Salva" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Pagina inesistente." @@ -108,6 +145,7 @@ msgstr "Pagina inesistente." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -132,8 +170,11 @@ msgstr "Pagina inesistente." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Utente inesistente." @@ -146,7 +187,15 @@ msgstr "%1$s e amici, pagina %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s e amici" @@ -216,28 +265,14 @@ msgstr "Tu e i tuoi amici" msgid "Updates from %1$s and friends on %2$s!" msgstr "Messaggi da %1$s e amici su %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "Metodo delle API non trovato." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -273,6 +308,7 @@ msgstr "Impossibile aggiornare l'utente." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "L'utente non ha un profilo." @@ -312,6 +348,8 @@ msgstr "Impossibile salvare la impostazioni dell'aspetto." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Impossibile aggiornare l'aspetto." @@ -692,9 +730,12 @@ msgstr "Autorizzazione non presente." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" "Si è verificato un problema con il tuo token di sessione. Prova di nuovo." @@ -851,16 +892,6 @@ msgstr "Non puoi eliminare il messaggio di un altro utente." msgid "No such notice." msgstr "Nessun messaggio." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Non puoi ripetere un tuo messaggio." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Hai già ripetuto quel messaggio." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -904,8 +935,11 @@ msgstr "Elimina messaggio" msgid "Client must provide a 'status' parameter with a value." msgstr "Il client deve fornire un parametro \"status\" con un valore." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -919,6 +953,8 @@ msgstr "Metodo delle API non trovato." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -991,6 +1027,8 @@ msgstr "%1$s messaggi in risposta a quelli da %2$s / %3$s" msgid "Repeats of %s" msgstr "Ripetizioni di %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%s (@%s) ha aggiunto il tuo messaggio tra i suoi preferiti" @@ -1005,6 +1043,8 @@ msgstr "Messaggi etichettati con %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Messaggi etichettati con %1$s su %2$s!" @@ -1120,11 +1160,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Profilo mancante." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1132,10 +1174,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Un elenco degli utenti in questo gruppo." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1160,6 +1204,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Un elenco degli utenti in questo gruppo." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Impossibile iscrivere l'utente %1$s al gruppo %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Stato di %1$s su %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Abbonamento autorizzato" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Conferma della messaggistica annullata." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1201,7 +1273,7 @@ msgstr "Aggiungi ai preferiti" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "Membri del gruppo %s" #. TRANS: Subtitle for group membership feed. @@ -1215,8 +1287,7 @@ msgstr "Gruppi di cui %s fa parte" msgid "Cannot add someone else's membership." msgstr "Impossibile inserire un nuovo abbonamento." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Trova contenuto dei messaggi" @@ -1337,6 +1408,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Utente senza profilo corrispondente." @@ -1363,6 +1435,7 @@ msgstr "Anteprima" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. #, fuzzy msgctxt "BUTTON" msgid "Delete" @@ -1481,6 +1554,7 @@ msgstr "Non bloccare questo utente" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Sì" @@ -1539,6 +1613,32 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s ha lasciato il gruppo %2$s" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Accesso non effettuato." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Nessun ID di profilo nella richiesta." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Nessun profilo con quel ID." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Abbonamento annullato" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Nessun codice di conferma." @@ -1679,6 +1779,7 @@ msgstr "Applicazione non trovata." msgid "You are not the owner of this application." msgstr "Questa applicazione non è di tua proprietà." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Si è verificato un problema con il tuo token di sessione." @@ -1755,24 +1856,6 @@ msgstr "Non eliminare il messaggio" msgid "Delete this group." msgstr "Elimina questo utente" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Accesso non effettuato." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1970,16 +2053,19 @@ msgid "Use defaults" msgstr "Usa predefiniti" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "Ripristina i valori predefiniti" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "Reimposta i valori predefiniti" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "Salva aspetto" @@ -2318,6 +2404,7 @@ msgstr "Rimuovi preferito" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Messaggi famosi" @@ -2359,6 +2446,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Messaggi preferiti di %s" @@ -2371,6 +2460,7 @@ msgstr "Messaggi preferiti da %1$s su %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Utenti in evidenza" @@ -2432,6 +2522,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Il servizio remoto usa una versione del protocollo OMB sconosciuta." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Errore nell'aggiornare il profilo remoto." @@ -2469,14 +2560,6 @@ msgstr "L'utente ricopre già questo ruolo." msgid "No profile specified." msgstr "Nessun profilo specificato." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Nessun profilo con quel ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3111,6 +3194,7 @@ msgid "License selection" msgstr "Selezione licenza" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privato" @@ -3349,6 +3433,9 @@ msgid "Ajax Error" msgstr "Errore di Ajax" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nuovo messaggio" @@ -3658,7 +3745,6 @@ msgid "Password saved." msgstr "Password salvata." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Percorsi" @@ -3869,6 +3955,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Mai" @@ -4031,17 +4118,22 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "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. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +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: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4054,7 +4146,9 @@ msgid "Location" msgstr "Ubicazione" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Dove ti trovi, tipo \"città, regione, stato\"" #. TRANS: Checkbox label in form for profile settings. @@ -4062,6 +4156,9 @@ msgid "Share my current location when posting notices" msgstr "Condividi la mia posizione attuale quando invio messaggi" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Etichette" @@ -4098,6 +4195,27 @@ msgstr "" "Abbonami automaticamente a chi si abbona ai miei messaggi (utile per i non-" "umani)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Abbonamenti" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4130,7 +4248,7 @@ msgstr "Etichetta non valida: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Impossibile aggiornare l'utente per auto-abbonarsi." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4139,6 +4257,7 @@ msgid "Could not save location prefs." msgstr "Impossibile salvare le preferenze della posizione." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Impossibile salvare le etichette." @@ -4170,6 +4289,7 @@ msgid "Public timeline, page %d" msgstr "Attività pubblica, pagina %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Attività pubblica" @@ -4350,10 +4470,6 @@ msgstr "Richiesta password di ripristino" msgid "Password saved" msgstr "Password salvata." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Azione sconosciuta" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4450,6 +4566,7 @@ msgstr "Registrazione non consentita." msgid "You cannot register if you do not agree to the license." msgstr "Non puoi registrarti se non accetti la licenza." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Indirizzo email già esistente." @@ -4489,26 +4606,7 @@ msgstr "Usata solo per aggiornamenti, annunci e recupero password" msgid "Longer name, preferably your \"real\" name." msgstr "Nome completo, preferibilmente il tuo \"vero\" nome" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Descriviti assieme ai tuoi interessi in %d caratteri" -msgstr[1] "Descriviti assieme ai tuoi interessi in %d caratteri" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Descrivi te e i tuoi interessi" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Dove ti trovi, tipo \"città, regione, stato\"" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4631,6 +4729,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "URL del tuo profilo su un altro servizio di microblog compatibile" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4667,16 +4767,8 @@ msgstr "Solo gli utenti collegati possono ripetere i messaggi." msgid "No notice specified." msgstr "Nessun messaggio specificato." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Non puoi ripetere i tuoi stessi messaggi." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Hai già ripetuto quel messaggio." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Ripetuti" @@ -4687,6 +4779,8 @@ msgstr "Ripetuti!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Risposte a %s" @@ -4800,6 +4894,7 @@ msgid "System error uploading file." msgstr "Errore di sistema nel caricare il file." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Tutti i membri" @@ -4840,6 +4935,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Non puoi mettere in \"sandbox\" gli utenti su questo sito." @@ -5036,6 +5132,8 @@ msgstr "Membri" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(nessuno)" @@ -5119,6 +5217,11 @@ msgstr "Messaggio a %1$s su %2$s" msgid "Message from %1$s on %2$s" msgstr "Messaggio da %1$s su %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "Messaggistica istantanea non disponibile." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Messaggio eliminato." @@ -5126,20 +5229,20 @@ msgstr "Messaggio eliminato." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %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, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Messaggi etichettati con %1$s, pagina %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, pagina %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Messaggi etichettati con %1$s, pagina %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5227,6 +5330,7 @@ msgid "Repeat of %s" msgstr "Ripetizione di %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Non puoi zittire gli utenti su questo sito." @@ -5527,51 +5631,72 @@ msgstr "" msgid "No code entered." msgstr "Nessun codice inserito" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Snapshot" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Gestisci configurazione snapshot" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Valore di esecuzione dello snapshot non valido." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "La frequenza degli snapshot deve essere un numero." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "URL di segnalazione snapshot non valido." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Snapshot" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "A caso quando avviene un web hit" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "In un job pianificato" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Snapshot dei dati" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Quando inviare dati statistici a status.net" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frequenza" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Gli snapshot verranno inviati ogni N web hit" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL per la segnalazione" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Gli snapshot verranno inviati a questo URL" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Salva" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Salva impostazioni snapshot" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5583,6 +5708,27 @@ msgstr "Non hai una abbonamento a quel profilo." msgid "Could not save subscription." msgstr "Impossibile salvare l'abbonamento." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "Membri del gruppo %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Membri del gruppo %1$s, pagina %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Un elenco degli utenti in questo gruppo." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5705,31 +5851,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Messaggi etichettati con %1$s, pagina %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Feed dei messaggi per l'etichetta %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Feed dei messaggi per l'etichetta %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Feed dei messaggi per l'etichetta %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Nessun argomento ID." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Etichetta %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Profilo utente" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Etichette utente" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5738,17 +5896,26 @@ msgstr "" "Etichette per questo utente (lettere, numeri, -, . e _), separate da virgole " "o spazi" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Puoi etichettare sole le persone di cui hai un abbonamento o che sono " "abbonate a te." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Etichette" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Usa questo modulo per aggiungere etichette ai tuoi abbonati o ai tuoi " "abbonamenti." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Nessuna etichetta." @@ -5756,25 +5923,31 @@ msgstr "Nessuna etichetta." msgid "You haven't blocked that user." msgstr "Non hai bloccato quell'utente." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "L'utente non è nella \"sandbox\"." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "L'utente non è zittito." -msgid "No profile ID in request." -msgstr "Nessun ID di profilo nella richiesta." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Abbonamento annullato" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "La licenza \"%1$s\" dello stream di chi ascolti non è compatibile con la " "licenza \"%2$s\" di questo sito." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Impostazioni messaggistica istantanea" @@ -5789,10 +5962,12 @@ msgstr "Gestisci altre opzioni." msgid " (free service)" msgstr " (servizio libero)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Nessuno" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5804,15 +5979,19 @@ msgstr "Accorcia gli URL con" msgid "Automatic shortening service to use." msgstr "Servizio di autoriduzione da usare" +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5822,17 +6001,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Il servizio di riduzione degli URL è troppo lungo (max 50 caratteri)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Contenuto del messaggio non valido." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Contenuto del messaggio non valido." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Utente" @@ -5857,6 +6040,9 @@ msgstr "" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Abbonamento predefinito non valido: \"%1$s\" non è un utente." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profilo" @@ -5910,7 +6096,7 @@ msgstr "Salva impostazioni utente" msgid "Authorize subscription" msgstr "Autorizza abbonamento" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5922,18 +6108,21 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" msgstr "Accetta" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Abbonati a questo utente" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5952,9 +6141,10 @@ msgstr "Nessuna richiesta di autorizzazione!" msgid "Subscription authorized" msgstr "Abbonamento autorizzato" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "L'abbonamento è stato autorizzato, ma non è stato passato alcun URL di " @@ -5965,9 +6155,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Abbonamento rifiutato" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "L'abbonamento è stato rifiutato, ma non è stato passato alcun URL di " @@ -5998,16 +6189,6 @@ msgstr "L'URI \"%s\" di colui che si ascolta è un utente locale." msgid "Profile URL \"%s\" is for a local user." msgstr "L'URL \"%s\" del profilo è per un utente locale." -#. 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. -#, 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. #, fuzzy, php-format @@ -6113,7 +6294,6 @@ msgid "Contributors" msgstr "Collaboratori" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licenza" @@ -6152,7 +6332,6 @@ msgstr "" "disponibile assieme a questo programma. Se così non fosse, consultare %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Plugin" @@ -6240,18 +6419,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "Nome file non valido." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Ingresso nel gruppo non riuscito." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Non si fa parte del gruppo." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Uscita dal gruppo non riuscita." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6264,6 +6431,18 @@ msgstr "L'ID di profilo %s non è valido." msgid "Group ID %s is invalid." msgstr "Errore nel salvare l'utente; non valido." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Ingresso nel gruppo non riuscito." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Non si fa parte del gruppo." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Uscita dal gruppo non riuscita." + #. TRANS: Activity title. msgid "Join" msgstr "Iscriviti" @@ -6338,6 +6517,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Ti è proibito inviare messaggi su questo sito." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Non puoi ripetere un tuo messaggio." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Non puoi ripetere i tuoi stessi messaggi." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Non puoi ripetere un tuo messaggio." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Non puoi ripetere un tuo messaggio." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Hai già ripetuto quel messaggio." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "L'utente non ha un ultimo messaggio." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6364,16 +6573,13 @@ msgstr "Impossibile salvare le informazioni del gruppo locale." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6398,6 +6604,7 @@ msgid "Unable to save tag." msgstr "Impossibile salvare l'etichetta." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Non ti è possibile abbonarti." @@ -6425,7 +6632,9 @@ msgstr "Impossibile salvare l'abbonamento." msgid "Could not delete subscription." msgstr "Impossibile salvare l'abbonamento." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Segui" @@ -6493,18 +6702,24 @@ msgid "User deletion in progress..." msgstr "Eliminazione utente..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Modifica impostazioni del profilo" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Modifica" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Invia un messaggio diretto a questo utente" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Messaggio" @@ -6526,10 +6741,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderatore" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Abbonati" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6555,7 +6766,9 @@ msgstr "Rispondi" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6679,8 +6892,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Trova contenuto dei messaggi" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "Utente inesistente." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6727,76 +6941,129 @@ msgstr "saveSettings() non implementata." msgid "Unable to delete design setting." msgstr "Impossibile eliminare le impostazioni dell'aspetto." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Pagina web" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Pagina web" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Amministra" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Configurazione di base" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Sito" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Configurazione aspetto" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Aspetto" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Configurazione utente" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Utente" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Configurazione di accesso" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Accesso" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Configurazione percorsi" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Percorsi" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Configurazione sessioni" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Sessioni" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Modifica messaggio del sito" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Messaggio del sito" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Configurazione snapshot" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Snapshots" +msgstr "Snapshot" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Imposta licenza" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licenza" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Configurazione percorsi" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Plugin" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6807,6 +7074,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "Nessuna applicazione per quella chiave." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6843,9 +7111,11 @@ msgstr "" msgid "Could not issue access token." msgstr "Impossibile inserire il messaggio." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Errore nel database nell'inserire l'applicazione utente OAuth." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "Errore nel database nell'inserire l'applicazione utente OAuth." @@ -6940,6 +7210,17 @@ msgstr "" msgid "Cancel" msgstr "Annulla" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Salva" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Azione sconosciuta" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -6962,11 +7243,12 @@ msgstr "Approvata %1$s - Accesso \"%2$s\"." msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Revoca" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. #, fuzzy msgid "Author element must contain a name element." msgstr "L'elemento author deve contenere un elemento name." @@ -7007,6 +7289,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Tutti gli abbonamenti" + #. TRANS: Title for command results. msgid "Command results" msgstr "Risultati comando" @@ -7017,6 +7305,7 @@ msgid "AJAX error" msgstr "Errore di Ajax" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Comando completato" @@ -7137,6 +7426,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7157,10 +7448,6 @@ msgstr "Errore nell'inviare il messaggio diretto." msgid "Notice from %s repeated." msgstr "Messaggio da %s ripetuto." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Errore nel ripetere il messaggio." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7469,13 +7756,19 @@ msgstr "" msgid "Go to the installer." msgstr "Vai al programma d'installazione." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Errore del database" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Pubblico" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Elimina" @@ -7483,6 +7776,7 @@ msgstr "Elimina" msgid "Delete this user" msgstr "Elimina questo utente" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Salva aspetto" @@ -7495,23 +7789,14 @@ msgstr "Modifica colori" msgid "Use defaults" msgstr "Usa predefiniti" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -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. -msgid "Reset back to default" -msgstr "Reimposta i valori predefiniti" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "Carica file" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Puoi caricare la tua immagine di sfondo. La dimensione massima del file è di " "2MB." @@ -7528,15 +7813,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Off" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "Impossibile aggiornare l'aspetto." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Valori predefiniti ripristinati." @@ -7568,47 +7844,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Preferisci" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -#, fuzzy -msgid "Not an atom feed." -msgstr "Tutti i membri" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Feed" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Tutto" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Seleziona un'etichetta da filtrare" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Etichetta" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Scegli un'etichetta per ridurre l'elenco" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Vai" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Concedi a questo utente il ruolo \"%s\"" @@ -7670,9 +7960,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Membro dal" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7739,6 +8031,7 @@ msgid "%s blocked users" msgstr "Utenti bloccati di %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Amministra" @@ -7839,23 +8132,46 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Sorgente casella in arrivo %d sconosciuta." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Iscriviti" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Lascia" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Accedi" @@ -7917,6 +8233,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s sta ora seguendo i tuoi messaggi su %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s sta ora seguendo i tuoi messaggi su %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8211,9 +8541,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Solo l'utente può leggere la propria casella di posta." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8222,32 +8554,48 @@ msgstr "" "iniziare una conversazione con altri utenti. Altre persone possono mandare " "messaggi riservati solamente a te." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "In arrivo" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "I tuoi messaggi in arrivo" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Inviati" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "I tuoi messaggi inviati" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Impossibile analizzare il messaggio." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Non è un utente registrato." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Quella non è la tua email di ricezione." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Email di ricezione non consentita." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Tipo di messaggio non supportato: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8300,10 +8648,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "\"%s\" non è un tipo di file supportata su questo server." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Invia un messaggio diretto" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Seleziona licenza" @@ -8313,32 +8664,68 @@ msgstr "Seleziona licenza" msgid "No mutual subscribers." msgstr "Non hai l'abbonamento!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "A" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Invia" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Messaggio" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "via" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Email" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Non fai parte di questo gruppo." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Non eliminare il messaggio" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8386,68 +8773,95 @@ msgstr "" "Il recupero della tua posizione geografica sta impiegando più tempo del " "previsto. Riprova più tardi." -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Messaggi" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "E" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "O" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "presso" -msgid "web" -msgstr "web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "in una discussione" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Ripetuto da" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Rispondi a questo messaggio" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Rispondi" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Elimina questo messaggio" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Messaggio ripetuto" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Richiama questo utente" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Richiama" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Invia un richiamo a questo utente" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Errore nell'inserire il nuovo profilo." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Errore nell'inserire l'immagine." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Errore nell'inserire il profilo remoto." @@ -8455,19 +8869,52 @@ msgstr "Errore nell'inserire il profilo remoto." msgid "Duplicate notice." msgstr "Messaggio duplicato." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Impossibile inserire un nuovo abbonamento." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profilo" + +#. TRANS: Menu item title in personal group navigation menu. #, fuzzy msgid "Your profile" msgstr "Profilo del gruppo" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Risposte" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Preferiti" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Utente" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Messaggio" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "I tuoi messaggi in arrivo" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8491,31 +8938,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Impostazioni SMS" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Modifica le impostazioni del tuo profilo" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Configurazione utente" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "Esci" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Termina la tua sessione sul sito" -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "Accedi al sito" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "Cerca" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Cerca nel sito" #. TRANS: H2 text for user subscription statistics. @@ -8562,30 +9023,53 @@ msgstr "Tutti i gruppi" msgid "Unimplemented method." msgstr "Metodo non implementato" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Gruppi" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Gruppi dell'utente" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Etichette recenti" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Etichette recenti" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "In evidenza" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Famosi" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Nessun argomento return-to." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Ripetere questo messaggio?" -msgid "Yes" -msgstr "Sì" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Ripeti questo messaggio" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Revoca il ruolo \"%s\" a questo utente" @@ -8595,9 +9079,13 @@ msgstr "Revoca il ruolo \"%s\" a questo utente" msgid "Page not found." msgstr "Metodo delle API non trovato." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Sandbox" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Metti questo utente nella \"sandbox\"" @@ -8615,128 +9103,276 @@ msgctxt "BUTTON" msgid "Search" msgstr "Cerca" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Persone" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Trova persone in questo sito" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Messaggi" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Trova contenuto dei messaggi" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Trova gruppi in questo sito" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "Aiuto" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Informazioni" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "FAQ" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "TOS" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Privacy" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Sorgenti" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Versione" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Contatti" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Badge" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Sezione senza nome" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Altro..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Impostazioni SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Modifica le impostazioni del tuo profilo" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Immagine" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Carica un'immagine" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Password" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Modifica la tua password" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Email" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Modifica la gestione dell'email" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Progetta il tuo profilo" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "MI" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Messaggi via messaggistica istantanea (MI)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Messaggi via SMS" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Connessioni" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Applicazioni collegate autorizzate" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Zittisci" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Zittisci questo utente" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Abbonamenti" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Persone di cui %s ha un abbonamento" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Abbonati" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Persone abbonate a %s" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Gruppi di cui %s fa parte" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "Invita" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Invita amici e colleghi a seguirti su %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Abbonati a questo utente" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Insieme delle etichette delle persone come auto-etichettate" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Insieme delle etichette delle persone come etichettate" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Nessuno" @@ -8745,19 +9381,27 @@ msgstr "Nessuno" msgid "Invalid theme name." msgstr "Nome file non valido." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" "Questo server non è in grado di gestire caricamenti senza il supporto ZIP." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Manca il file del tema o il caricamento non è riuscito." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Salvataggio del tema non riuscito." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Tema non valido: struttura directory non corretta." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, fuzzy, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8767,9 +9411,12 @@ msgstr[0] "" msgstr[1] "" "Il tema caricato è troppo grande, deve essere meno di %d byte non compresso." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "File di tema non valido: manca il file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -8777,23 +9424,21 @@ msgstr "" "Il tema contiene file non o nomi di cartelle non validi. Utilizzare " "solamente caratteri ASCII, numeri, il trattino basso e il segno meno." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" "Il tema contiene file con estensioni non sicure: potrebbe non essere sicuro." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Il tema contiene file di tipo \".%s\" che non sono supportati." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Errore nell'aprire il file del tema." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Messaggi" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -8824,8 +9469,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Rendi questo messaggio un preferito" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Togli questo messaggio dai preferiti" @@ -8837,8 +9483,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Hai già ripetuto quel messaggio." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Hai già ripetuto quel messaggio." @@ -8848,6 +9495,28 @@ msgstr[1] "Hai già ripetuto quel messaggio." msgid "Top posters" msgstr "Chi scrive più messaggi" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "A" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Lingua \"%s\" sconosciuta." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8966,5 +9635,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Messaggio troppo lungo: massimo %1$d caratteri, inviati %2$d." +#~ msgid "Couldn't update your design." +#~ msgstr "Impossibile aggiornare l'aspetto." diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 3ce2e7a297..90253cacfb 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -14,20 +14,54 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:57+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:01+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "不明" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "不明なアクション" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "アクセス" @@ -80,7 +114,9 @@ msgstr "アクセス設定の保存" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -92,6 +128,7 @@ msgstr "保存" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "そのようなページはありません。" @@ -110,6 +147,7 @@ msgstr "そのようなページはありません。" #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -134,8 +172,11 @@ msgstr "そのようなページはありません。" #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "そのようなユーザはいません。" @@ -148,7 +189,15 @@ msgstr "%1$sとその友人、%2$dページ目" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%sとその友人" @@ -218,28 +267,14 @@ msgstr "あなたと友人" msgid "Updates from %1$s and friends on %2$s!" msgstr "%2$s に %1$s と友人からの更新があります!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API メソッドが見つかりません。" +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -276,6 +311,7 @@ msgstr "ユーザを更新できませんでした。" #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "ユーザはプロフィールをもっていません。" @@ -312,6 +348,8 @@ msgstr "あなたのデザイン設定を保存できません。" #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "デザインを更新できませんでした。" @@ -690,9 +728,12 @@ msgstr "認証されていません。" #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "あなたのセッショントークンに問題がありました。再度お試しください。" @@ -843,16 +884,6 @@ msgstr "他のユーザのステータスを消すことはできません。" msgid "No such notice." msgstr "そのようなつぶやきはありません。" -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "あなたのつぶやきを繰り返せません。" - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "すでにつぶやきを繰り返しています。" - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -896,8 +927,11 @@ msgstr "つぶやき削除" msgid "Client must provide a 'status' parameter with a value." msgstr "" +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -910,6 +944,8 @@ msgstr "API メソッドが見つかりません。" #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -979,6 +1015,8 @@ msgstr "%2$s からアップデートに答える %1$s アップデート" msgid "Repeats of %s" msgstr "%s の返信" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%s (@%s) はお気に入りとしてあなたのつぶやきを加えました" @@ -993,6 +1031,8 @@ msgstr "%s とタグ付けされたつぶやき" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$s に %1$s による更新があります!" @@ -1110,11 +1150,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "ユーザはプロフィールをもっていません。" #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1122,10 +1164,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "このグループのユーザのリスト。" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1150,6 +1194,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "このグループのユーザのリスト。" + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "ユーザ %1$s はグループ %2$s に参加できません。" + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "%2$s における %1$s のステータス" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "フォローが承認されました" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "確認コードがありません。" + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1192,7 +1264,7 @@ msgstr "お気に入りに加える" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "%s グループメンバー" #. TRANS: Subtitle for group membership feed. @@ -1206,8 +1278,7 @@ msgstr "グループ %s はメンバー" msgid "Cannot add someone else's membership." msgstr "サブスクリプションを追加できません" -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "つぶやきの内容を探す" @@ -1327,6 +1398,7 @@ msgstr "自分のアバターをアップロードできます。最大サイズ #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "合っているプロフィールのないユーザ" @@ -1353,6 +1425,7 @@ msgstr "プレビュー" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. #, fuzzy msgctxt "BUTTON" msgid "Delete" @@ -1473,6 +1546,7 @@ msgstr "このユーザをアンブロックする" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "はい" @@ -1531,6 +1605,32 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s はグループ %2$s に残りました。" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "ログインしていません。" + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "ログイントークンが要求されていません。" + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "そのIDのプロファイルがありません。" + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "フォロー解除済み" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "確認コードがありません。" @@ -1671,6 +1771,7 @@ msgstr "アプリケーションが見つかりません。" msgid "You are not the owner of this application." msgstr "このアプリケーションのオーナーではありません。" +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "あなたのセッショントークンに関する問題がありました。" @@ -1748,24 +1849,6 @@ msgstr "このつぶやきを削除できません。" msgid "Delete this group." msgstr "このユーザを削除" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "ログインしていません。" - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1964,16 +2047,19 @@ msgid "Use defaults" msgstr "デフォルトを使用" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "デフォルトデザインに戻す。" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "デフォルトへリセットする" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "デザインの保存" @@ -2315,6 +2401,7 @@ msgstr "お気に入りをやめる" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "人気のつぶやき" @@ -2356,6 +2443,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "%s のお気に入りのつぶやき" @@ -2368,6 +2457,7 @@ msgstr "%1$s による %2$s 上のお気に入りを更新!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "フィーチャーされたユーザ" @@ -2430,6 +2520,7 @@ msgstr "" "リモートサービスは、不明なバージョンの OMB プロトコルを使用しています。" #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. #, fuzzy msgid "Error updating remote profile." msgstr "リモートプロファイル更新エラー" @@ -2471,14 +2562,6 @@ msgstr "ユーザは既に黙っています。" msgid "No profile specified." msgstr "プロファイル記述がありません。" -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "そのIDのプロファイルがありません。" - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3106,6 +3189,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "プライベート" @@ -3345,6 +3429,9 @@ msgid "Ajax Error" msgstr "Ajax エラー" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "新しいつぶやき" @@ -3654,7 +3741,6 @@ msgid "Password saved." msgstr "パスワードが保存されました。" #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "パス" @@ -3865,6 +3951,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "" @@ -4025,16 +4112,21 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "%d字以内で自分自身と自分の興味について書いてください" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "自分自身と自分の興味について書いてください" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4047,7 +4139,9 @@ msgid "Location" msgstr "場所" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "自分のいる場所。例:「都市, 都道府県 (または地域), 国」" #. TRANS: Checkbox label in form for profile settings. @@ -4055,6 +4149,9 @@ msgid "Share my current location when posting notices" msgstr "つぶやきを投稿するときには私の現在の場所を共有してください" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "タグ" @@ -4090,6 +4187,27 @@ msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "自分をフォローしている者を自動的にフォローする (BOTに最適)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "フォロー" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4121,7 +4239,7 @@ msgstr "不正なタグ: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "自動フォローのためのユーザを更新できませんでした。" #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4130,6 +4248,7 @@ msgid "Could not save location prefs." msgstr "場所情報を保存できません。" #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "タグをを保存できません。" @@ -4161,6 +4280,7 @@ msgid "Public timeline, page %d" msgstr "パブリックタイムライン、ページ %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "パブリックタイムライン" @@ -4345,10 +4465,6 @@ msgstr "パスワード回復がリクエストされました" msgid "Password saved" msgstr "パスワードが保存されました。" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "不明なアクション" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4443,6 +4559,7 @@ msgstr "登録は許可されていません。" msgid "You cannot register if you do not agree to the license." msgstr "ライセンスに同意頂けない場合は登録できません。" +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "メールアドレスが既に存在します。" @@ -4481,25 +4598,7 @@ msgstr "更新、アナウンス、パスワードリカバリーでのみ使用 msgid "Longer name, preferably your \"real\" name." msgstr "長い名前" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, 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: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "自分自身と自分の興味について書いてください" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "自分のいる場所。例:「都市, 都道府県 (または地域), 国」" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4617,6 +4716,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "プロファイルサービスまたはマイクロブロギングサービスのURL" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4654,16 +4755,8 @@ msgstr "ログインユーザだけがつぶやきを繰り返せます。" msgid "No notice specified." msgstr "つぶやきがありません。" -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "自分のつぶやきは繰り返せません。" - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "すでにそのつぶやきを繰り返しています。" - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "繰り返された" @@ -4674,6 +4767,8 @@ msgstr "繰り返されました!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "%s への返信" @@ -4789,6 +4884,7 @@ msgid "System error uploading file." msgstr "ファイルのアップロードでシステムエラー" #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "全てのメンバー" @@ -4830,6 +4926,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "あなたはこのサイトのサンドボックスユーザができません。" @@ -5027,6 +5124,8 @@ msgstr "メンバー" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(なし)" @@ -5110,6 +5209,11 @@ msgstr "%2$s 上の %1$s へのメッセージ" msgid "Message from %1$s on %2$s" msgstr "%2$s 上の %1$s からのメッセージ" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "IM が利用不可。" + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "つぶやきを削除しました。" @@ -5117,20 +5221,20 @@ msgstr "つぶやきを削除しました。" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %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, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%1$s とタグ付けされたつぶやき、ページ %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s、ページ %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "%1$s とタグ付けされたつぶやき、ページ %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5218,6 +5322,7 @@ msgid "Repeat of %s" msgstr "%s の繰り返し" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "あなたはこのサイトでユーザを黙らせることができません。" @@ -5529,52 +5634,72 @@ msgstr "" msgid "No code entered." msgstr "コードが入力されていません" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "スナップショット" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "セッション設定" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "不正なスナップショットランバリュー" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "スナップショット頻度は数でなければなりません。" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "不正なスナップショットレポートURL。" +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "スナップショット" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "予定されているジョブで" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "データスナップショット" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "いつ status.net サーバに統計データを送りますか" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "頻度" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "レポート URL" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "レポート URL" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "このURLにスナップショットを送るでしょう" -#. TRANS: Submit button title. -msgid "Save" -msgstr "保存" - +#. TRANS: Title for button to save snapshot settings. #, fuzzy -msgid "Save snapshot settings" +msgid "Save snapshot settings." msgstr "サイト設定の保存" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5586,6 +5711,27 @@ msgstr "あなたはそのプロファイルにフォローされていません msgid "Could not save subscription." msgstr "フォローを保存できません。" +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s グループメンバー" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s グループメンバー、ページ %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "このグループのユーザのリスト。" + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. #, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." @@ -5709,31 +5855,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "%1$s とタグ付けされたつぶやき、ページ %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s とタグ付けされたつぶやきフィード (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s とタグ付けされたつぶやきフィード (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "%s とタグ付けされたつぶやきフィード (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "ID引数がありません。" +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "タグ %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "ユーザプロファイル" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "タグユーザ" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5741,15 +5899,24 @@ msgid "" msgstr "" "このユーザのタグ (アルファベット、数字、-、.、_)、カンマかスペース区切り" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "あなたはフォローされる人々にタグ付けをすることができるだけか、あなたをフォ" "ローされているか。" +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "タグ" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "このフォームを使用して、フォロー者かフォローにタグを加えてください。" +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "そのようなタグはありません。" @@ -5757,25 +5924,31 @@ msgstr "そのようなタグはありません。" msgid "You haven't blocked that user." msgstr "あなたはそのユーザをブロックしていません。" +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "ユーザはサンドボックスではありません。" +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "ユーザはサイレンスではありません。" -msgid "No profile ID in request." -msgstr "ログイントークンが要求されていません。" - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "フォロー解除済み" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "リスニーストリームライセンス ‘%1$s’ は、サイトライセンス ‘%2$s’ と互換性があ" "りません。" +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "IM設定" @@ -5790,10 +5963,12 @@ msgstr "他のオプションを管理。" msgid " (free service)" msgstr "(フリーサービス)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "なし" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5805,15 +5980,19 @@ msgstr "URLを短くします" msgid "Automatic shortening service to use." msgstr "使用する自動短縮サービス。" +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5823,17 +6002,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "URL 短縮サービスが長すぎます。(最大50字)" -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "不正なトークン。" +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "不正なトークン。" + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. #, fuzzy msgctxt "TITLE" msgid "User" @@ -5858,6 +6041,9 @@ msgstr "不正なウェルカムテキスト。最大長は255字です。" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "不正なデフォルトフォローです: '%1$s' はユーザではありません。" +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "プロファイル" @@ -5911,7 +6097,7 @@ msgstr "サイト設定の保存" msgid "Authorize subscription" msgstr "フォローを承認" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5923,18 +6109,21 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" msgstr "承認" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "このユーザーをフォロー" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5953,9 +6142,11 @@ msgstr "認証のリクエストがありません。" msgid "Subscription authorized" msgstr "フォローが承認されました" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "フォローは承認されましたが、コールバックURLが通過できませんでした。どう" @@ -5966,9 +6157,11 @@ msgstr "" msgid "Subscription rejected" msgstr "フォローが拒否" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "フォローは拒絶されましたが、コールバックURLは全く通過されませんでした。 どう" @@ -5999,16 +6192,6 @@ msgstr "リスニー URI ‘%s’ はローカルユーザーではありませ msgid "Profile URL \"%s\" is for a local user." msgstr "プロファイル URL ‘%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. -#, 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. #, fuzzy, php-format @@ -6115,7 +6298,6 @@ msgid "Contributors" msgstr "コントリビュータ" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "ライセンス" @@ -6144,7 +6326,6 @@ msgid "" msgstr "" #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "プラグイン" @@ -6227,18 +6408,6 @@ msgstr[0] "" msgid "Invalid filename." msgstr "不正なサイズ。" -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "グループ参加に失敗しました。" - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "グループの一部ではありません。" - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "グループ脱退に失敗しました。" - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6251,6 +6420,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "ユーザ保存エラー; 不正なユーザ" +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "グループ参加に失敗しました。" + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "グループの一部ではありません。" + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "グループ脱退に失敗しました。" + #. TRANS: Activity title. msgid "Join" msgstr "参加" @@ -6325,6 +6506,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "あなたはこのサイトでつぶやきを投稿するのが禁止されています。" +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "あなたのつぶやきを繰り返せません。" + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "自分のつぶやきは繰り返せません。" + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "あなたのつぶやきを繰り返せません。" + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "あなたのつぶやきを繰り返せません。" + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "すでにそのつぶやきを繰り返しています。" + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "利用者はまだつぶやいていません" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6350,16 +6561,13 @@ msgstr "フォローを保存できません。" msgid "RT @%1$s %2$s" msgstr "" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6382,6 +6590,7 @@ msgid "Unable to save tag." msgstr "タグをを保存できません。" #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "あなたはフォローが禁止されました。" @@ -6409,9 +6618,11 @@ msgstr "フォローを保存できません。" msgid "Could not delete subscription." msgstr "フォローを保存できません。" -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "許可" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6478,18 +6689,24 @@ msgid "User deletion in progress..." msgstr "" #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "プロファイル設定編集" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "編集" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "この利用者にダイレクトメッセージを送る" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "メッセージ" @@ -6515,10 +6732,6 @@ msgctxt "role" msgid "Moderator" msgstr "管理" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "フォロー" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6544,7 +6757,9 @@ msgstr "返信" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6663,8 +6878,9 @@ msgstr "" msgid "No content for notice %s." msgstr "つぶやきの内容を探す" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "そのようなユーザはいません。" #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6711,80 +6927,133 @@ msgstr "saveSettings() は実装されていません。" msgid "Unable to delete design setting." msgstr "デザイン設定を削除できません。" +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "ホームページ" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "ホームページ" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "管理者" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "基本サイト設定" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #, fuzzy msgctxt "MENU" msgid "Site" msgstr "サイト" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "デザイン設定" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. #, fuzzy msgctxt "MENU" msgid "Design" msgstr "デザイン" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "ユーザ設定" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "ユーザ" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "アクセス設定" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "アクセス" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "パス設定" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "パス" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "セッション設定" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "セッション" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Edit site notice" msgstr "サイトつぶやき" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "サイトつぶやき" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Snapshots configuration" msgstr "パス設定" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Snapshots" +msgstr "スナップショット" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "ライセンス" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "パス設定" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "プラグイン" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6795,6 +7064,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6831,9 +7101,11 @@ msgstr "" msgid "Could not issue access token." msgstr "メッセージを追加できません。" +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "OAuth アプリケーションユーザの追加時DBエラー。" +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "OAuth アプリケーションユーザの追加時DBエラー。" @@ -6928,6 +7200,17 @@ msgstr "" msgid "Cancel" msgstr "中止" +#. TRANS: Submit button title. +msgid "Save" +msgstr "保存" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "不明なアクション" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -6952,11 +7235,12 @@ msgstr "" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "回復" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -6996,6 +7280,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "すべてのフォロー" + #. TRANS: Title for command results. msgid "Command results" msgstr "コマンド結果" @@ -7006,6 +7296,7 @@ msgid "AJAX error" msgstr "Ajax エラー" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "コマンド完了" @@ -7126,6 +7417,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7145,10 +7438,6 @@ msgstr "ダイレクトメッセージ送信エラー。" msgid "Notice from %s repeated." msgstr "%s からつぶやきが繰り返されています" -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "つぶやき繰り返しエラー" - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7455,13 +7744,19 @@ msgstr "" msgid "Go to the installer." msgstr "インストーラへ。" +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "データベースエラー" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "パブリック" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "削除" @@ -7469,6 +7764,7 @@ msgstr "削除" msgid "Delete this user" msgstr "このユーザを削除" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "デザインの保存" @@ -7481,23 +7777,14 @@ msgstr "色の変更" msgid "Use defaults" msgstr "デフォルトを使用" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "デフォルトデザインに戻す。" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "デフォルトへリセットする" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "ファイルアップロード" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "自分のバックグラウンド画像をアップロードできます。最大ファイルサイズは 2MB で" "す。" @@ -7514,15 +7801,6 @@ msgctxt "RADIO" msgid "Off" msgstr "オフ" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "あなたのデザインを更新できません。" - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "デフォルトのデザインを回復。" @@ -7554,47 +7832,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "お気に入り" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -#, fuzzy -msgid "Not an atom feed." -msgstr "全てのメンバー" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "全て" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "フィルターにかけるタグを選択" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "タグ" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "タグを選んで、リストを狭くしてください" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "移動" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "" @@ -7653,9 +7945,11 @@ msgstr[0] "" msgid "Membership policy" msgstr "利用開始日" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7721,6 +8015,7 @@ msgid "%s blocked users" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. #, fuzzy msgctxt "MENU" msgid "Admin" @@ -7819,23 +8114,46 @@ msgid "%dB" msgid_plural "%dB" msgstr[0] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "不明な受信箱のソース %d。" +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "参加" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "離れる" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. #, fuzzy msgctxt "MENU" msgid "Login" @@ -7898,6 +8216,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s は %2$s であなたのつぶやきを聞いています。" +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s は %2$s であなたのつぶやきを聞いています。" + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8162,9 +8494,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "ユーザだけがかれら自身のメールボックスを読むことができます。" +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8173,32 +8507,48 @@ msgstr "" "に引き込むプライベートメッセージを送ることができます。人々はあなただけへの" "メッセージを送ることができます。" +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "受信箱" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "あなたの入ってくるメッセージ" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "送信箱" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "あなたが送ったメッセージ" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "メッセージを分析できませんでした。" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "登録ユーザではありません。" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "すみません、それはあなたの入って来るメールアドレスではありません。" +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "すみません、入ってくるメールは許可されていません。" -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "サポート外のメッセージタイプ: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8250,10 +8600,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "直接つぶやきを送る" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "キャリア選択" @@ -8263,33 +8616,68 @@ msgstr "キャリア選択" msgid "No mutual subscribers." msgstr "フォローしていません!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "To" +#. TRANS: Button text for sending a direct notice. #, fuzzy msgctxt "Send button for sending notice" msgid "Send" msgstr "投稿" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "メッセージ" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "from" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +msgctxt "SOURCE" +msgid "web" msgstr "" +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "メール" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "このグループのメンバーではありません。" +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "このつぶやきを削除できません。" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8336,72 +8724,99 @@ msgstr "" "すみません、あなたの位置を検索するのが予想より長くかかっています、後でもう一" "度試みてください" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "つぶやき" + +#. TRANS: Used in coordinates as abbreviation of north. #, fuzzy msgid "N" msgstr "北" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. #, fuzzy msgid "S" msgstr "南" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. #, fuzzy msgid "E" msgstr "東" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. #, fuzzy msgid "W" msgstr "西" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" +#. TRANS: Followed by geo location. msgid "at" msgstr "at" -msgid "web" -msgstr "" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "このつぶやきへ返信" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "返信" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "このつぶやきを削除" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "つぶやきを繰り返しました" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "このユーザへ合図" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "合図" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "このユーザへ合図を送る" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8409,18 +8824,51 @@ msgstr "" msgid "Duplicate notice." msgstr "" -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "サブスクリプションを追加できません" +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "プロファイル" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "グループプロファイル" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "返信" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "お気に入り" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "ユーザ" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "メッセージ" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "あなたの入ってくるメッセージ" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8444,31 +8892,46 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "SMS 設定" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "プロファイル設定の変更" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "ユーザ設定" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "ロゴ" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "サイトのテーマ" -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "サイトへログイン" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "検索" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "サイト検索" #. TRANS: H2 text for user subscription statistics. @@ -8515,30 +8978,53 @@ msgstr "全てのグループ" msgid "Unimplemented method." msgstr "未実装のメソッド。" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "グループ" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "ユーザグループ" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "最近のタグ" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "最近のタグ" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "フィーチャーされた" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "人気" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "return-to 引数がありません。" +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "このつぶやきを繰り返しますか?" -msgid "Yes" -msgstr "はい" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "このつぶやきを繰り返す" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, fuzzy, php-format msgid "Revoke the \"%s\" role from this user" msgstr "このグループからこのユーザをブロック" @@ -8548,9 +9034,13 @@ msgstr "このグループからこのユーザをブロック" msgid "Page not found." msgstr "API メソッドが見つかりません。" +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "サンドボックス" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "このユーザをサンドボックス" @@ -8568,128 +9058,277 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "人々" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "このサイトの人々を探す" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "つぶやき" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "つぶやきの内容を探す" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "このサイト上のグループを検索する" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "ヘルプ" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "About" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "よくある質問" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +msgctxt "MENU" msgid "TOS" msgstr "" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "プライバシー" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "ソース" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "バージョン" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "連絡先" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "バッジ" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "名称未設定のセクション" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "さらに..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "SMS 設定" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "プロファイル設定の変更" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "アバター" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "アバターのアップロード" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "パスワード" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "パスワードの変更" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "メール" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "メールの扱いを変更" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "あなたのプロファイルをデザイン" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "インスタントメッセンジャー(IM)での更新" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "SMSでの更新" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "接続" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "承認された接続アプリケーション" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "サイレンス" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "このユーザをサイレンスに" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "フォロー" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "人々 %s はフォロー" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "フォローされている" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "人々は %s をフォローしました。" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "グループ %s はメンバー" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "招待" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "友人や同僚が %s で加わるよう誘ってください。" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "このユーザーをフォロー" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "自己タグづけとしての人々タグクラウド" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "タグ付けとしての人々タグクラウド" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "なし" @@ -8698,49 +9337,56 @@ msgstr "なし" msgid "Invalid theme name." msgstr "不正なサイズ。" +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "" +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. #, fuzzy msgid "Failed saving theme." msgstr "アバターの更新に失敗しました。" -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" "Uploaded theme is too large; must be less than %d bytes uncompressed." msgstr[0] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "ブロックの削除エラー" -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "つぶやき" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -8770,8 +9416,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "このつぶやきをお気に入りにする" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "このつぶやきのお気に入りをやめる" @@ -8782,8 +9429,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "すでにそのつぶやきを繰り返しています。" +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "すでにつぶやきを繰り返しています。" @@ -8792,6 +9440,28 @@ msgstr[0] "すでにつぶやきを繰り返しています。" msgid "Top posters" msgstr "上位投稿者" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "To" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "不明な言語 \"%s\"" + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8906,5 +9576,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "メッセージが長すぎます - 最大 %1$d 字、あなたが送ったのは %2$d。" +#~ msgid "Couldn't update your design." +#~ msgstr "あなたのデザインを更新できません。" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index bd469a794f..d32b30c80b 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,20 +9,54 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:59+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:02+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "უცნობი" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "უცნობი მოქმედება" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "შესვლა" @@ -74,7 +108,9 @@ msgstr "შეინახე შესვლის პარამეტრე #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -86,6 +122,7 @@ msgstr "შეინახე" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "ასეთი გვერდი არ არსებობს." @@ -104,6 +141,7 @@ msgstr "ასეთი გვერდი არ არსებობს." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -128,8 +166,11 @@ msgstr "ასეთი გვერდი არ არსებობს." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "ასეთი მომხმარებელი არ არსებობს." @@ -142,7 +183,15 @@ msgstr "%1$s და მეგობრები, გვერდი %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr " %s და მეგობრები" @@ -212,28 +261,14 @@ msgstr "შენ და მეგობრები" msgid "Updates from %1$s and friends on %2$s!" msgstr " %1$s და მეგობრების განახლებები %2$s-ზე!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API მეთოდი ვერ მოიძებნა." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -269,6 +304,7 @@ msgstr "მომხმარებლის განახლება ვე #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "მომხმარებელს პროფილი არ გააჩნია." @@ -305,6 +341,8 @@ msgstr "სამწუხაროდ თქვენი დიზაინი #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "დიზაინის განახლება ვერ მოხერხდა." @@ -676,9 +714,12 @@ msgstr "თქვენ არ ხართ ავტორიზირებუ #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -828,16 +869,6 @@ msgstr "სხვა მომხმარებლის სტატუსი msgid "No such notice." msgstr "ასეთი შეტყობინება არ არსებობს." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "საკუთარი შეტყობინების გამეორება არ შეიძლება." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "ეს შეტყობინება უკვე გამეორებულია." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -881,8 +912,11 @@ msgstr "შეტყობინების წაშლა" msgid "Client must provide a 'status' parameter with a value." msgstr "" +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -895,6 +929,8 @@ msgstr "API მეთოდი ვერ მოიძებნა." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -964,6 +1000,8 @@ msgstr "განახლებები არჩეული %1$s-ს მი msgid "Repeats of %s" msgstr "" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%s-მა (@%s) დაამატა თქვენი შეტყობინება თავის რჩეულებში" @@ -978,6 +1016,8 @@ msgstr "შეტყობინებები მონიშნული რ #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "განახლებები მონიშნული როგორც %1$s %2$s-ზე!" @@ -1094,11 +1134,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "პროფილი არ არსებობს." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1106,10 +1148,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "ამ ჯგუფის წევრების სია." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1134,6 +1178,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "ამ ჯგუფის წევრების სია." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "ვერ მოხერხდა მომხმარებელ %1$s-სთან ერთად ჯგუფ %2$s-ში გაერთიანება." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "%1$s–ის სტატუსი %2$s–ზე" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "გამოწერა ავტორიზირებულია" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "IM დასტური გაუქმდა." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1175,7 +1247,7 @@ msgstr "რჩეულებში დამატება" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "%s ჯგუფის წევრი" #. TRANS: Subtitle for group membership feed. @@ -1189,8 +1261,7 @@ msgstr "%1$s-ს ის ჯგუფები რომლებშიც გა msgid "Cannot add someone else's membership." msgstr "ახალი გამოწერის ჩასმა ვერ მოხერხდა." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "მოძებნე შეტყობინებებში" @@ -1310,6 +1381,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "მომხმარებელი შესაბამისი პროფილის გარეშე." @@ -1336,6 +1408,7 @@ msgstr "წინასწარი გადახედვა" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. #, fuzzy msgctxt "BUTTON" msgid "Delete" @@ -1451,6 +1524,7 @@ msgstr "არ დაბლოკო ეს მომხმარებელი #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "დიახ" @@ -1509,6 +1583,32 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s-მა დატოვა ჯგუფი %2$s" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "ავტორიზებული არ ხართ." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "არცერთი პროფილის ID არ არის მოთხოვნილი." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "ასეთი ID-ს მქონე პროფილი ვერ მოიძებნა." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "გამოწერა გაუქმებულია" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "დასადასტურებელი კოდი არ არის." @@ -1649,6 +1749,7 @@ msgstr "აპლიკაცია ვერ მოიძებნა." msgid "You are not the owner of this application." msgstr "თქვენ არ ხართ ამ აპლიკაციის მფლობელი." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "" @@ -1725,24 +1826,6 @@ msgstr "არ წაშალო ეს შეტყობინება" msgid "Delete this group." msgstr "ამ მომხმარებლის წაშლა" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "ავტორიზებული არ ხართ." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1939,16 +2022,19 @@ msgid "Use defaults" msgstr "გამოიყენე პირვანდელი მდგომარეობა" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "დააბრუნე პირვანდელი დიზაინი" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "პირვანდელის პარამეტრების დაბრუნება" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "შეინახე დიზაინი" @@ -2285,6 +2371,7 @@ msgstr "რჩეულის გაუქმება" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "პოპულარული შეტყობინებები" @@ -2325,6 +2412,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "%s-ს რჩეული შეტყობინებები" @@ -2337,6 +2426,7 @@ msgstr "განახლებები არჩეული %1$s-ს მი #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "წარმოდგენილი მომხმარებლები" @@ -2398,6 +2488,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "დაშორებული სერვისი OMB პროტოკოლის უცნობ ვერსიას იყენებს." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "შეცდომა დაშორებული პროფილის განახლებისას." @@ -2435,14 +2526,6 @@ msgstr "მომხმარებელს უკვე აქვს ეს msgid "No profile specified." msgstr "პროფილი მითითებული არ არის." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "ასეთი ID-ს მქონე პროფილი ვერ მოიძებნა." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3071,6 +3154,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "" @@ -3309,6 +3393,9 @@ msgid "Ajax Error" msgstr "Ajax შეცდომა" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "ახალი შეტყობინება" @@ -3614,7 +3701,6 @@ msgid "Password saved." msgstr "პაროლი შენახულია." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "გზები" @@ -3820,6 +3906,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "არასდროს" @@ -3981,16 +4068,21 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "აღწერეთ საკუთარი თავი და თქვენი ინტერესები %d სიმბოლოთი" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "აღწერეთ საკუთარი თავი და თქვენი ინტერესები" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4003,7 +4095,9 @@ msgid "Location" msgstr "მდებარეობა" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "რომელ ქალაქში, რეგიონში, ქვეყანაში ხართ?" #. TRANS: Checkbox label in form for profile settings. @@ -4011,6 +4105,9 @@ msgid "Share my current location when posting notices" msgstr "გააზიარე ჩემი მდებარეობა შეტყობინებების დაპოსტვისას" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "სანიშნეები" @@ -4047,6 +4144,27 @@ msgid "" msgstr "" "ავტომატურად გამოიწერე ის ვინც მე გამომიწერს (საუკეთესოა არა ადამიანებისთვის)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "გამოწერები" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4078,7 +4196,7 @@ msgstr "არასწორი სანიშნე: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "მომხმარებლის განახლება ავტოგამოწერისათვის ვერ მოხერხდა." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4087,6 +4205,7 @@ msgid "Could not save location prefs." msgstr "მდებარეობის პარამეტრების შენახვა ვერ მოხერხდა." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "სანიშნეების შენახვა ვერ მოხერხდა." @@ -4118,6 +4237,7 @@ msgid "Public timeline, page %d" msgstr "საჯარო განახლებების ნაკადი, გვერდი %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "საჯარო განახლებების ნაკადი" @@ -4295,10 +4415,6 @@ msgstr "პაროლის აღდგენა მოთხოვნილ msgid "Password saved" msgstr "პაროლი შენახულია." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "უცნობი მოქმედება" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4395,6 +4511,7 @@ msgstr "რეგისტრაცია არ არის დაშვებ msgid "You cannot register if you do not agree to the license." msgstr "ვერ დარეგისტრირდებით თუ არ დაეთანხმებით ლიცენზიის პირობებს." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "ელ. ფოსტის მისამართი უკვე არსებობს." @@ -4434,25 +4551,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "გრძელი სახელი, სასურველია თქვენი ნამდვილი სახელი" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, 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: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "აღწერეთ საკუთარი თავი და თქვენი ინტერესები" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "რომელ ქალაქში, რეგიონში, ქვეყანაში ხართ?" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4574,6 +4673,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "თქვენი პროფილის URL სხვა თავსებად მიკრობლოგინგის სერვისზე" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4610,16 +4711,8 @@ msgstr "მხოლოდ ავტორიზირებულ მომხ msgid "No notice specified." msgstr "შეტყობინება მითითებული არ არის." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "საკუთარი შეტყობინების გამეორება არ შეიძლება." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "თქვენ უკვე გაიმეორეთ ეს შეტყობინება." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "გამეორებული" @@ -4630,6 +4723,8 @@ msgstr "გამეორებული!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "პასუხები %s–ს" @@ -4745,6 +4840,7 @@ msgid "System error uploading file." msgstr "სისტემური შეცდომა ფაილის ატვირთვისას." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." msgstr "" @@ -4784,6 +4880,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "თქვენ ვერ შეძლებთ მომხმარებლების იზოლირებას ამ საიტზე." @@ -4976,6 +5073,8 @@ msgstr "წევრები" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(არცერთი)" @@ -5050,6 +5149,11 @@ msgstr "" msgid "Message from %1$s on %2$s" msgstr "" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "IM არ არის ხელმისაწვდომი." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "" @@ -5057,20 +5161,20 @@ msgstr "" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %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, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "შეტყობინებები მონიშნული %1$s-ით, გვერდი %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "შეტყობინებები მონიშნული %1$s-ით, გვერდი %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5148,6 +5252,7 @@ msgid "Repeat of %s" msgstr "" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "თქვენ ვერ შეძლებთ მომხმარებლების დადუმებას ამ საიტზე." @@ -5448,51 +5553,72 @@ msgstr "" msgid "No code entered." msgstr "კოდი არ არის შეყვანილი" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "წინა ვერსიები" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "წინა ვერსიების მართვა" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "წინა ვერსიის გაშვების არასწორი მონაცემი." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "წინა ვერსიის სიხშირე ციფრი უნდა იყოს." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "" +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "წინა ვერსიები" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "როდის გაეგზავნოს სტატისტიკური მონაცემები status.net სერვერს" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "სიხშირე" -msgid "Snapshots will be sent once every N web hits" -msgstr "" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." +msgstr "მდგომარეობა გაიგზავნება ამ URL-ზე" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "მდგომარეობა გაიგზავნება ამ URL-ზე" -#. TRANS: Submit button title. -msgid "Save" -msgstr "შენახვა" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "დაიმახსოვრე მდგომარეობის პარამეტრები" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5504,6 +5630,27 @@ msgstr "თქვენ არ გაქვთ გამოწერილი msgid "Could not save subscription." msgstr "გამოწერის დამახსოვრება ვერ მოხერხდა." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s ჯგუფის წევრი" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s ჯგუფის წევრი, გვერდი %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "ამ ჯგუფის წევრების სია." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5627,31 +5774,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "შეტყობინებები მონიშნული %1$s-ით, გვერდი %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "შეტყობინებების RSS მონიშნული %s-თ (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "შეტყობინებების RSS მონიშნული %s-თ (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "შეტყობინებების RSS მონიშნული %s-თ (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "" +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "სანიშნე %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "მომხმარებლის პროფილი" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "მონიშნე მომხმარებელი" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5660,17 +5819,26 @@ msgstr "" "სანიშნეები ამ მომხმარებლისთვის (ასოები, ციფრები, -, ., და _). გამოყავით " "მძიმით ან სივრცით" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "ადამიანების მონიშვნა შესაძლებელია მხოლოდ მაშინ, როდესაც ან თქვენ გაქვთ " "გამოწერილი მისი განახლებები, ან იმას." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "სანიშნეები" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "გამოიყენეთ ეს ფორმა, რომ მიანიჭოთ სანიშნეები თქვენს გამოწერებს ან " "გამომწერებს." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "ასეთი სანიშნე არ არსებობს." @@ -5678,25 +5846,31 @@ msgstr "ასეთი სანიშნე არ არსებობს." msgid "You haven't blocked that user." msgstr "თქვენ არ დაგიბლოკავთ ეს მომხმარებელი." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "მომხმარებელი არ არის იზოლირებული." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "მომხმარებელი არ არის დადუმებული." -msgid "No profile ID in request." -msgstr "არცერთი პროფილის ID არ არის მოთხოვნილი." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "გამოწერა გაუქმებულია" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "გამოსაწერი მომხმარებლის ნაკადის ლიცენზია ‘%1$s’ შეუთავსებელია საიტის " "ლიცენზიასთან ‘%2$s’." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "IM პარამეტრები" @@ -5711,10 +5885,12 @@ msgstr "სხა მრავალნაირი პარამეტრე msgid " (free service)" msgstr " (უფასო სერვისი)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "არაფერი" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5726,15 +5902,19 @@ msgstr "შეამოკლე URL–ები შემდეგით" msgid "Automatic shortening service to use." msgstr "გამოსაყენებელი შემოკლების ავტომატური სერვისი." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5744,17 +5924,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "URL–ს შემოკლების სერვისი ძალიან გრძელია (მაქს. 50 სიმბოლო)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "შეტყობინების არასწორი შიგთავსი." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "შეტყობინების არასწორი შიგთავსი." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "მომხმარებელი" @@ -5778,6 +5962,9 @@ msgstr "არასწორი მისასალმებელი ტე msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "პროფილი" @@ -5831,7 +6018,7 @@ msgstr "საიტის პარამეტრების შენახ msgid "Authorize subscription" msgstr "გამოწერის ავტორიზაცია" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5844,18 +6031,21 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" msgstr "მიღება" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "გამოიწერე ეს მომხმარებელი" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5874,9 +6064,11 @@ msgstr "ავტორიზაციის მოთხოვნა არ ა msgid "Subscription authorized" msgstr "გამოწერა ავტორიზირებულია" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "გამოწერა ავტორიზირებულია, მაგრამ უკან დასაბრუნებელი URL არ მოწოდებულა. " @@ -5887,9 +6079,11 @@ msgstr "" msgid "Subscription rejected" msgstr "გამოწერა უარყოფილია" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "გამოწერა უარყოფილია, მაგრამ უკან დასაბრუნებელი URL არ მოწოდებულა. " @@ -5920,16 +6114,6 @@ msgstr "პროფილის URL ‘%s’ ლოკალური მომ msgid "Profile URL \"%s\" is for a local user." msgstr "პროფილის URL ‘%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. -#, 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. #, fuzzy, php-format @@ -6035,7 +6219,6 @@ msgid "Contributors" msgstr "წვლილის შემომტანები" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "ლიცენზია" @@ -6074,7 +6257,6 @@ msgstr "" "ერთად. თუ არა, იხილეთ %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "დამატებები" @@ -6156,18 +6338,6 @@ msgstr[0] "" msgid "Invalid filename." msgstr "ფაილის არასწორი სახელი." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "ჯგუფში გაწევრიანება ვერ მოხერხდა." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "ჯგუფის წევრი არ ხართ." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "ჯგუფის დატოვება ვერ მოხერხდა." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6180,6 +6350,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "შეცდომა მომხმარებლის შენახვისას; არასწორი." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "ჯგუფში გაწევრიანება ვერ მოხერხდა." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "ჯგუფის წევრი არ ხართ." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "ჯგუფის დატოვება ვერ მოხერხდა." + #. TRANS: Activity title. msgid "Join" msgstr "გაერთიანება" @@ -6254,6 +6436,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "თქვენ აგეკრძალათ ამ საიტზე შეტყობინებების დაპოსტვა." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "საკუთარი შეტყობინების გამეორება არ შეიძლება." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "საკუთარი შეტყობინების გამეორება არ შეიძლება." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "საკუთარი შეტყობინების გამეორება არ შეიძლება." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "საკუთარი შეტყობინების გამეორება არ შეიძლება." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "თქვენ უკვე გაიმეორეთ ეს შეტყობინება." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "მომხმარებელს არ გააჩნია ბოლო შეტყობინება." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6280,16 +6492,13 @@ msgstr "ჯგუფის ლოკალური ინფორმაცი msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6314,6 +6523,7 @@ msgid "Unable to save tag." msgstr "სანიშნეს დამახსოვრება ვერ ხერხდება." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "თქვენ აგეკრძალათ გამოწერა." @@ -6341,9 +6551,11 @@ msgstr "გამოწერის წაშლა ვერ მოხერხ msgid "Could not delete subscription." msgstr "გამოწერის წაშლა ვერ მოხერხდა." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "დაშვება" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6409,18 +6621,24 @@ msgid "User deletion in progress..." msgstr "მომხმარებლის წაშლა პროგრესშია..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "პროფილის პარამეტრების რედაქტირება" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "რედაქტირება" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "გაუგზავნე პირდაპირი შეტყობინება ამ მომხმარებელს" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "შეტყობინება" @@ -6442,10 +6660,6 @@ msgctxt "role" msgid "Moderator" msgstr "მოდერატორი" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "გამოწერა" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6471,7 +6685,9 @@ msgstr "პასუხი" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6591,8 +6807,9 @@ msgstr "" msgid "No content for notice %s." msgstr "მოძებნე შეტყობინებებში" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "ასეთი მომხმარებელი არ არსებობს." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6639,77 +6856,129 @@ msgstr "saveSettings() არ არის განხორციელებ msgid "Unable to delete design setting." msgstr "დიზაინის პარამეტრების წაშლა ვერ ხერხდება." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. #, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "ვებ. გვერსი" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "ვებ. გვერსი" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "ადმინი" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "საიტის ძირითადი კონფიგურაცია" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "საიტი" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "დიზაინის კონფიგურაცია" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "დიზაინი" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "მომხმარებლის კონფიგურაცია" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "მომხმარებელი" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "შესვლის კონფიგურაცია" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "შესვლა" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "გზების კონფიგურაცია" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "გზები" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "სესიების კონფიგურაცია" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "სესიები" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "საიტის შეტყობინების რედაქტირება" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "საიტის შეტყობინება" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "წინა ვერსიების კონფიგურაცია" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Snapshots" +msgstr "წინა ვერსიები" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "ლიცენზია" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "გზების კონფიგურაცია" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "დამატებები" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6720,6 +6989,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6756,9 +7026,11 @@ msgstr "" msgid "Could not issue access token." msgstr "შეტყობინების ჩასმა ვერ მოხერხდა." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "ბაზამ დაუშვა შეცდომა OAuth აპლიკაციის მომხმარებლის ჩასმისას." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "ბაზამ დაუშვა შეცდომა OAuth აპლიკაციის მომხმარებლის ჩასმისას." @@ -6853,6 +7125,17 @@ msgstr "" msgid "Cancel" msgstr "გაუქმება" +#. TRANS: Submit button title. +msgid "Save" +msgstr "შენახვა" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "უცნობი მოქმედება" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -6875,11 +7158,12 @@ msgstr "დამტკიცებულია %1$s - \"%2$s\" შესვლ msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "უკუგება" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -6919,6 +7203,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "ყველა გამოწერა" + #. TRANS: Title for command results. msgid "Command results" msgstr "ბრძანების შედეგები" @@ -6929,6 +7219,7 @@ msgid "AJAX error" msgstr "Ajax შეცდომა" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "ბრძანება დასრულდა" @@ -7049,6 +7340,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7070,10 +7363,6 @@ msgstr "შეცდომა პირდაპირი შეტყობი msgid "Notice from %s repeated." msgstr "შეტყობინება %s-გან გამეორდა." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "შეცდომა შეტყობინების გამეორებისას." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7374,13 +7663,19 @@ msgstr "თუ გინდათ ინსტალატორი გაუშ msgid "Go to the installer." msgstr "გადადი ამ ინსტალატორზე." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "მონაცემთა ბაზის შეცდომა" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "საჯარო" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "წაშლა" @@ -7388,6 +7683,7 @@ msgstr "წაშლა" msgid "Delete this user" msgstr "ამ მომხმარებლის წაშლა" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "შეინახე დიზაინი" @@ -7400,23 +7696,14 @@ msgstr "შეცვალე ფერები" msgid "Use defaults" msgstr "გამოიყენე პირვანდელი მდგომარეობა" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "დააბრუნე პირვანდელი დიზაინი" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "პირვანდელის პარამეტრების დაბრუნება" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "ფაილის ატვირთვა" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "თქვენ შეგიძლიათ ატვირთოთ პერსონალური ფონური სურათი. ფაილის დასაშვები ზომაა " "2მბ." @@ -7433,15 +7720,6 @@ msgctxt "RADIO" msgid "Off" msgstr "გამორთვა" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "დიზაინის განახლება ვერ მოხერხდა." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "დიზაინის პირველადი პარამეტრები დაბრუნებულია." @@ -7473,46 +7751,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "რჩეული" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -msgid "Not an atom feed." -msgstr "" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "ყველა" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "აირჩიე გასაფილტრი სანიშნე" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "სანიშნე" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "სიის გასაფილტრად აირჩიე სანიშნე" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "წინ" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "მიანიჭე ამ მომხმარებელს \"%s\" როლი" @@ -7573,9 +7866,11 @@ msgstr[0] "" msgid "Membership policy" msgstr "" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7641,6 +7936,7 @@ msgid "%s blocked users" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "ადმინი" @@ -7738,23 +8034,46 @@ msgid "%dB" msgid_plural "%dB" msgstr[0] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "" +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "გაერთიანება" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "დატოვება" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "შესვლა" @@ -7815,6 +8134,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s ამიერიდან ყურს უგდებს თქვენს შეტყობინებებს %2$s-ზე." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s ამიერიდან ყურს უგდებს თქვენს შეტყობინებებს %2$s-ზე." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8086,9 +8419,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "მხოლოდ მომხმარებელს შეუძლია თავისი ფოსტის წაკითხვა." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8097,34 +8432,50 @@ msgstr "" "შეტყობინებები, რომ ჩაერთოთ საუბრებში სხვა ხალხთან. ხალხს შეუძლია " "გამოგიგზავნონ შეტყობინებები მხოლოდ თქვენ დასანახად." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "შემომავალი წერილების ყუთი" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "თქვენი შემომავალი შეტყობინებები" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "გამავალი წერილების ყუთი" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "თქვენი გაგზავნილი წერილები" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "შეტყობინების გაცრა (გა-parse-ვა) ვერ მოხერხდა." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "მომხმარებელი რეგისტრირებული არ არის." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "" "ბოდიში, მაგრამ ეს არ არის თქვენი რეგისტრირებული შემომავალი ელ. ფოსტის " "მისამართი." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "ბოდიში, შემომავალი ელ. ფოსტის მისამართი არ არის დაშვებული." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "შეტყობინების ტიპი არ არის მხარდაჭერილი: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8174,10 +8525,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "გააგზავნე პირდაპირი შეტყობინება" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "აირჩიეთ ოპერატორი" @@ -8187,32 +8541,67 @@ msgstr "აირჩიეთ ოპერატორი" msgid "No mutual subscribers." msgstr "არ გაქვთ გამოწერილი!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "ვის" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "გაგზავნა" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "შეტყობინება" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "ვისგან" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +msgctxt "SOURCE" +msgid "web" msgstr "" +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "ელ. ფოსტა" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "თვენ არ ხართ ამ ჯგუფის წევრი." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "არ წაშალო ეს შეტყობინება" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8259,68 +8648,94 @@ msgstr "" "ბოდიში, როგორც ჩანს ადგილმდებარეობის დადგენას ჩვეულებრივზე მეტი ხანი " "სჭირდება, გთხოვთ სცადოთ მოგვიანებით" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "შეტყობინებები" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "ჩ" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "ს" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "ა" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "დ" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "" -msgid "web" -msgstr "" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "უპასუხე ამ შეტყობინებას" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "პასუხი" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "შეტყობინების წაშლა" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "შეტყობინება გამეორებულია" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "" +#. TRANS: Button text to nudge/ping another user. +msgctxt "BUTTON" msgid "Nudge" msgstr "" -msgid "Send a nudge to this user" -msgstr "" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." +msgstr "გაუგზავნე პირდაპირი შეტყობინება ამ მომხმარებელს" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8328,19 +8743,52 @@ msgstr "" msgid "Duplicate notice." msgstr "" -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "ახალი გამოწერის ჩასმა ვერ მოხერხდა." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "პროფილი" + +#. TRANS: Menu item title in personal group navigation menu. #, fuzzy msgid "Your profile" msgstr "მომხმარებლის პროფილი" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "პასუხები" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "რჩეულები" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "მომხმარებელი" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "შეტყობინება" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "თქვენი შემომავალი შეტყობინებები" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8364,35 +8812,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. #, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "SMS პარამეტრები" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "შეცვალე პროფილის პარამეტრები" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "მომხმარებლის კონფიგურაცია" -#, fuzzy +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "გასვლა" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Logout from the site" +msgid "Logout from the site." msgstr "გასვლა საიტიდან" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Login to the site" +msgid "Login to the site." msgstr "საიტზე შესვლა" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "ძიება" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "ძიება საიტზე" #. TRANS: H2 text for user subscription statistics. @@ -8439,30 +8897,53 @@ msgstr "ყველა ჯგუფი" msgid "Unimplemented method." msgstr "მეთოდი განუხორციელებელია." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "ჯგუფები" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "ბოლო სანიშნეები" -msgid "Featured" -msgstr "" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "ბოლო სანიშნეები" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Featured" +msgstr "წარმოდგენილი მომხმარებლები" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "პოპულარული" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "" +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "გავიმეორო ეს შეტყობინება?" -msgid "Yes" -msgstr "დიახ" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "შეტყობინების გამეორება" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "ჩამოართვი \"%s\" როლი ამ მომხმარებელს" @@ -8472,9 +8953,13 @@ msgstr "ჩამოართვი \"%s\" როლი ამ მომხმ msgid "Page not found." msgstr "API მეთოდი ვერ მოიძებნა." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" -msgstr "" +msgstr "იზოლირების მოხსნა" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "ამ მომხმარებლის იზოლირება" @@ -8492,128 +8977,275 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "ადამიანები" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "მოძებნე ადამიანები ამ საიტზე" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "შეტყობინებები" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "მოძებნე შეტყობინებებში" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "მოძებნე ჯგუფები ამ საიტზე" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "დახმარება" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "საიტის შესახებ" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "ხდკ" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "მპ" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "პირადი" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "წყარო" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "ვერსია" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "კონტაქტი" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "იარლიყი" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "უსათაურო სექცია" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "მეტი..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "SMS პარამეტრები" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "შეცვალე პროფილის პარამეტრები" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "ავატარი" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "ატვირთე ავატარი" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "პაროლი" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "შეცვალე პაროლი" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "ელ. ფოსტა" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "ელ. ფოსტის მართვა" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "პროფილის პარამეტრები" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" msgid "URL" msgstr "" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "განახლებები ჩათ კლიენტისგან (IM)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "განახლებები SMS-თ" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "შეერთებები" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "ავტორიზირებული შეერთებული აპლიკაციები" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "დადუმება" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "ამ მომხმარებლის დადუმება" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "გამოწერები" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." +msgstr "თქვენ არ გაქვთ გამოწერილი ამ პროფილის განახლებები." + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "გამომწერები" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." +msgstr "უკვე გამოწერილია!" + +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "People %s subscribes to" +msgctxt "MENU" +msgid "Pending (%d)" msgstr "" +#. TRANS: Menu item title in local navigation menu. #, php-format -msgid "People subscribed to %s" +msgid "Approve pending subscription requests." msgstr "" -#, php-format -msgid "Groups %s is a member of" -msgstr "" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." +msgstr "%1$s-ს ის ჯგუფები რომლებშიც გაერთიანებულია %2$s." +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "მოწვევა" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "მოიწვიე მეგობრები და კოლეგები %s-ზე" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "გამოიწერე ეს მომხმარებელი" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "მომხმარებლების სანიშნეების ღრუბელი (თვითმონიშნული)" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "მომხმარებლების სანიშნეების ღრუბელი (როგორც სხვებმა მონიშნეს)" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "არაფერი" @@ -8622,18 +9254,26 @@ msgstr "არაფერი" msgid "Invalid theme name." msgstr "ფაილის არასწორი სახელი." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "ამ სერვერს არ შეუძლია თემების ატვირთვა ZIP-ის მხარდაჭერის გარეშე." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "თემის ფაილი არ არის, ან ატვირთვა ვერ მოხერხდა." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "თემის შენახვა ჩაიშალა." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "არასწორი თემა: დირექტორიების არასწორი სტრუქტურა." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, fuzzy, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8641,9 +9281,12 @@ msgid_plural "" msgstr[0] "" "ატვირთული თემა ძალიან დიდია; შეუკუმშავი უნდა იყოს %d ბაიტზე ნაკლები." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "თემის არასწორი არქივი: ფაილი css/display.css არ არის" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -8651,23 +9294,21 @@ msgstr "" "თემა შეიცავს ფაილის ან საქაღალდის არასწორ სახელს. გამოიყენეთ ASCII ასოები, " "ციფრები, ქვედა ტირე, და მინუსის ნიშანი." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" "თემა ფაილის გაფართოებების საშიშ სახელებს შეიცავს; შეიძლება არ იყოს უსაფრთხო." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "თემა შეიცავს ფაილის ტიპს '.%s', რომელიც აკრძალულია." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "თემის არქივის გახსნისას მოხდა შეცდომა." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "შეტყობინებები" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -8697,8 +9338,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "ჩაამატე რჩეულებში ეს შეტყობინება" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "ამოშალე რჩეულებიდან ეს შეტყობინება" @@ -8709,8 +9351,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "თქვენ უკვე გაიმეორეთ ეს შეტყობინება." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "ეს შეტყობინება უკვე გამეორებულია." @@ -8719,6 +9362,28 @@ msgstr[0] "ეს შეტყობინება უკვე გამეო msgid "Top posters" msgstr "საუკეთესო მპოსტავები" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "ვის" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "უცნობი ენა \"%s\"." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8834,7 +9499,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "" -#~ "შეტყობინება ძალიან გრძელია - დასაშვები რაოდენობაა %1$d სიმბოლომდე, თქვენ " -#~ "გააგზავნეთ %2$d." +#~ msgid "Couldn't update your design." +#~ msgstr "დიზაინის განახლება ვერ მოხერხდა." diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index f85d161a6f..76759b32f0 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,20 +11,54 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:00+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:04+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "알려지지 않은 행동" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "알려지지 않은 행동" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "접근" @@ -76,7 +110,9 @@ msgstr "접근 설정을 저장" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -88,6 +124,7 @@ msgstr "저장" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "해당하는 페이지 없음" @@ -106,6 +143,7 @@ msgstr "해당하는 페이지 없음" #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -130,8 +168,11 @@ msgstr "해당하는 페이지 없음" #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "해당하는 이용자 없음" @@ -144,7 +185,15 @@ msgstr "%s 및 친구들, %d 페이지" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s 및 친구들" @@ -210,28 +259,14 @@ msgstr "당신 및 친구들" msgid "Updates from %1$s and friends on %2$s!" msgstr "%2$s에 있는 %1$s 및 친구들의 업데이트!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API 메서드 발견 안 됨." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -265,6 +300,7 @@ msgstr "이용자를 업데이트 할 수 없습니다." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "이용자가 프로필을 가지고 있지 않습니다." @@ -301,6 +337,8 @@ msgstr "디자인 설정을 저장할 수 없습니다." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "디자인을 업데이트 할 수 없습니다." @@ -676,9 +714,12 @@ msgstr "당신은 이 프로필에 구독되지 않고있습니다." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "세션토큰에 문제가 있습니다. 다시 시도해주십시오." @@ -834,16 +875,6 @@ msgstr "당신은 다른 사용자의 상태를 삭제하지 않아도 된다." msgid "No such notice." msgstr "그러한 통지는 없습니다." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "자기 자신의 소식은 재전송할 수 없습니다." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "이미 재전송된 소식입니다." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -887,8 +918,11 @@ msgstr "통지 삭제" msgid "Client must provide a 'status' parameter with a value." msgstr "" +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -901,6 +935,8 @@ msgstr "API 메서드 발견 안 됨." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -970,6 +1006,8 @@ msgstr "%1$s님이 %2$s/%3$s의 업데이트에 답변했습니다." msgid "Repeats of %s" msgstr "%s에 답신" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "누군가 내 글을 좋아하는 게시글로 추가했을 때, 메일을 보냅니다." @@ -984,6 +1022,8 @@ msgstr "%s 태그된 통지" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" @@ -1100,11 +1140,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "프로파일이 없습니다." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1112,10 +1154,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "이 그룹의 회원리스트" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1140,6 +1184,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "이 그룹의 회원리스트" + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "이용자 %1$s 의 그룹 %2$s 가입에 실패했습니다." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "%1$s의 상태 (%2$s에서)" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "구독 허가" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "확인 코드가 없습니다." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1181,7 +1253,7 @@ msgstr "좋아하는 게시글로 추가하기" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "%s 그룹 회원" #. TRANS: Subtitle for group membership feed. @@ -1195,8 +1267,7 @@ msgstr "%s 사용자가 멤버인 그룹" msgid "Cannot add someone else's membership." msgstr "예약 구독을 추가 할 수 없습니다." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "통지들의 내용 찾기" @@ -1316,6 +1387,7 @@ msgstr "당신의 개인 아바타를 업로드할 수 있습니다. 최대 파 #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "이용자가 프로필을 가지고 있지 않습니다." @@ -1342,6 +1414,7 @@ msgstr "미리보기" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. #, fuzzy msgctxt "BUTTON" msgid "Delete" @@ -1459,6 +1532,7 @@ msgstr "이용자를 차단하지 않는다." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "예" @@ -1518,6 +1592,32 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s의 상태 (%2$s에서)" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "로그인하고 있지 않습니다." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "해당 ID의 프로필이 없습니다." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "해당 ID의 프로필이 없습니다." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "구독취소 되었습니다." + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "확인 코드가 없습니다." @@ -1658,6 +1758,7 @@ msgstr "인증 코드가 없습니다." msgid "You are not the owner of this application." msgstr "이 응용프로그램 삭제 않기" +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "당신의 세션토큰관련 문제가 있습니다." @@ -1729,24 +1830,6 @@ msgstr "이 통지를 지울 수 없습니다." msgid "Delete this group." msgstr "이 사용자 삭제" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "로그인하고 있지 않습니다." - #. TRANS: Instructions for deleting a notice. #, fuzzy msgid "" @@ -1941,15 +2024,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. #, 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. msgid "Reset back to default." msgstr "" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "디자인 저장" @@ -2286,6 +2372,7 @@ msgstr "좋아하는글 취소" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "인기있는 게시글" @@ -2321,6 +2408,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "%s 님의 좋아하는 글" @@ -2333,6 +2422,7 @@ msgstr "%2$s에 있는 %1$s의 업데이트!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "인기있는 회원" @@ -2397,6 +2487,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "OMB 프로토콜의 알려지지 않은 버전" #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. #, fuzzy msgid "Error updating remote profile." msgstr "리모트 프로필 업데이트 오류" @@ -2436,14 +2527,6 @@ msgstr "이용자가 프로필을 가지고 있지 않습니다." msgid "No profile specified." msgstr "프로필을 지정하지 않았습니다." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "해당 ID의 프로필이 없습니다." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3051,6 +3134,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. #, fuzzy msgid "Private" msgstr "개인정보 취급방침" @@ -3293,6 +3377,9 @@ msgid "Ajax Error" msgstr "Ajax 에러입니다." #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "새로운 통지" @@ -3597,7 +3684,6 @@ msgid "Password saved." msgstr "비밀 번호 저장" #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "경로" @@ -3802,6 +3888,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "SSL 서버" @@ -3960,16 +4047,21 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "%d자 이내에서 자기 소개 및 자기 관심사" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "자기 소개 및 자기 관심사" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3982,7 +4074,9 @@ msgid "Location" msgstr "위치" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "당신은 어디에 삽니까? \"시, 도 (or 군,구), 나라\"" #. TRANS: Checkbox label in form for profile settings. @@ -3990,6 +4084,9 @@ msgid "Share my current location when posting notices" msgstr "" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "태그" @@ -4023,6 +4120,27 @@ msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "나에게 구독하는 사람에게 자동 구독 신청" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "구독" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4054,7 +4172,7 @@ msgstr "올바르지 않은 태그: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "자동구독에 사용자를 업데이트 할 수 없습니다." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4063,6 +4181,7 @@ msgid "Could not save location prefs." msgstr "태그를 저장할 수 없습니다." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "태그를 저장할 수 없습니다." @@ -4094,6 +4213,7 @@ msgid "Public timeline, page %d" msgstr "공개 타임라인, %d 페이지" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "퍼블릭 타임라인" @@ -4268,10 +4388,6 @@ msgstr "비밀 번호 복구가 요청되었습니다." msgid "Password saved" msgstr "비밀 번호 저장" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "알려지지 않은 행동" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4368,6 +4484,7 @@ msgstr "가입이 허용되지 않습니다." msgid "You cannot register if you do not agree to the license." msgstr "라이선스에 동의하지 않는다면 등록할 수 없습니다." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "이메일 주소가 이미 존재 합니다." @@ -4403,25 +4520,7 @@ msgstr "업데이트나 공지, 비밀번호 찾기에 사용하세요." msgid "Longer name, preferably your \"real\" name." msgstr "더욱 긴 이름을 요구합니다." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, 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: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "자기 소개 및 자기 관심사" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "당신은 어디에 삽니까? \"시, 도 (or 군,구), 나라\"" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4538,6 +4637,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "다른 마이크로블로깅 서비스의 귀하의 프로필 URL" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4575,16 +4676,8 @@ msgstr "오직 해당 사용자만 자신의 메일박스를 열람할 수 있 msgid "No notice specified." msgstr "프로필을 지정하지 않았습니다." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "자신의 글은 재전송할 수 없습니다." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "이미 재전송된 소식입니다." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "재전송됨" @@ -4595,6 +4688,8 @@ msgstr "재전송됨!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "%s에 답신" @@ -4703,6 +4798,7 @@ msgid "System error uploading file." msgstr "파일을 올리는데 시스템 오류 발생" #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "모든 회원" @@ -4743,6 +4839,7 @@ msgid "StatusNet" msgstr "StatusNet %s" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "이 사이트의 이용자에 대해 권한정지 할 수 없습니다." @@ -4928,6 +5025,8 @@ msgstr "회원" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(없음)" @@ -5004,6 +5103,11 @@ msgstr "%2$s에서 %1$s까지 메시지" msgid "Message from %1$s on %2$s" msgstr "%1$s에서 %2$s까지 메시지" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "인스턴트 메신저를 사용할 수 없습니다." + #. TRANS: Client error displayed trying to show a deleted notice. #, fuzzy msgid "Notice deleted." @@ -5012,20 +5116,20 @@ msgstr "게시글이 등록되었습니다." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %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, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%s 태그된 통지" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%s 및 친구들, %d 페이지" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "%s 태그된 통지" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5105,6 +5209,7 @@ msgid "Repeat of %s" msgstr "%s에 답신" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "이 사이트의 이용자에 대해 권한정지 할 수 없습니다." @@ -5397,55 +5502,73 @@ msgstr "귀하의 휴대폰의 통신회사는 무엇입니까?" msgid "No code entered." msgstr "코드가 입력 되지 않았습니다." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" -msgstr "" +msgstr "접근 설정을 저장" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "메일 주소 확인" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. #, fuzzy msgid "Invalid snapshot run value." msgstr "옳지 않은 크기" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. #, fuzzy msgid "Invalid snapshot report URL." msgstr "잘못된 로고 URL 입니다." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "접근 설정을 저장" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. #, fuzzy msgid "Data snapshots" msgstr "접근 설정을 저장" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "주기" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. #, fuzzy msgid "Report URL" msgstr "소스 코드 URL" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "저장" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "접근 설정을 저장" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5457,6 +5580,27 @@ msgstr "당신은 이 프로필에 구독되지 않고있습니다." msgid "Could not save subscription." msgstr "구독을 저장할 수 없습니다." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s 그룹 회원" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%s 그룹 회원" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "이 그룹의 회원리스트" + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. #, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." @@ -5569,31 +5713,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "%s 태그된 통지" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s 그룹을 위한 공지피드 (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s 그룹을 위한 공지피드 (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "%s 그룹을 위한 공지피드 (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "첨부문서 없음" +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "태그 %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "이용자 프로필" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "태그 사용자" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5602,14 +5758,23 @@ msgstr "" "사용자를 위한 태그 (문자,숫자, -, . ,그리고 _), 콤마 혹은 공백으로 분리하세" "요." +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "당신이 구독하거나 당신을 구독하는 사람들에 대해서만 태그를 붙일 수 있습니다." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "태그" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "당신의 구독자나 구독하는 사람에 태깅을 위해 이 양식을 사용하세요." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "그러한 태그가 없습니다." @@ -5617,23 +5782,29 @@ msgstr "그러한 태그가 없습니다." msgid "You haven't blocked that user." msgstr "이미 차단된 이용자입니다." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "이용자의 지속적인 게시글이 없습니다." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "이용자의 지속적인 게시글이 없습니다." -msgid "No profile ID in request." -msgstr "해당 ID의 프로필이 없습니다." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "구독취소 되었습니다." +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "메일 설정" @@ -5648,10 +5819,12 @@ msgstr "여러가지 기타 옵션을 관리합니다." msgid " (free service)" msgstr " (무료 서비스)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "없음" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5663,15 +5836,19 @@ msgstr "URL 줄이기 기능" msgid "Automatic shortening service to use." msgstr "사용할 URL 자동 줄이기 서비스." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5681,17 +5858,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "URL 줄이기 서비스 너무 깁니다. (최대 50글자)" -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "옳지 않은 크기" +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "옳지 않은 크기" + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "사용자" @@ -5714,6 +5895,9 @@ msgstr "" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "프로필" @@ -5771,7 +5955,7 @@ msgstr "접근 설정을 저장" msgid "Authorize subscription" msgstr "구독을 허가" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5783,18 +5967,21 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" msgstr "수락" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "이 회원을 구독합니다." #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5813,10 +6000,10 @@ msgstr "허용되지 않는 요청입니다." msgid "Subscription authorized" msgstr "구독 허가" -#, fuzzy +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" @@ -5826,10 +6013,10 @@ msgstr "" msgid "Subscription rejected" msgstr "구독 거부" -#, fuzzy +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" @@ -5859,14 +6046,6 @@ msgstr "" 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. -#, php-format -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. #, fuzzy, php-format @@ -5971,7 +6150,6 @@ msgid "Contributors" msgstr "편집자" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "라이센스" @@ -6009,7 +6187,6 @@ msgstr "" "락되어 있다면 %s 페이지를 보십시오." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "플러그인" @@ -6087,6 +6264,18 @@ msgstr[0] "" msgid "Invalid filename." msgstr "옳지 않은 크기" +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "사용자 저장 오류; 무효한 사용자" + #. TRANS: Exception thrown when joining a group fails. msgid "Group join failed." msgstr "그룹에 가입하지 못했습니다." @@ -6100,18 +6289,6 @@ msgstr "그룹을 업데이트 할 수 없습니다." msgid "Group leave failed." msgstr "그룹에 가입하지 못했습니다." -#. TRANS: Exception thrown providing an invalid profile ID. -#. TRANS: %s is the invalid profile ID. -#, php-format -msgid "Profile ID %s is invalid." -msgstr "" - -#. TRANS: Exception thrown providing an invalid group ID. -#. TRANS: %s is the invalid group ID. -#, fuzzy, php-format -msgid "Group ID %s is invalid." -msgstr "사용자 저장 오류; 무효한 사용자" - #. TRANS: Activity title. msgid "Join" msgstr "가입" @@ -6190,6 +6367,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "이 사이트에 게시글 포스팅으로부터 당신은 금지되었습니다." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "자기 자신의 소식은 재전송할 수 없습니다." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "자신의 글은 재전송할 수 없습니다." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "자기 자신의 소식은 재전송할 수 없습니다." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "자기 자신의 소식은 재전송할 수 없습니다." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "이미 재전송된 소식입니다." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "이용자의 지속적인 게시글이 없습니다." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6216,16 +6423,13 @@ msgstr "새 그룹을 만들 수 없습니다." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6247,6 +6451,7 @@ msgid "Unable to save tag." msgstr "태그를 저장할 수 없습니다." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "귀하는 구독이 금지되었습니다." @@ -6276,7 +6481,9 @@ msgstr "구독을 저장할 수 없습니다." msgid "Could not delete subscription." msgstr "구독을 저장할 수 없습니다." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "팔로우" @@ -6344,18 +6551,24 @@ msgid "User deletion in progress..." msgstr "" #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "프로필 설정" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "편집" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "이 회원에게 직접 메시지를 보냅니다." #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "메시지" @@ -6378,10 +6591,6 @@ msgctxt "role" msgid "Moderator" msgstr "" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "구독" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6407,7 +6616,9 @@ msgstr "답장하기" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet %s" @@ -6527,8 +6738,9 @@ msgstr "" msgid "No content for notice %s." msgstr "통지들의 내용 찾기" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "해당하는 이용자 없음" #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6578,76 +6790,126 @@ msgstr "명령이 아직 실행되지 않았습니다." msgid "Unable to delete design setting." msgstr "디자인 설정을 저장할 수 없습니다." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "홈페이지" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "홈페이지" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "관리자" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "메일 주소 확인" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "사이트" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "메일 주소 확인" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "디자인" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "메일 주소 확인" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "User" msgstr "사용자" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "메일 주소 확인" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Access" +msgstr "접근" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "메일 주소 확인" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "경로" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "메일 주소 확인" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "Sessions" msgstr "세션" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "사이트 공지 편집" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "사이트 공지" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "메일 주소 확인" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Snapshots" +msgstr "접근 설정을 저장" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "라이센스" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "메일 주소 확인" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "플러그인" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6656,6 +6918,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6692,9 +6955,11 @@ msgstr "" msgid "Could not issue access token." msgstr "메시지를 삽입할 수 없습니다." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "OAuth 응용 프로그램 사용자 추가 중 데이터베이스 오류" +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "OAuth 응용 프로그램 사용자 추가 중 데이터베이스 오류" @@ -6790,6 +7055,17 @@ msgstr "" msgid "Cancel" msgstr "취소" +#. TRANS: Submit button title. +msgid "Save" +msgstr "저장" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "알려지지 않은 행동" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -6812,11 +7088,12 @@ msgstr "" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "제거" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -6857,6 +7134,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "모든 예약 구독" + #. TRANS: Title for command results. msgid "Command results" msgstr "실행결과" @@ -6867,6 +7150,7 @@ msgid "AJAX error" msgstr "Ajax 에러입니다." #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "실행 완료" @@ -6984,6 +7268,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7003,10 +7289,6 @@ msgstr "직접 메시지 보내기 오류." msgid "Notice from %s repeated." msgstr "게시글이 등록되었습니다." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "사용자 세팅 오류" - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7313,13 +7595,19 @@ msgstr "" msgid "Go to the installer." msgstr "이 사이트에 로그인" +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "데이터베이스 오류" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "공개" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "삭제" @@ -7327,6 +7615,7 @@ msgstr "삭제" msgid "Delete this user" msgstr "이 사용자 삭제" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "디자인 저장" @@ -7339,23 +7628,14 @@ msgstr "색상 변경" msgid "Use defaults" msgstr "기본값 사용" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "실행 실패" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "개인 아바타를 올릴 수 있습니다. 최대 파일 크기는 2MB입니다." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. @@ -7370,15 +7650,6 @@ msgctxt "RADIO" msgid "Off" msgstr "끄기" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "디자인을 수정할 수 없습니다." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". #, fuzzy msgid "Design defaults restored." @@ -7411,48 +7682,62 @@ msgctxt "BUTTON" msgid "Favor" msgstr "좋아합니다" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -#, fuzzy -msgid "Not an atom feed." -msgstr "모든 회원" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "모든 것" +#. TRANS: Fieldset legend on gallery action page. #, fuzzy msgid "Select tag to filter" msgstr "통신 회사를 선택 하세요." +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "태그" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "좁은 리스트에서 태그 선택하기" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "이동" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "" @@ -7510,9 +7795,11 @@ msgstr[0] "" msgid "Membership policy" msgstr "가입한 때" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7578,6 +7865,7 @@ msgid "%s blocked users" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "관리" @@ -7675,23 +7963,46 @@ msgid "%dB" msgid_plural "%dB" msgstr[0] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "" +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "가입" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "떠나기" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "로그인" @@ -7740,6 +8051,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -7950,40 +8275,58 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "오직 해당 사용자만 자신의 메일박스를 열람할 수 있습니다." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." msgstr "" +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "받은 쪽지함" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "받은 메시지" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "보낸 쪽지함" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "보낸 메시지" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "메시지를 분리할 수 없습니다." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "가입된 사용자가 아닙니다." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "죄송합니다. 귀하의 이메일이 아닙니다." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "죄송합니다. 이메일이 허용되지 않습니다." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. #, fuzzy, php-format -msgid "Unsupported message type: %s" +msgid "Unsupported message type: %s." msgstr "지원하지 않는 그림 파일 형식입니다." #. TRANS: Form legend for form to make a user a group admin. @@ -8033,10 +8376,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "직접 메시지 보내기" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "라이선스 선택" @@ -8046,32 +8392,68 @@ msgstr "라이선스 선택" msgid "No mutual subscribers." msgstr "구독하고 있지 않습니다!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "받는 이" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "보내기" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "메시지" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "방법" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "웹" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "메일" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "당신은 해당 그룹의 멤버가 아닙니다." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "이 통지를 지울 수 없습니다." -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8116,69 +8498,95 @@ msgid "" "try again later" msgstr "" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "통지" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "북" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "남" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "동" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "서" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "위치" -msgid "web" -msgstr "웹" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "문맥" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "재전송됨" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "이 게시글에 대해 답장하기" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "답장하기" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "이 게시글 삭제하기" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. #, fuzzy -msgid "Notice repeated" +msgid "Notice repeated." msgstr "게시글이 등록되었습니다." +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "이 사용자 찔러 보기" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "찔러 보기" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "이 사용자에게 찔러 보기 메시지 보내기" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8186,19 +8594,52 @@ msgstr "" msgid "Duplicate notice." msgstr "" -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "예약 구독을 추가 할 수 없습니다." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "프로필" + +#. TRANS: Menu item title in personal group navigation menu. #, fuzzy msgid "Your profile" msgstr "그룹 프로필" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "답신" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "좋아하는 글들" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "사용자" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "메시지" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "받은 메시지" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8223,31 +8664,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "메일 설정" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "프로필 세팅 바꾸기" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "메일 주소 확인" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "로그아웃" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "이 사이트에서 로그아웃" -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "이 사이트에 로그인" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "검색" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "검색 도움말" #. TRANS: H2 text for user subscription statistics. @@ -8294,32 +8749,54 @@ msgstr "모든 그룹" msgid "Unimplemented method." msgstr "" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "그룹" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "사용자 그룹" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "최근 태그" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "최근 태그" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "피쳐링됨" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "인기있는" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "첨부문서 없음" +#. TRANS: For legend for notice repeat form. #, fuzzy msgid "Repeat this notice?" msgstr "이 게시글에 대해 답장하기" -msgid "Yes" -msgstr "예" - +#. TRANS: Button title to repeat a notice on notice repeat form. #, fuzzy -msgid "Repeat this notice" +msgid "Repeat this notice." msgstr "이 게시글에 대해 답장하기" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "그룹 이용자는 차단해제" @@ -8329,10 +8806,13 @@ msgstr "그룹 이용자는 차단해제" msgid "Page not found." msgstr "API 메서드 발견 안 됨." +#. TRANS: Title of form to sandbox a user. #, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "받은 쪽지함" +#. TRANS: Description of form to sandbox a user. #, fuzzy msgid "Sandbox this user" msgstr "이 사용자를 차단해제합니다." @@ -8351,131 +8831,277 @@ msgctxt "BUTTON" msgid "Search" msgstr "검색" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "사람들" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "이 사이트에 있는 사람 찾기" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "통지" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "통지들의 내용 찾기" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "이 사이트에서 그룹 찾기" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "도움말" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "정보" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "자주 묻는 질문" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "서비스 약관" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "개인정보 취급방침" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "소스 코드" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "버전" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "연락하기" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "배지" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "제목없는 섹션" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "더 보기..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "메일 설정" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "프로필 세팅 바꾸기" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "아바타" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "아바타를 업로드하세요." +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "비밀 번호" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "비밀번호 바꾸기" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "메일" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "메일 처리 변경" +#. TRANS: Menu item title in settings navigation panel. #, fuzzy msgid "Design your profile" msgstr "이용자 프로필" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "메신저" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "인스턴트 메신저에 의한 업데이트" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "SMS에 의한 업데이트" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" msgid "Connections" msgstr "연결" +#. TRANS: Menu item title in settings navigation panel. #, fuzzy msgid "Authorized connected applications" msgstr "응용프로그램 삭제" +#. TRANS: Title of form to silence a user. #, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "사이트 공지" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "이 사용자 삭제" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "구독" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "%s 사람들은 구독합니다." -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "구독자" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "%s에 의해 구독되는 사람들" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "%s 사용자가 멤버인 그룹" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "초대" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "%s에 친구를 가입시키기 위해 친구와 동료를 초대합니다." +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "이 회원을 구독합니다." +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "없음" @@ -8484,49 +9110,56 @@ msgstr "없음" msgid "Invalid theme name." msgstr "옳지 않은 크기" +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "" +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. #, fuzzy msgid "Failed saving theme." msgstr "아바타 업데이트 실패" -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" "Uploaded theme is too large; must be less than %d bytes uncompressed." msgstr[0] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "차단 제거 에러!" -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "통지" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -8556,8 +9189,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "이 게시글을 좋아합니다." +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "이 게시글 좋아하기 취소" @@ -8568,8 +9202,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "이미 재전송된 소식입니다." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "이미 재전송된 소식입니다." @@ -8578,6 +9213,28 @@ msgstr[0] "이미 재전송된 소식입니다." msgid "Top posters" msgstr "상위 게시글 등록자" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "받는 이" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "알 수 없는 종류의 파일입니다" + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8693,6 +9350,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#, fuzzy -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." +#~ msgid "Couldn't update your design." +#~ msgstr "디자인을 수정할 수 없습니다." diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 2f9cbf25bf..4ac30b2bf2 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,20 +10,54 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:01+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:05+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Непознато" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Непознато дејство" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Пристап" @@ -77,7 +111,9 @@ msgstr "Зачувај нагодувања на пристап" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -89,6 +125,7 @@ msgstr "Зачувај" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Нема таква страница." @@ -107,6 +144,7 @@ msgstr "Нема таква страница." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -131,8 +169,11 @@ msgstr "Нема таква страница." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Нема таков корисник." @@ -145,7 +186,15 @@ msgstr "%1$s и пријателите, стр. %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s и пријатели" @@ -216,28 +265,14 @@ msgstr "Вие и пријателите" msgid "Updates from %1$s and friends on %2$s!" msgstr "Подновувања од %1$s и пријатели на %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API методот не е пронајден." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -273,6 +308,7 @@ msgstr "Не можев да го подновам корисникот." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Корисникот нема профил." @@ -312,6 +348,8 @@ msgstr "Не можам да ги зачувам Вашите нагодувањ #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Не може да се поднови Вашиот изглед." @@ -364,22 +402,22 @@ msgstr "Не успеа одблокирањето на корисникот." #. TRANS: Title. %s is a user nickname. #, php-format msgid "Direct messages from %s" -msgstr "Директни пораки од %s" +msgstr "Непосредни пораки од %s" #. TRANS: Subtitle. %s is a user nickname. #, php-format msgid "All the direct messages sent from %s" -msgstr "Сите директни пораки испратени од %s" +msgstr "Сите непосредни пораки испратени од %s" #. TRANS: Title. %s is a user nickname. #, php-format msgid "Direct messages to %s" -msgstr "Директни пораки до %s" +msgstr "Непосредни пораки за %s" #. TRANS: Subtitle. %s is a user nickname. #, php-format msgid "All the direct messages sent to %s" -msgstr "Сите директни пораки испратени до %s" +msgstr "Сите непосредни пораки испратени до %s" #. TRANS: Client error displayed when no message text was submitted (406). msgid "No message text!" @@ -683,9 +721,12 @@ msgstr "Жетонот за барање е веќе овластен." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Се поајви проблем со Вашиот сесиски жетон. Обидете се повторно." @@ -839,16 +880,6 @@ msgstr "Не можете да избришете статус на друг к msgid "No such notice." msgstr "Нема таква забелешка." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Не можете да ја повторувате сопствената забелешка." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Забелешката е веќе повторена." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -890,8 +921,11 @@ msgstr "Избришана забелешката %d" msgid "Client must provide a 'status' parameter with a value." msgstr "Клиентот мора да укаже вредност за параметарот „статус“" +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -904,6 +938,8 @@ msgstr "Матичната забелешка не е пронајдена." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -977,6 +1013,8 @@ msgstr "%1$s забелешки што му се повторени на кор msgid "Repeats of %s" msgstr "Повторувања на %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "Забелешки од %1$s што ги повторил корисникот %2$s / %3$s." @@ -991,6 +1029,8 @@ msgstr "Забелешки означени со %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Подновувањата се означени со %1$s на %2$s!" @@ -1105,10 +1145,12 @@ msgstr "" "Само администратор на група може да одобрува и откажува барања за членување." #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. msgid "Must specify a profile." msgstr "Мора да наведете профил." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, php-format @@ -1116,10 +1158,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "%s не е редицата за модерација на оваа група." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "Внатрешна грешка: не примив ни откажување ни прекин." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "Внатрешна грешка: примив и откажување и прекин." @@ -1146,6 +1190,34 @@ msgstr "Барањето за зачленување е одобрено." msgid "Join request canceled." msgstr "Барањето за зачленување е откажано." +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "%s не е во редицата за модерација на Вашите претплати." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "" +"Не можев да го откажам или одобрам барањето да го зачленам корисникот %1$s " +"во групата %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Барањето на %1$s" + +#. TRANS: Message on page for user after approving a subscription request. +msgid "Subscription approved." +msgstr "Претплатата е одобрена." + +#. TRANS: Message on page for user after rejecting a subscription request. +msgid "Subscription canceled." +msgstr "Претплатата е откажана." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1182,8 +1254,8 @@ msgstr "Веќе е бендисано." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, php-format -msgid "%s group memberships" -msgstr "Членства на групата %s" +msgid "Group memberships of %s" +msgstr "Членувања на %s" #. TRANS: Subtitle for group membership feed. #. TRANS: %1$s is a username, %2$s is the StatusNet sitename. @@ -1195,8 +1267,7 @@ msgstr "Групи на %2$s кадешто членува %1$s" msgid "Cannot add someone else's membership." msgstr "Не можам да додадам туѓо членство." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "Може да работи само со активности за зачленување." @@ -1310,6 +1381,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Корисник без соодветен профил." @@ -1336,6 +1408,7 @@ msgstr "Преглед" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Избриши" @@ -1400,7 +1473,7 @@ msgstr "" "Можете да зачувате резервна верзија на Вашите податоци во сметката во " "форматот Activity Streams. Ова е " "експериментална функција која прави нецелосна резерва. Во резервата нема да " -"се зачуваат лични податоци како е-пошта и адреса за IM. Покрај ова, во " +"се зачуваат лични податоци како е-пошта и адреса за НП. Покрај ова, во " "резервата не се зачувуваат и подигнатите податотеки и непосредните пораки." #. TRANS: Submit button to backup an account on the backup account page. @@ -1453,6 +1526,7 @@ msgstr "Не го блокирај корисников." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Да" @@ -1509,6 +1583,31 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s ја напушти групата %2$s" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Не сте најавени." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "!Во барањето нема ID на профилот." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Нема профил со тоа ID." + +#. TRANS: Title after unsubscribing from a group. +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Претплатата е откажана" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Нема потврден код." @@ -1534,11 +1633,11 @@ msgstr "Оваа адреса веќе е потврдена." #. TRANS: Server error displayed when updating IM preferences fails. #. TRANS: Server error thrown on database error removing a registered IM address. msgid "Could not update user IM preferences." -msgstr "Не можев да ги подновам нагодувањата за IM." +msgstr "Не можев да ги подновам нагодувањата за НП." #. TRANS: Server error displayed when adding IM preferences fails. msgid "Could not insert user IM preferences." -msgstr "Не можев да се вметнам кориснички нагодувања за IM." +msgstr "Не можев да се вметнам кориснички нагодувања за НП." #. TRANS: Server error displayed when an address confirmation code deletion from the #. TRANS: database fails in the contact address confirmation action. @@ -1643,6 +1742,7 @@ msgstr "Програмот не е пронајден." msgid "You are not the owner of this application." msgstr "Не сте сопственик на овој програм." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Се појави проблем со Вашиот сесиски жетон." @@ -1713,24 +1813,6 @@ msgstr "Не ја бриши групава." msgid "Delete this group." msgstr "Избриши ја групава." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Не сте најавени." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1919,14 +2001,17 @@ msgid "Use defaults" msgstr "Користи по основно" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." msgstr "Врати ги изгледите по основно." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "Врати по основно." #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." msgstr "Зачувај изглед." @@ -2258,6 +2343,7 @@ msgstr "Тргни од бендисани." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Популарни забелешки" @@ -2299,6 +2385,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Бендисани забелешки на %s" @@ -2311,6 +2399,7 @@ msgstr "Подновувања, бендисани од %1$s на %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Избрани корисници" @@ -2372,6 +2461,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Далечинската служба користи непозната верзија на OMB протокол." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Грешка во подновувањето на далечинскиот профил." @@ -2409,14 +2499,6 @@ msgstr "Корисникот веќе ја има таа улога." msgid "No profile specified." msgstr "Нема назначено профил." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Нема профил со тоа ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2662,7 +2744,7 @@ msgstr "Грешка при отстранување на блокот." #. TRANS: Title for Instant Messaging settings. msgid "IM settings" -msgstr "Нагодувања за IM" +msgstr "Нагодувања за НП" #. TRANS: Instant messaging settings page instructions. #. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. @@ -2677,7 +2759,7 @@ msgstr "" #. TRANS: Message given in the IM settings if IM is not enabled on the site. msgid "IM is not available." -msgstr "IM е недостапно." +msgstr "НП е недостапно." #. TRANS: Form note in IM settings form. %s is the type of IM address that was confirmed. #, php-format @@ -2697,7 +2779,7 @@ msgstr "" #. TRANS: Field label for IM address. msgid "IM address" -msgstr "IM адреса" +msgstr "НП-адреса" #. TRANS: Field title for IM address. %s is the IM service name. #, php-format @@ -2706,7 +2788,7 @@ msgstr "%s прекар." #. TRANS: Header for IM preferences form. msgid "IM Preferences" -msgstr "Нагодувања на IM" +msgstr "Нагодувања за НП" #. TRANS: Checkbox label in IM preferences form. msgid "Send me notices" @@ -2726,7 +2808,7 @@ msgstr "Објави MicroID" #. TRANS: Server error thrown on database error updating IM preferences. msgid "Could not update IM preferences." -msgstr "Не можев да ги подновам нагодувањата за IM." +msgstr "Не можев да ги подновам нагодувањата за НП." #. TRANS: Confirmation message for successful IM preferences save. #. TRANS: Confirmation message after saving preferences. @@ -2755,11 +2837,11 @@ msgstr "Прекарот му припаѓа на друг корисник." #. TRANS: Message given saving valid IM address that is to be confirmed. msgid "A confirmation code was sent to the IM address you added." -msgstr "Испративме потврден код на IM-адресата што ја додадовте." +msgstr "Испративме потврден код на НП-адресата што ја додадовте." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. msgid "That is the wrong IM address." -msgstr "Ова е погрешната IM адреса." +msgstr "Ова е погрешната НП-адреса." #. TRANS: Server error thrown on database error canceling IM address confirmation. msgid "Could not delete confirmation." @@ -2767,7 +2849,7 @@ msgstr "Не можев да ја избришам потврдата." #. TRANS: Message given after successfully canceling IM address confirmation. msgid "IM confirmation cancelled." -msgstr "Потврдата на IM е откажана." +msgstr "Потврдата на НП е откажана." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. @@ -2776,7 +2858,7 @@ msgstr "Тоа не е Вашиот прекар." #. TRANS: Message given after successfully removing a registered Instant Messaging address. msgid "The IM address was removed." -msgstr "IM-адресата е отстранета." +msgstr "НП-адресата е отстранета." #. TRANS: Title for all but the first page of the inbox page. #. TRANS: %1$s is the user's nickname, %2$s is the page number. @@ -3028,6 +3110,7 @@ msgid "License selection" msgstr "Избор на лиценца" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Приватен" @@ -3263,6 +3346,9 @@ msgid "Ajax Error" msgstr "Ajax-грешка" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Ново забелешка" @@ -3566,7 +3652,6 @@ msgid "Password saved." msgstr "Лозинката е зачувана." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Патеки" @@ -3758,6 +3843,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Никогаш" @@ -3917,17 +4003,21 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Опишете се себеси и своите интереси со %d знак." msgstr[1] "Опишете се себеси и своите интереси со %d знаци." #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" -msgstr "Опишете се себеси и Вашите интереси" +#. TRANS: Text area title on account registration page. +msgid "Describe yourself and your interests." +msgstr "Опишете се себеси и Вашите интереси." -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3940,8 +4030,9 @@ msgid "Location" msgstr "Местоположба" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Каде се наоѓате, на пр. „Град, Област, Земја“." +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Каде се наоѓате, на пр. „Град, Сојуз. држава (или Област), Земја“." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" @@ -3949,6 +4040,9 @@ msgstr "" "Прикажувај ја мојата тековна местоположба при објавување на забелешките" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Ознаки" @@ -3983,6 +4077,27 @@ msgstr "" "Автоматски претплаќај ме на секој што се претплаќа на мене (најдобро за " "ботови и сл.)." +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +msgid "Subscription policy" +msgstr "Правило за претплата" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "Нека ме следи секој" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "Прво прашај ме" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" +"Дали на корисниците да им треба Ваша дозвола за да ги следат Вашите поднови." + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "Подновите нека се видливи само за моите следбеници" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4013,14 +4128,17 @@ msgstr "Неважечка ознака: „%s“." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -msgid "Could not update user for autosubscribe." -msgstr "Не можев да го подновам корисникот за автопретплата." +msgid "Could not update user for autosubscribe or subscribe_policy." +msgstr "" +"Не можев да го подновам правилото за автопретплата или претплата во " +"корисничкиот профил." #. TRANS: Server error thrown when user profile location preference settings could not be updated. msgid "Could not save location prefs." msgstr "Не можев да ги зачувам нагодувањата за местоположба." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Не можев да ги зачувам ознаките." @@ -4051,6 +4169,7 @@ msgid "Public timeline, page %d" msgstr "Јавна историја, стр. %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Јавна историја" @@ -4234,10 +4353,6 @@ msgstr "Побарано е пронаоѓање на лозинката" msgid "Password saved" msgstr "Лозинката е зачувана" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Непознато дејство" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "6 или повеќе знаци - не заборавајте!" @@ -4328,6 +4443,7 @@ msgstr "Регистрирањето не е дозволено." msgid "You cannot register if you do not agree to the license." msgstr "Не може да се регистрирате ако не ја прифаќате лиценцата." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Адресата веќе постои." @@ -4361,24 +4477,7 @@ msgstr "Се користи само за подновувања, објави msgid "Longer name, preferably your \"real\" name." msgstr "Подолго име, по можност Вашето „вистинско“ име и презиме" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Опишете се себеси и своите интереси со %d знак." -msgstr[1] "Опишете се себеси и своите интереси со %d знаци." - -#. TRANS: Text area title on account registration page. -msgid "Describe yourself and your interests." -msgstr "Опишете се себеси и Вашите интереси." - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Каде се наоѓате, на пр. „Град, Сојуз. држава (или Област), Земја“." - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. msgctxt "BUTTON" msgid "Register" msgstr "Регистрација" @@ -4413,7 +4512,7 @@ msgid "" "email address, IM address, and phone number." msgstr "" "Мојот текст и податотеки се достапни под %s, освен следниве приватни " -"податоци: лозинка, е-пошта, IM-адреса и телефонски број." +"податоци: лозинка, е-пошта, НП-адреса и телефонски број." #. TRANS: Text displayed after successful account registration. #. TRANS: %1$s is the registered nickname, %2$s is the profile URL. @@ -4498,6 +4597,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "!URL на Вашиот профил на друга складна служба за микроблогирање." #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. msgctxt "BUTTON" msgid "Subscribe" msgstr "Претплати се" @@ -4530,15 +4631,8 @@ msgstr "Само најавени корисници можат да повто msgid "No notice specified." msgstr "Нема назначено забелешка." -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "Не можете да повторувате сопствена забелешка." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Веќе ја имате повторено таа забелешка." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Повторено" @@ -4549,6 +4643,8 @@ msgstr "Повторено!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Одговори испратени до %s" @@ -4663,6 +4759,7 @@ msgid "System error uploading file." msgstr "Системска грешка при подигањето на податотеката." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." msgstr "Ова не е Atom-канал." @@ -4705,6 +4802,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Не можете да ставате корисници во песочен режим на ова мрежно место." @@ -4897,6 +4995,8 @@ msgstr "Членови" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Нема)" @@ -4978,6 +5078,10 @@ msgstr "Порака за %1$s на %2$s" msgid "Message from %1$s on %2$s" msgstr "Порака од %1$s на %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +msgid "Not available." +msgstr "Недостапно." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Избришана забелешка" @@ -4985,20 +5089,20 @@ msgstr "Избришана забелешка" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format -msgid "%1$s tagged %2$s" -msgstr "%1$s го/ја означи %2$s" +msgid "Notices by %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, %3$d is the page number. #, php-format -msgid "%1$s tagged %2$s, page %3$d" -msgstr "%1$s го/ја означи %2$s, страница %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" +msgstr "Забелешки на %1$s означени со %2$s, страница %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. #, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, стр. %2$d" +msgid "Notices by %1$s, page %2$d" +msgstr "Забелешки на %1$s, страница %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5086,6 +5190,7 @@ msgid "Repeat of %s" msgstr "Повторувања на %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Не можете да замолчувате корисници на ова мрежно место." @@ -5375,53 +5480,68 @@ msgstr "" msgid "No code entered." msgstr "Нема внесено код." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" msgid "Snapshots" msgstr "Снимки" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Раководење со поставки за снимки" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Неважечка вредност на пуштањето на снимката." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "Честотата на снимките мора да биде бројка." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "Неважечки URL за извештај од снимката." +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Снимки" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "По случајност во текот на посета" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "Во зададена задача" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Снимки од податоци" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" -"Кога да им се испраќаат статистички податоци на status.net опслужувачите" +"Кога да им се испраќаат статистички податоци на опслужувачите na status.net." +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Честота" -msgid "Snapshots will be sent once every N web hits" -msgstr "Ќе се испраќаат снимки на секои N посети" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." +msgstr "Снимките ќе се испраќаат на секои N посети." +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL на извештајот" -msgid "Snapshots will be sent to this URL" -msgstr "Снимките ќе се испраќаат на оваа URL-адреса" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." +msgstr "Снимките ќе се испраќаат на оваа URL-адреса." -#. TRANS: Submit button title. -msgid "Save" -msgstr "Зачувај" - -msgid "Save snapshot settings" -msgstr "Зачувај поставки за снимки" +#. TRANS: Title for button to save snapshot settings. +msgid "Save snapshot settings." +msgstr "Зачувај поставки за снимки." #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. msgid "You are not subscribed to that profile." @@ -5432,6 +5552,26 @@ msgstr "Не сте претплатени на тој профил." msgid "Could not save subscription." msgstr "Не можев да ја зачувам претплатата." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "Можете да одобрувате само Ваши претплати во исчекување." + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s претплатници чекаат на одобрение" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s претплатници чекаат на одобрение, страница %2$d" + +#. TRANS: Page notice for group members page. +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Список на корисниците што чекаат одобрение за да се претплатат на Вас." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5541,7 +5681,7 @@ msgstr "Канал со забелешки за %s (Atom)" #. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list. msgid "IM" -msgstr "IM" +msgstr "НП" #. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list. msgid "SMS" @@ -5553,31 +5693,43 @@ msgstr "СМС" msgid "Notices tagged with %1$s, page %2$d" msgstr "Забелешки означени со %1$s, стр. %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Канал со забелешки за ознаката %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Канал со забелешки за ознаката %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Канал со забелешки за ознаката %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Нема ID-аргумент." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Означи %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Кориснички профил" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Означи корисник" +#. TRANS: Title for input field for inputting tags on "tag other users" page. msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " "spaces." @@ -5585,15 +5737,23 @@ msgstr "" "Ознаки за овој корисник (букви, бројки, -, . и _), одделени со запирка или " "празно место." +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Можете да означувате само луѓе на коишто сте претплатени или луѓе " "претплатени на Вас." +#. TRANS: Title of "tag other users" page. +msgctxt "TITLE" +msgid "Tags" +msgstr "Ознаки" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "Со овој образец додавајте ознаки во Вашите претплатници или претплати." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Нема таква ознака." @@ -5601,25 +5761,31 @@ msgstr "Нема таква ознака." msgid "You haven't blocked that user." msgstr "Го немате блокирано тој корисник." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Корисникот не е ставен во песочен режим." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Корисникот не е замолчен." -msgid "No profile ID in request." -msgstr "!Во барањето нема ID на профилот." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Претплатата е откажана" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" -"Лиценцата на каналот на следачот „%1$s“ не е соодветна на лиценцата на " +"Лиценцата на каналот на следениот „%1$s“ не е складна на лиценцата на " "мрежното место „%2$s“." +#. TRANS: Title of URL settings tab in profile settings. msgid "URL settings" msgstr "Нагодувања за URL" @@ -5633,9 +5799,11 @@ msgstr "Раководење со разни други можности." msgid " (free service)" msgstr " (слободна служба)" +#. TRANS: Default value for URL shortening settings. msgid "[none]" msgstr "[без ознаки]" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "[внатрешни]" @@ -5647,17 +5815,21 @@ msgstr "Скратувај URL-адреси со" msgid "Automatic shortening service to use." msgstr "Која автоматска служба за скратување да се користи." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "URL не подолга од" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" "URL-адресите подолги од ова ќе бидат скратени. 0 значи дека секогаш ќе се " "скратуваат." +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "Текст подолг од" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5668,18 +5840,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Услугата за скратување на URL-адреси е предолга (највеќе до 50 знаци)." -msgid "Invalid number for max url length." +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. +msgid "Invalid number for maximum URL length." msgstr "Неважечки број за максимална должина на URL-адреса." -msgid "Invalid number for max notice length." -msgstr "Неважечки број за макс. должина на забелешка." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +msgid "Invalid number for maximum notice length." +msgstr "Неважечки број за максимална должина на забелешка." +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" "Грешка при зачувувањето на корисничките нагодувања за скратување на URL-" "адреси." -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Корисник" @@ -5702,6 +5877,8 @@ msgstr "Неважечки текст за добредојде. Дозволе msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Неважечки опис по основно: „%1$s“ не е корисник." +#. TRANS: Fieldset legend in user administration panel. +msgctxt "LEGEND" msgid "Profile" msgstr "Профил" @@ -5753,7 +5930,7 @@ msgstr "Зачувај кориснички нагодувања." msgid "Authorize subscription" msgstr "Одобрете ја претплатата" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5765,16 +5942,19 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "Прифати" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. msgid "Subscribe to this user." msgstr "Претплати се на корисников." #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "Одбиј" @@ -5791,9 +5971,10 @@ msgstr "Нема барање за проверка!" msgid "Subscription authorized" msgstr "Претплатата е одобрена" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "Претплатата е одобрена, но не е зададена обратна URL-адреса. Проверете ги " @@ -5804,9 +5985,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Претплатата е одбиена" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "Претплатата е одбиена, но не е зададена обратна URL-адреса. Проверете ги " @@ -5837,16 +6019,6 @@ msgstr "Следеното URI „%s“ е локален корисник." msgid "Profile URL \"%s\" is for a local user." msgstr "Профилната URL-адреса „%s“ е за локален корисник." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"Лиценцата на каналот на следениот „%1$s“ не е складна на лиценцата на " -"мрежното место „%2$s“." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, php-format @@ -5951,7 +6123,6 @@ msgid "Contributors" msgstr "Учесници" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Лиценца" @@ -5990,7 +6161,6 @@ msgstr "" "овој програм. Ако ја немате, погледајте %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Приклучоци" @@ -6075,18 +6245,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "Погрешно податотечно име." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Зачленувањето во групата не успеа." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Не е дел од групата." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Напуштањето на групата не успеа." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6099,6 +6257,18 @@ msgstr "Назнаката (ID) %s на профилот е неважечка." msgid "Group ID %s is invalid." msgstr "Групната назнака %s е неважечка." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Зачленувањето во групата не успеа." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Не е дел од групата." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Напуштањето на групата не успеа." + #. TRANS: Activity title. msgid "Join" msgstr "Зачлени се" @@ -6125,7 +6295,7 @@ msgstr "Никаде не е пронајдено име на базата ил #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. msgid "You are banned from sending direct messages." -msgstr "Забрането Ви е испраќање на директни пораки." +msgstr "Забрането Ви е испраќање на непосредни пораки." #. TRANS: Message given when a message could not be stored on the server. msgid "Could not insert message." @@ -6173,6 +6343,33 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Забрането Ви е да објавувате забелешки на ова мрежно место." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "" +"Не може да се повтори. Изворната забелешка недостасува или е избришана." + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "Не можете да повторувате сопствена забелешка." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +msgid "Cannot repeat a private notice." +msgstr "Не можете да повторите приватна забелешка." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +msgid "Cannot repeat a notice you cannot read." +msgstr "Не можете да повторите забелешка што не можете да ја читате." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Веќе ја имате повторено таа забелешка." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "%1$s нема пристап до забелешката %2$d." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6198,16 +6395,13 @@ msgstr "Не можев да го зачувам одговорот за %1$d, % msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "Неважечко одобрение за членство: не е во исчекување." - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6233,6 +6427,7 @@ msgid "Unable to save tag." msgstr "Не можам да ја зачувам ознаката." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Блокирани сте од претплаќање." @@ -6260,7 +6455,8 @@ msgstr "Не можам да го избришам OMB-жетонот за пр msgid "Could not delete subscription." msgstr "Не можам да ја избришам претплатата." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +msgctxt "TITLE" msgid "Follow" msgstr "Следи" @@ -6328,18 +6524,20 @@ msgid "User deletion in progress..." msgstr "Бришењето на корисникот е во тек..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" -msgstr "Уреди нагодувања на профилот" +msgid "Edit profile settings." +msgstr "Уреди нагодувања на профилот." #. TRANS: Link text for link on user profile. +msgctxt "BUTTON" msgid "Edit" msgstr "Уреди" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" -msgstr "Испрати му директна порака на корисников" +msgid "Send a direct message to this user." +msgstr "Испрати му непосредна порака на корисников." #. TRANS: Link text for link on user profile. +msgctxt "BUTTON" msgid "Message" msgstr "Порака" @@ -6361,10 +6559,6 @@ msgctxt "role" msgid "Moderator" msgstr "Модератор" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Претплати се" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6389,6 +6583,8 @@ msgstr "Одговори" msgid "Write a reply..." msgstr "Напишете одговор..." +#. TRANS: Tab on the notice form. +msgctxt "TAB" msgid "Status" msgstr "Статус" @@ -6508,9 +6704,10 @@ msgstr "Не презапишувам авторски податоци за н msgid "No content for notice %s." msgstr "Нема содржина за забелешката %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, php-format -msgid "No such user %s." -msgstr "Нема корисник по име %s." +msgid "No such user \"%s\"." +msgstr "Нема корисник по име „%s“." #. TRANS: Client exception thrown when post to collection fails with a 400 status. #. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason. @@ -6556,75 +6753,117 @@ msgstr "saveSettings() не е имплементирано." msgid "Unable to delete design setting." msgstr "Не можам да ги избришам нагодувањата за изглед." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +msgctxt "HEADER" msgid "Home" -msgstr "Домашна страница" +msgstr "Почетна" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "Home" +msgstr "Почетна" + +#. TRANS: Header in administrator navigation panel. +msgctxt "HEADER" msgid "Admin" -msgstr "Администратор" +msgstr "Админ" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Основни нагодувања на мрежното место" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Мреж. место" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Поставки на изгледот" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Изглед" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Кориснички поставки" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "User" msgstr "Корисник" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Поставки на пристапот" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Access" +msgstr "Пристап" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Поставки на патеки" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Paths" +msgstr "Патеки" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Поставки на сесиите" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "Sessions" msgstr "Сесии" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Уреди објава за мрежното место" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "Site notice" msgstr "Напомена за мрежното место" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Поставки за снимки" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Snapshots" +msgstr "Снимки" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Постави лиценца за мреж. место" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "License" +msgstr "Лиценца" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Plugins configuration" msgstr "Поставки за приклучоци" +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Plugins" +msgstr "Приклучоци" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6635,6 +6874,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "Нема програм за тој потрошувачки клуч." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "Не е дозволено да се користи API." @@ -6668,11 +6908,13 @@ msgstr "Не можев да пронајдам профил и програм msgid "Could not issue access token." msgstr "Не можев да го издадам жетонот за пристап." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "" "Грешка во базата на податоци при вметнувањето на корисникот на OAuth-" "програмот." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "" "Грешка во базата на податоци при подновата на корисникот на OAuth-програмот." @@ -6767,6 +7009,16 @@ msgstr "" msgid "Cancel" msgstr "Откажи" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Зачувај" + +#. TRANS: Name for an anonymous application in application list. +msgid "Unknown application" +msgstr "Непознат приложен програм" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr " од " @@ -6789,11 +7041,12 @@ msgstr "Одобрено %1$s - „%2$s“ пристап." msgid "Access token starting with: %s" msgstr "Пристапен жетон што почнува со: %s" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Одземи" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "Авторскиот елемент мора да содржи елемент за име." @@ -6828,7 +7081,12 @@ msgstr "Блокирај го корисников" #. TRANS: Submit button text on form to cancel group join request. msgctxt "BUTTON" msgid "Cancel join request" -msgstr "" +msgstr "Откажи барање за членство" + +#. TRANS: Button text for form action to cancel a subscription request. +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Откажи барање за претплата" #. TRANS: Title for command results. msgid "Command results" @@ -6839,6 +7097,7 @@ msgid "AJAX error" msgstr "AJAX-грешка" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Наредбата е завршена" @@ -6953,11 +7212,13 @@ msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -"%s е далечински профил; можете да праќате директни пораки само до корисници " -"на истиот опслужувач." +"%s е далечински профил; можете да праќате непосредни пораки само до " +"корисници на истиот опслужувач." #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -6980,10 +7241,6 @@ msgstr "Грашка при испаќањето на директната по msgid "Notice from %s repeated." msgstr "Забелешката од %s е повторена." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Грешка при повторувањето на белешката." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7278,13 +7535,18 @@ msgstr "Препорачуваме да го пуштите инсталатер msgid "Go to the installer." msgstr "Оди на инсталаторот." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Грешка во базата на податоци" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "Public" -msgstr "Јавен" +msgstr "Јавна" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Избриши" @@ -7292,6 +7554,7 @@ msgstr "Избриши" msgid "Delete this user" msgstr "Избриши овој корисник" +#. TRANS: Form legend of form for changing the page design. msgid "Change design" msgstr "Измени изглед" @@ -7303,14 +7566,6 @@ msgstr "Промена на бои" msgid "Use defaults" msgstr "Користи по основно" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Врати основно-зададени нагодувања" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Врати по основно" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7318,10 +7573,10 @@ msgstr "Подигање" #. TRANS: Instructions for form on profile design page. msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" -"Можете да подигнете Ваша лична позадинска слика. Максималната дозволена " -"големина изнесува 2 МБ." +"Можете да подигнете лична позадинска слика. Максималната дозволена големина " +"изнесува 2МБ." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. msgctxt "RADIO" @@ -7333,15 +7588,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Искл." -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "Не можев да го подновам Вашиот изглед." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Основно-зададениот изглед е вратен." @@ -7371,46 +7617,58 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Бендисај" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -msgid "Not an atom feed." -msgstr "Ова не е Atom-канал." - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "Нема автор во емитувањето." -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "Не можам да увезам без корисник." #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Канали" +#. TRANS: List element on gallery action page to show all tags. +msgctxt "TAGS" msgid "All" -msgstr "Сè" +msgstr "Сите" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Одберете ознака за филтрирање" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Ознака" -msgid "Choose a tag to narrow list" -msgstr "Одберете ознака за да го ограничите списокот" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +msgid "Choose a tag to narrow list." +msgstr "Одберете ознака за да го ограничите списокот." +#. TRANS: Submit button text on gallery action page. +msgctxt "BUTTON" msgid "Go" msgstr "Оди" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Додели улога „%s“ на корисников" @@ -7471,9 +7729,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Правило за членство" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "Отворено за сите" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "Администраторот мора да ги одобри сите членови" @@ -7539,6 +7799,7 @@ msgid "%s blocked users" msgstr "Блокирани корисници од групата „%s“" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Админ" @@ -7639,28 +7900,51 @@ msgid_plural "%dB" msgstr[0] "%d Б" msgstr[1] "%d Б" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" -"Корисникот „%s“ на %s има изјавено дека Вашиот прекар на %s е негов. Ако ова " -"е вистина, можете да потврдите стискајќи на оваа URL-адреса: %s . (Ако не " -"можете да јс стиснете, прекопирајте ја во адресната лента на прелистувачот). " -"Ако ова не сте Вие, или ако не ја имате побарано оваа потврда, слободно " -"занемарете ја поракава." +"Корисникот „%1$s“ на %2$s има изјавено дека Вашиот прекар на %3$s е всушност " +"негов. Ако ова е вистина, можете да потврдите стискајќи на оваа URL-адреса: %" +"4$s . (Ако не можете да ја стиснете, прекопирајте ја во адресната лента на " +"прелистувачот). Ако ова не сте Вие, или ако не ја имате побарано оваа " +"потврда, слободно занемарете ја поракава." +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Непознат извор на приемна пошта %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" +"За да можете да користите приклучоци за НП мора да овозможите ред на чекање." + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "Преносот не може да биде ништо." + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Зачлени се" + +#. TRANS: Button text on form to leave a group. +msgctxt "BUTTON" msgid "Leave" msgstr "Напушти" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Најава" @@ -7722,6 +8006,22 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s сега ги следи Вашите забелешки на %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s сака да ги следи Вашите забелешки на %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" +"%1$s сака да ги следи Вашите забелешки на %2$s. Одобрете го или одбијте го " +"барањето на %3$s" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -7870,7 +8170,7 @@ msgstr "" #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. #, php-format msgid "%1$s (@%2$s) added your notice as a favorite" -msgstr "%1$s (@%2$s) ја бендиса вашата забелешка" +msgstr "%1$s (@%2$s) ја бендиса Вашата забелешка" #. TRANS: Body for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, $2$s is the date the notice was created, @@ -7994,9 +8294,11 @@ msgstr "" "%1$s сака да се зачлени во Вашата група %2$s на %3$s. Можете да го одобрите " "или одбиете барањето на %4$s" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Само корисникот може да го чита своето сандаче." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8005,33 +8307,45 @@ msgstr "" "впуштите во разговор со други корисници. Луѓето можат да Ви испраќаат пораки " "што ќе можете да ги видите само Вие." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +msgctxt "MENU" msgid "Inbox" msgstr "Примени" -msgid "Your incoming messages" -msgstr "Ваши приемни пораки" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +msgid "Your incoming messages." +msgstr "Ваши дојдовни пораки." +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +msgctxt "MENU" msgid "Outbox" msgstr "За праќање" -msgid "Your sent messages" -msgstr "Ваши испратени пораки" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +msgid "Your sent messages." +msgstr "Ваши испратени пораки." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Не можев да ја парсирам пораката." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Тоа не е регистриран корисник." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Жалиме, но тоа не е Вашата приемна е-поштенска адреса." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Жалиме, приемната пошта не е дозволена." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. #, php-format -msgid "Unsupported message type: %s" -msgstr "Неподдржан формат на порака: %s" +msgid "Unsupported message type: %s." +msgstr "Неподдржан тип на порака: %s." #. TRANS: Form legend for form to make a user a group admin. msgid "Make user an admin of the group" @@ -8084,10 +8398,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "„%s„ не е поддржан податотечен тип на овој опслужувач." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Испрати директна забелешка" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "Оберете примач:" @@ -8095,29 +8412,63 @@ msgstr "Оберете примач:" msgid "No mutual subscribers." msgstr "Нема заемни претплатници." +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "За" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Испрати" +#. TRANS: Header in message list. msgid "Messages" msgstr "Пораки" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "од" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +msgctxt "SOURCE" +msgid "web" +msgstr "мрежно" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "XMPP" + +#. TRANS: A possible notice source (e-mail). +msgctxt "SOURCE" +msgid "mail" +msgstr "е-пошта" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "OpenMicroBlogging" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "API" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." msgstr "Не можам да го добијам авторот за активноста." +#. TRANS: Client exception. msgid "Bookmark not posted to this group." msgstr "На оваа група не е објавен одбележувач." +#. TRANS: Client exception. msgid "Object not posted to this user." msgstr "Објектот не му е испратен на овој корисник." -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "Не знам како да работам со ваква одредница." #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8164,68 +8515,91 @@ msgstr "" "Жалиме, но добивањето на Вашата местоположба трае подолго од очекуваното. " "Обидете се подоцна." -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +msgctxt "HEADER" +msgid "Notices" +msgstr "Забелешки" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "С" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "Ј" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "И" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "З" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "во" -msgid "web" -msgstr "интернет" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "во контекст" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Повторено од" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Одговори на забелешкава" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Одговор" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Избриши ја оваа забелешка" -msgid "Notice repeated" -msgstr "Забелешката е повторена" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +msgid "Notice repeated." +msgstr "Забелешката е повторена." +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "Подновете си го статусот..." +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Подбуцни го корисников" +#. TRANS: Button text to nudge/ping another user. +msgctxt "BUTTON" msgid "Nudge" -msgstr "Подбуцни" +msgstr "Подбоцни" -msgid "Send a nudge to this user" -msgstr "Испрати подбуцнување на корисников" +#. TRANS: Button title to nudge/ping another user. +msgid "Send a nudge to this user." +msgstr "Подбоцни го корисников." +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Грешка при вметнувањето на новиот профил." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Грешка при вметнувањето на аватарот." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Грешка при вметнувањето на далечинскиот профил." @@ -8233,18 +8607,45 @@ msgstr "Грешка при вметнувањето на далечинскио msgid "Duplicate notice." msgstr "Дуплирана забелешка." -msgid "Couldn't insert new subscription." -msgstr "Не може да се внесе нова претплата." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +msgid "Could not insert new subscription." +msgstr "Не можев да внесам нова претплата." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Profile" +msgstr "Профил" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Профил на група" +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" msgid "Replies" msgstr "Одговори" +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" msgid "Favorites" msgstr "Бендисани" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +msgctxt "FIXME" +msgid "User" +msgstr "Корисник" + +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Messages" +msgstr "Пораки" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Ваши приемни пораки" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8268,28 +8669,44 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "(Описите на приклучоците не се достапни ако е оневозможено.)" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Settings" -msgstr "Нагодувања за СМС" +msgstr "Нагодувања" -msgid "Change your personal settings" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Change your personal settings." msgstr "Измена на лични поставки" -msgid "Site configuration" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Site configuration." msgstr "Поставки на мреж. место" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "Одјава" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Одјава" -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "Најава" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "Барај" -msgid "Search the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Search the site." msgstr "Пребарај по мрежното место" #. TRANS: H2 text for user subscription statistics. @@ -8336,30 +8753,48 @@ msgstr "Сите групи" msgid "Unimplemented method." msgstr "Неимплементиран метод." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "Групи" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Кориснички групи" +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "Recent tags" msgstr "Скорешни ознаки" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Скорешни ознаки" + +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "Featured" msgstr "Избрани" +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "Popular" msgstr "Популарно" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Нема return-to аргументи." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Да ја повторам белешкава?" -msgid "Yes" -msgstr "Да" - -msgid "Repeat this notice" -msgstr "Повтори ја забелешкава" +#. TRANS: Button title to repeat a notice on notice repeat form. +msgid "Repeat this notice." +msgstr "Повтори ја забелешкава." +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Одземи му ја улогата „%s“ на корисников" @@ -8368,9 +8803,12 @@ msgstr "Одземи му ја улогата „%s“ на корисников msgid "Page not found." msgstr "Страницата не е пронајдена." +#. TRANS: Title of form to sandbox a user. +msgctxt "TITLE" msgid "Sandbox" -msgstr "Песок" +msgstr "Песочник" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Стави го корисников во песочен режим" @@ -8388,128 +8826,254 @@ msgctxt "BUTTON" msgid "Search" msgstr "Пребарај" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "People" msgstr "Луѓе" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Пронајдете луѓе на ова мрежно место" +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" +msgid "Notices" +msgstr "Забелешки" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Пронајдете содржини на забелешките" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Пронајдете групи на ова мрежно место" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "Помош" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" msgid "About" msgstr "За нас" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" msgid "FAQ" msgstr "ЧПП" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +msgctxt "MENU" msgid "TOS" -msgstr "Услови" +msgstr "Услови на услугата" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +msgctxt "MENU" msgid "Privacy" msgstr "Приватност" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +msgctxt "MENU" msgid "Source" -msgstr "Изворен код" +msgstr "Извор" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +msgctxt "MENU" msgid "Version" msgstr "Верзија" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" msgid "Contact" msgstr "Контакт" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +msgctxt "MENU" msgid "Badge" msgstr "Значка" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Заглавие без наслов" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Повеќе..." +#. TRANS: Header in settings navigation panel. +msgctxt "HEADER" +msgid "Settings" +msgstr "Нагодувања" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Смени профилни нагодувања" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "Avatar" +msgstr "Аватар" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Подигни аватар" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "Password" +msgstr "Лозинка" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Смени лозинка" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "Email" +msgstr "Е-пошта" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Смени ракување со е-пошта" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Наместете изглед на Вашиот профил" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "Скратувачи на URL" -msgid "Updates by instant messenger (IM)" -msgstr "Подновувања преку инстант-пораки (IM)" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "IM" +msgstr "IM" +#. TRANS: Menu item title in settings navigation panel. +msgid "Updates by instant messenger (IM)" +msgstr "Подновувања преку непосредни пораки (НП)" + +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "SMS" +msgstr "СМС" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Подновувања по СМС" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" msgid "Connections" -msgstr "Сврзувања" +msgstr "Поврзувања" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Овластени поврзани програми" +#. TRANS: Title of form to silence a user. +msgctxt "TITLE" msgid "Silence" msgstr "Замолчи" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Замолчи го овој корисник" -#, php-format -msgid "People %s subscribes to" -msgstr "Луѓе на кои е претплатен корисникот %s" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Претплати" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, php-format -msgid "People subscribed to %s" -msgstr "Луѓе претплатени на %s" +msgid "People %s subscribes to." +msgstr "Луѓе на кои е претплатен корисникот %s." +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Subscribers" +msgstr "Претплатници" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, php-format -msgid "Groups %s is a member of" -msgstr "Групи кадешто членува %s" +msgid "People subscribed to %s." +msgstr "Луѓе претплатени на %s." +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. +#, php-format +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "Во исчекување (%d)" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "Одобри барања за претплата во исчекување." + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, php-format +msgid "Groups %s is a member of." +msgstr "Групи кадешто членува %s." + +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "Покани" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "Поканете пријатели и колеги да Ви се придружат на %s" +msgid "Invite friends and colleagues to join you on %s." +msgstr "Поканете пријатели и колеги да Ви се придружат на %s." +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Претплати се на корисников" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Облак од самоозначени ознаки за луѓе" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Облак од ознаки за луѓе" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +msgctxt "NOTAGS" msgid "None" msgstr "Без ознаки" @@ -8517,19 +9081,26 @@ msgstr "Без ознаки" msgid "Invalid theme name." msgstr "Неважечко име за изгледот." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" "Опслужувачот не може да се справи со подигања на изгледи без ZIP-поддршка." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Податотеката за изгледот недостасува или подигањето не успеало." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Зачувувањето на мотивот не успеа." -msgid "Invalid theme: bad directory structure." -msgstr "Неважечки изглед: лош состав на папката." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." +msgstr "Неважечки изглед: Лош состав на папката." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8539,9 +9110,11 @@ msgstr[0] "" msgstr[1] "" "Подигнатиот изглед е преголем; мора да биде помал од %d бајти (ненабиен)." -msgid "Invalid theme archive: missing file css/display.css" -msgstr "Неважечки архив за изглеедот: недостасува податотеката css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" +msgstr "Неважечки архив за изгледот: Недостасува податотеката css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -8549,21 +9122,20 @@ msgstr "" "Изгледот содржи неважечки назив на податотека или папка. Дозволени се само " "ASCII-букви, бројки, долна црта и знак за минус." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "Овој изглед содржи небезбедни податотечни наставки." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Изгледот содржи податотека од типот „.%s“, која не е дозволена." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Грешка при отворањето на архивот за мотив." -#. TRANS: Header for Notices section. -msgctxt "HEADER" -msgid "Notices" -msgstr "Забелешки" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -8593,8 +9165,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Ја бендисавте забелешкава." +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Белешкава ја бендиса едно лице." @@ -8605,8 +9178,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Ја повторивте забелешкава." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Забелешкава ја има повторено едно лице." @@ -8616,6 +9190,27 @@ msgstr[1] "Забелешкава ја имаат повторено %d лица msgid "Top posters" msgstr "Најактивни објавувачи" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "Сите" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "Моите колеги на %s" + +#. TRANS: Label for drop-down of potential addressees. +msgctxt "LABEL" +msgid "To:" +msgstr "За:" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Непозната вредност за примач: „%s“." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8730,10 +9325,5 @@ msgstr "Неважечки XML. Нема XRD-корен." msgid "Getting backup from file '%s'." msgstr "Земам резерва на податотеката „%s“." -#~ msgid "BUTTON" -#~ msgstr "КОПЧЕ" - -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "" -#~ "Пораката е предолга - дозволени се највеќе %1$d знаци, а вие испративте %2" -#~ "$d." +#~ msgid "Couldn't update your design." +#~ msgstr "Не можев да го подновам Вашиот изглед." diff --git a/locale/ml/LC_MESSAGES/statusnet.po b/locale/ml/LC_MESSAGES/statusnet.po index ccd8c5f15d..ed8acb4649 100644 --- a/locale/ml/LC_MESSAGES/statusnet.po +++ b/locale/ml/LC_MESSAGES/statusnet.po @@ -9,20 +9,54 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:02+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:07+0000\n" "Language-Team: Malayalam \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ml\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "അജ്ഞാതം" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "അജ്ഞാതമായ പ്രവൃത്തി" + #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "അഭിഗമ്യത" @@ -74,7 +108,9 @@ msgstr "അഭിഗമ്യതാ സജ്ജീകരണങ്ങൾ സേ #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -86,6 +122,7 @@ msgstr "സേവ് ചെയ്യുക" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "അത്തരത്തിൽ ഒരു താളില്ല." @@ -104,6 +141,7 @@ msgstr "അത്തരത്തിൽ ഒരു താളില്ല." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -128,8 +166,11 @@ msgstr "അത്തരത്തിൽ ഒരു താളില്ല." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "അങ്ങനെ ഒരു ഉപയോക്താവില്ല." @@ -142,7 +183,15 @@ msgstr "%1$s ഒപ്പം സുഹൃത്തുക്കളും, താ #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s ഒപ്പം സുഹൃത്തുക്കളും" @@ -206,28 +255,14 @@ msgstr "താങ്കളും സുഹൃത്തുക്കളും" msgid "Updates from %1$s and friends on %2$s!" msgstr "" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "എ.പി.ഐ. മെതേഡ് കണ്ടെത്താനായില്ല." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -261,6 +296,7 @@ msgstr "ഉപയോക്തൃ വിവരങ്ങൾ പുതുക്ക #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "" @@ -296,6 +332,8 @@ msgstr "താങ്കളുടെ രൂപകല്പനാ സജ്ജീ #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "താങ്കളുടെ രൂപകല്പന പുതുക്കാനായില്ല." @@ -663,9 +701,12 @@ msgstr "അഭ്യർത്ഥനാ ചീട്ട് മുമ്പേ ത #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "താങ്കളുടെ സെഷൻ ചീട്ടിൽ ഒരു ചെറിയ പ്രശ്നം. ദയവായി വീണ്ടും ശ്രമിക്കുക." @@ -809,16 +850,6 @@ msgstr "മറ്റൊരു ഉപയോക്താവിന്റെ സ് msgid "No such notice." msgstr "അത്തരത്തിൽ ഒരു അറിയിപ്പ് ഇല്ല." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "താങ്കൾക്ക് താങ്കളുടെ തന്നെ അറിയിപ്പ് ആവർത്തിക്കാനാവില്ല." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "ആ അറിയിപ്പ് മുമ്പേ തന്നെ ആവർത്തിച്ചിരിക്കുന്നു." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -860,8 +891,11 @@ msgstr "%d എന്ന അറിയിപ്പ് മായ്ക്കുക" msgid "Client must provide a 'status' parameter with a value." msgstr "ക്ലയന്റ് 'status' ചരത്തിന് ഒരു വില നൽകിയിരിക്കണം." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -874,6 +908,8 @@ msgstr "മാതൃ അറിയിപ്പ് കണ്ടെത്താന #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -945,6 +981,8 @@ msgstr "" msgid "Repeats of %s" msgstr "%s എന്ന ഉപയോക്താവിന്റെ ആവർത്തനങ്ങൾ" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "" @@ -959,6 +997,8 @@ msgstr "%s എന്നു റ്റാഗ് ചെയ്തിട്ടുള #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "" @@ -1073,10 +1113,12 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. msgid "Must specify a profile." msgstr "" #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1084,10 +1126,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "ഈ സംഘത്തിലെ ഉപയോക്താക്കളുടെ പട്ടിക." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1112,6 +1156,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "ഈ സംഘത്തിലെ ഉപയോക്താക്കളുടെ പട്ടിക." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "%2$s എന്ന സംഘത്തിൽ %1$s എന്ന ഉപയോക്താവിനെ ചേർക്കാൻ കഴിഞ്ഞില്ല." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "%2$s പദ്ധതിയിൽ %1$s എന്ന ഉപയോക്താവിന്റെ സ്ഥിതിവിവരം" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "വരിക്കാരനാകൽ അംഗീകരിക്കപ്പെട്ടു" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "അംഗീകാരം നൽകൽ റദ്ദാക്കി." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1149,8 +1221,8 @@ msgstr "മുമ്പേ തന്നെ പ്രിയങ്കരമാണ #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "%s സംഘ അംഗത്വങ്ങൾ" #. TRANS: Subtitle for group membership feed. @@ -1163,8 +1235,7 @@ msgstr "%2$s സൈറ്റിലെ ഒരു ഭാഗമാണ് %1$s എ msgid "Cannot add someone else's membership." msgstr "മറ്റൊരാളുടെ അംഗത്വം കൂട്ടിച്ചേർക്കാനാവില്ല." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "പങ്ക് ചേരൽ പ്രക്രിയകൾ മാത്രം കൈകാര്യം ചെയ്യാനേ കഴിയൂ." @@ -1276,6 +1347,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "" @@ -1302,6 +1374,7 @@ msgstr "എങ്ങനെയുണ്ടെന്നു കാണുക" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "മായ്ക്കുക" @@ -1411,6 +1484,7 @@ msgstr "ഈ ഉപയോക്താവിനെ തടയരുത്." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "അതെ" @@ -1467,6 +1541,32 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s %2$s എന്ന സംഘത്തിൽ നിന്നും ഒഴിവായി" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "ലോഗിൻ ചെയ്തിട്ടില്ല" + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "" + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "" + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "വരിക്കാരാകുക" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "സ്ഥിരീകരണ കോഡ് ഇല്ല." @@ -1602,6 +1702,7 @@ msgstr "" msgid "You are not the owner of this application." msgstr "" +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "താങ്കളുടെ സെഷൻ ചീട്ടിൽ ഒരു പ്രശ്നമുണ്ടായിരുന്നു." @@ -1668,24 +1769,6 @@ msgstr "ഈ സംഘത്തെ മായ്ക്കരുത്." msgid "Delete this group." msgstr "ഈ സംഘത്തെ മായ്ക്കുക." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "ലോഗിൻ ചെയ്തിട്ടില്ല" - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1876,14 +1959,17 @@ msgid "Use defaults" msgstr "സ്വതേയുള്ളവ ഉപയോഗിക്കുക" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." msgstr "സ്വതേയുള്ള രൂപകല്പനകൾ പുനഃസ്ഥാപിക്കുക." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "മുമ്പ് സ്വതേയുണ്ടായിരുന്നതിലേയ്ക്ക് പുനഃസ്ഥാപിക്കുക." #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." msgstr "രൂപകല്പന സേവ്‌ ചെയ്യുക." @@ -2213,6 +2299,7 @@ msgstr "പ്രിയങ്കരമാണ് എന്നത് നീക് #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "ജനപ്രിയ അറിയിപ്പുകൾ" @@ -2250,6 +2337,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "%s എന്ന ഉപയോക്താവിനു പ്രിയങ്കരങ്ങളായ അറിയിപ്പുകൾ" @@ -2262,6 +2351,7 @@ msgstr "" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "പ്രമുഖ ഉപയോക്താക്കൾ" @@ -2323,6 +2413,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "വിദൂര സേവനം അപരിചിതമായ ഒ.എം.ബി. പ്രോട്ടോകോൾ ഉപയോഗിക്കുന്നു." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "" @@ -2360,14 +2451,6 @@ msgstr "" msgid "No profile specified." msgstr "" -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "" - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2956,6 +3039,7 @@ msgid "License selection" msgstr "അനുമതി തിരഞ്ഞെടുക്കൽ" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "സ്വകാര്യം" @@ -3190,6 +3274,9 @@ msgid "Ajax Error" msgstr "അജാക്സ് പിഴവ്" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "പുതിയ അറിയിപ്പ്" @@ -3487,7 +3574,6 @@ msgid "Password saved." msgstr "രഹസ്യവാക്ക് സേവ് ചെയ്തിരിക്കുന്നു." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "" @@ -3682,6 +3768,7 @@ msgid "SSL" msgstr "എസ്.എസ്.എൽ." #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "ഒരിക്കലുമരുത്" @@ -3837,17 +3924,22 @@ 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). -#, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" -msgstr[0] "" -msgstr[1] "" +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." +msgstr[0] "താങ്കളെക്കുറിച്ചും താങ്കളുടെ ഇഷ്ടങ്ങളെക്കുറിച്ചും വിവരിക്കുക" +msgstr[1] "താങ്കളെക്കുറിച്ചും താങ്കളുടെ ഇഷ്ടങ്ങളെക്കുറിച്ചും വിവരിക്കുക" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "താങ്കളെക്കുറിച്ചും താങ്കളുടെ ഇഷ്ടങ്ങളെക്കുറിച്ചും വിവരിക്കുക" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3860,14 +3952,18 @@ msgid "Location" msgstr "സ്ഥലം" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "താങ്കളെവിടെയാണ്, അതായത് \"നഗരം, സംസ്ഥാനം (അഥവ പ്രദേശം), രാജ്യം\" എന്ന്" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "താങ്കളെവിടെയാണ്, അതായത് \"നഗരം, സംസ്ഥാനം (അഥവ പ്രദേശം), രാജ്യം\" എന്നിവ." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" msgstr "അറിയിപ്പുകൾ പ്രസിദ്ധീകരിക്കുന്നതിനോടൊപ്പം എന്റെ ഇപ്പോഴത്തെ സ്ഥലവും പങ്കുവെയ്ക്കുക" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "റ്റാഗുകൾ" @@ -3898,6 +3994,28 @@ msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "വരിക്കാരനാകൽ അംഗീകരിക്കപ്പെട്ടു" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "ഉപയോക്താക്കളെ പിന്തുടരാൻ മാത്രമേ കഴിയൂ." + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -3929,7 +4047,7 @@ msgstr "അസാധുവായ റ്റാഗ്: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "ഉപയോക്തൃ വിവരങ്ങൾ പുതുക്കാൻ കഴിഞ്ഞില്ല." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -3937,6 +4055,7 @@ msgid "Could not save location prefs." msgstr "സ്ഥാനം സംബന്ധിച്ച ക്രമീകരണങ്ങൾ സേവ് ചെയ്യാൻ കഴിഞ്ഞില്ല." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "റ്റാഗുകൾ സേവ് ചെയ്യാൻ കഴിഞ്ഞില്ല." @@ -3967,6 +4086,7 @@ msgid "Public timeline, page %d" msgstr "സാർവ്വജനിക സമയരേഖ, താൾ %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "സാർവ്വജനിക സമയരേഖ" @@ -4144,10 +4264,6 @@ msgstr "രഹസ്യവാക്ക് വീണ്ടെടുക്കൽ msgid "Password saved" msgstr "രഹസ്യവാക്ക് സേവ് ചെയ്തിരിക്കുന്നു" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "അജ്ഞാതമായ പ്രവൃത്തി" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "ആറോ അതിലധികമോ അക്ഷരങ്ങൾ, അത് മറക്കരുത്!" @@ -4241,6 +4357,7 @@ msgstr "അംഗത്വമെടുക്കൽ അനുവദിച്ച msgid "You cannot register if you do not agree to the license." msgstr "താങ്കൾ അനുവാദ പത്രം അംഗീകരിക്കുകയില്ലെങ്കിൽ ഭാഗമാകാനാകില്ല." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "ഇമെയിൽ വിലാസം മുമ്പേ നിലവിലുണ്ട്." @@ -4278,25 +4395,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "വലിയ പേര്, താങ്കളുടെ \"യഥാർത്ഥ\" പേര് നൽകാൻ താത്പര്യപ്പെടുന്നു." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "താങ്കളെക്കുറിച്ചും താങ്കളുടെ ഇഷ്ടങ്ങളെക്കുറിച്ചും വിവരിക്കുക" -msgstr[1] "താങ്കളെക്കുറിച്ചും താങ്കളുടെ ഇഷ്ടങ്ങളെക്കുറിച്ചും വിവരിക്കുക" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "താങ്കളെക്കുറിച്ചും താങ്കളുടെ ഇഷ്ടങ്ങളെക്കുറിച്ചും വിവരിക്കുക" - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "താങ്കളെവിടെയാണ്, അതായത് \"നഗരം, സംസ്ഥാനം (അഥവ പ്രദേശം), രാജ്യം\" എന്നിവ." - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4394,6 +4493,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4427,15 +4528,8 @@ msgstr "ലോഗിൻ ചെയ്തിട്ടുള്ള ഉപയോക msgid "No notice specified." msgstr "അറിയിപ്പുകളൊന്നും വ്യക്തമാക്കിയിട്ടില്ല." -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "താങ്കൾക്ക് താങ്കളുടെ തന്നെ അറിയിപ്പ് ആവർത്തിക്കാനാവില്ല." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "താങ്കൾ ആ അറിയിപ്പ് മുമ്പേ തന്നെ ആവർത്തിച്ചിരിക്കുന്നു." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "ആവർത്തിച്ചു" @@ -4446,6 +4540,8 @@ msgstr "ആവർത്തിച്ചു!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "%s എന്ന ഉപയോക്താവിനുള്ള മറുപടികൾ" @@ -4550,6 +4646,7 @@ msgid "System error uploading file." msgstr "പ്രമാണം അപ്‌ലോഡ് ചെയ്തുകൊണ്ടിരിക്കെ സിസ്റ്റം പിഴവുണ്ടായി." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." msgstr "ഒരു ആറ്റം ഫീഡ് അല്ല." @@ -4588,6 +4685,7 @@ msgid "StatusNet" msgstr "സ്റ്റാറ്റസ്‌നെറ്റ്" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "" @@ -4779,6 +4877,8 @@ msgstr "അംഗങ്ങൾ" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(ഒന്നുമില്ല)" @@ -4851,27 +4951,32 @@ msgstr "%2$s സംരംഭത്തിൽ %1$s എന്ന ഉപയോക് msgid "Message from %1$s on %2$s" msgstr "%2$s സംരംഭത്തിൽ %1$s അയച്ച സന്ദേശങ്ങൾ" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "ഐ.എം. ലഭ്യമല്ല." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "അറിയിപ്പ് മായ്ച്ചിരിക്കുന്നു." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s" +msgstr "%s എന്നു റ്റാഗ് ചെയ്തിട്ടുള്ള അറിയിപ്പുകൾ" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, താൾ %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "%1$s എന്ന ഉപയോക്താവിനുള്ള മറുപടികൾ, താൾ %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -4957,6 +5062,7 @@ msgid "Repeat of %s" msgstr "%s എന്ന ഉപയോക്താവിന്റെ ആവർത്തനം" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "ഈ സൈറ്റിലെ ഉപയോക്താക്കളെ താങ്കൾക്ക് നിശബ്ദരാക്കാനാകില്ല." @@ -5244,52 +5350,68 @@ msgstr "" msgid "No code entered." msgstr "യാതൊരു കോഡും നൽകിയിട്ടില്ല." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" msgid "Snapshots" msgstr "" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "" +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "ആവൃതി" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "യൂ.ആർ.എൽ. അറിയിക്കുക" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "സേവ് ചെയ്യുക" - -msgid "Save snapshot settings" -msgstr "" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." +msgstr "സൈറ്റ് സജ്ജീകരണങ്ങൾ ചേവ് ചെയ്യുക" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. msgid "You are not subscribed to that profile." @@ -5300,6 +5422,27 @@ msgstr "" msgid "Could not save subscription." msgstr "" +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s സംഘ അംഗത്വങ്ങൾ" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s സംഘത്തിലെ അംഗങ്ങൾ, താൾ %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "ഈ സംഘത്തിലെ ഉപയോക്താക്കളുടെ പട്ടിക." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5415,43 +5558,64 @@ msgstr "എസ്.എം.എസ്." msgid "Notices tagged with %1$s, page %2$d" msgstr "" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "" +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "റ്റാഗ് %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "ഉപയോക്താവിനെ റ്റാഗ് ചെയ്യുക" +#. TRANS: Title for input field for inputting tags on "tag other users" page. msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " "spaces." msgstr "" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "റ്റാഗുകൾ" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "അത്തരത്തിൽ ഒരു റ്റാഗില്ല." @@ -5459,23 +5623,31 @@ msgstr "അത്തരത്തിൽ ഒരു റ്റാഗില്ല." msgid "You haven't blocked that user." msgstr "" +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "" +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "" -msgid "No profile ID in request." -msgstr "" - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" +"അറിയിപ്പിന്റെ ഉപയോഗാനുമതിയായ് ‘%1$s’ സൈറ്റിന്റെ ഉപയോഗാനുമതിയായ ‘%2$s’ എന്നതുമായി " +"ചേർന്നു പോകുന്നില്ല." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "ഐ.എം. സജ്ജീകരണങ്ങൾ" @@ -5490,10 +5662,12 @@ msgstr "മറ്റ് നിരവധി ഐച്ഛികങ്ങൾ കൈ msgid " (free service)" msgstr " (സൗജന്യ സേവനം)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "ഒന്നുമില്ല" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5505,15 +5679,19 @@ msgstr "യൂ.ആർ.എൽ. ചെറുതാക്കാൻ ഇതുപയ msgid "Automatic shortening service to use." msgstr "ഉപയോഗിക്കാവുന്ന സ്വയംപ്രവർത്തിത ചെറുതാക്കൽ സേവനം." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5522,17 +5700,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "യൂ.ആർ.എൽ. ചെറുതാക്കൽ സേവനം വളരെ വലുതാണ് (പരമാവധി 50 അക്ഷരങ്ങൾ)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "അറിയിപ്പിന്റെ ഉള്ളടക്കം അസാധുവാണ്." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "അറിയിപ്പിന്റെ ഉള്ളടക്കം അസാധുവാണ്." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "ഉപയോക്താവ്" @@ -5555,8 +5737,11 @@ msgstr "" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" -msgstr "" +msgstr "അജ്ഞാതമായ കുറിപ്പ്." #. TRANS: Field label in user admin panel for setting the character limit for the bio field. msgid "Bio Limit" @@ -5606,7 +5791,7 @@ msgstr "ഉപയോക്തൃ സജ്ജീകരണങ്ങൾ സേവ msgid "Authorize subscription" msgstr "വരിക്കാരനാകൽ അംഗീകരിക്കുക" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5615,16 +5800,19 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "സ്വീകരിക്കുക" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. msgid "Subscribe to this user." msgstr "ഈ ഉപയോക്താവിന്റെ വരിക്കാരൻ/വരിക്കാരി ആകുക." #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "നിരസിക്കുക" @@ -5641,9 +5829,10 @@ msgstr "" msgid "Subscription authorized" msgstr "വരിക്കാരനാകൽ അംഗീകരിക്കപ്പെട്ടു" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" @@ -5651,9 +5840,10 @@ msgstr "" msgid "Subscription rejected" msgstr "വരിക്കാരനാകൽ നിരസിക്കപ്പെട്ടു" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" @@ -5681,16 +5871,6 @@ msgstr "" 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. -#, 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. #, fuzzy, php-format @@ -5792,7 +5972,6 @@ msgid "Contributors" msgstr "സംഭാവന ചെയ്തവർ" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "അനുമതി" @@ -5821,7 +6000,6 @@ msgid "" msgstr "" #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "പ്ലഗിനുകൾ" @@ -5901,18 +6079,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "പ്രമാണത്തിന്റെ പേര് അസാധുവാണ്." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "സംഘത്തിൽ ചേരൽ പരാജയപ്പെട്ടു." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "സംഘത്തിന്റെ ഭാഗമല്ല." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "സംഘത്തിൽ നിന്നും ഒഴിവാകൽ പരാജയപ്പെട്ടിരിക്കുന്നു." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -5925,6 +6091,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "" +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "സംഘത്തിൽ ചേരൽ പരാജയപ്പെട്ടു." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "സംഘത്തിന്റെ ഭാഗമല്ല." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "സംഘത്തിൽ നിന്നും ഒഴിവാകൽ പരാജയപ്പെട്ടിരിക്കുന്നു." + #. TRANS: Activity title. msgid "Join" msgstr "ഭാഗഭാക്കാകുക" @@ -5999,6 +6177,35 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "ഈ സൈറ്റിൽ അറിയിപ്പുകൾ പ്രസിദ്ധീകരിക്കുന്നതിൽ നിന്നും താങ്കൾ തടയപ്പെട്ടിരിക്കുന്നു." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "താങ്കൾക്ക് താങ്കളുടെ തന്നെ അറിയിപ്പ് ആവർത്തിക്കാനാവില്ല." + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "താങ്കൾക്ക് താങ്കളുടെ തന്നെ അറിയിപ്പ് ആവർത്തിക്കാനാവില്ല." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "താങ്കൾക്ക് താങ്കളുടെ തന്നെ അറിയിപ്പ് ആവർത്തിക്കാനാവില്ല." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "താങ്കൾക്ക് താങ്കളുടെ തന്നെ അറിയിപ്പ് ആവർത്തിക്കാനാവില്ല." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "താങ്കൾ ആ അറിയിപ്പ് മുമ്പേ തന്നെ ആവർത്തിച്ചിരിക്കുന്നു." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6024,16 +6231,13 @@ msgstr " %2$d, %1$d എന്ന അറിയിപ്പിനുള്ള മ msgid "RT @%1$s %2$s" msgstr "" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6055,6 +6259,7 @@ msgid "Unable to save tag." msgstr "" #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "" @@ -6082,7 +6287,9 @@ msgstr "" msgid "Could not delete subscription." msgstr "" -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "പിന്തുടരുക" @@ -6150,18 +6357,24 @@ msgid "User deletion in progress..." msgstr "ഉപയോക്താവിനെ നീക്കം ചെയ്യൽ പുരോഗമിക്കുന്നു..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "ക്രമീകരണങ്ങളുടെ സജ്ജീകരണം മാറ്റുക" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "തിരുത്തുക" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "ഈ ഉപയോക്താവിന് നേരിട്ട് സന്ദേശമയയ്ക്കുക" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "സന്ദേശം" @@ -6183,10 +6396,6 @@ msgctxt "role" msgid "Moderator" msgstr "മദ്ധ്യസ്ഥ(ൻ)" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "വരിക്കാരാകുക" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6212,7 +6421,9 @@ msgstr "മറുപടി" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "സ്റ്റാറ്റസ്‌നെറ്റ്" @@ -6324,8 +6535,9 @@ msgstr "" msgid "No content for notice %s." msgstr "ഉള്ളടക്കമൊന്നും %s എന്ന അറിയിപ്പിൽ നൽകിയിട്ടില്ല." -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "%s എന്നൊരു ഉപയോക്താവില്ല." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6372,77 +6584,127 @@ msgstr "" msgid "Unable to delete design setting." msgstr "രൂപകല്പനാ സജ്ജീകരണങ്ങൾ മായ്ക്കാൻ കഴിഞ്ഞില്ല." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. #, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "ഹോംപേജ്" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "ഹോംപേജ്" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "കാര്യനിർവാഹകൻ" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "സൈറ്റിന്റെ അടിസ്ഥാന ക്രമീകരണം" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "സൈറ്റ്" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "രൂപകല്പനാ ക്രമീകരണം" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "രൂപകല്പന" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "ഉപയോക്തൃ ക്രമീകരണം" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "ഉപയോക്താവ്" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "അഭിഗമ്യതാ ക്രമീകരണം" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "അഭിഗമ്യത" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Paths" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" -msgstr "" +msgstr "പതിപ്പ്" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "സൈറ്റ് അറിയിപ്പ് തിരുത്തുക" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "സൈറ്റ് അറിയിപ്പ്" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Snapshots" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "സൈറ്റിന്റെ ഉപയോഗാനുമതി സജ്ജീകരിക്കുക" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "അനുമതി" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "രൂപകല്പനാ ക്രമീകരണം" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "പ്ലഗിനുകൾ" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6451,6 +6713,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6484,9 +6747,11 @@ msgstr "" msgid "Could not issue access token." msgstr "" +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "" +#. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "" @@ -6579,6 +6844,17 @@ msgstr "" msgid "Cancel" msgstr "റദ്ദാക്കുക" +#. TRANS: Submit button title. +msgid "Save" +msgstr "സേവ് ചെയ്യുക" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "അജ്ഞാതമായ പ്രവൃത്തി" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -6601,11 +6877,12 @@ msgstr "" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "തിരിച്ചെടുക്കുക" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -6642,6 +6919,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "വരിക്കാരനാകൽ നിരസിക്കപ്പെട്ടു" + #. TRANS: Title for command results. msgid "Command results" msgstr "" @@ -6651,6 +6934,7 @@ msgid "AJAX error" msgstr "അജാക്സ് പിഴവ്" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "" @@ -6769,6 +7053,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -6789,10 +7075,6 @@ msgstr "നേരിട്ടുള്ള സന്ദേശം അയക്ക msgid "Notice from %s repeated." msgstr "%s എന്ന ഉപയോക്താവിന്റെ അറിയിപ്പ് ആവർത്തിച്ചു." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "അറിയിപ്പ് ആവർത്തിക്കുന്നതിൽ പിഴവുണ്ടായി." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7093,13 +7375,19 @@ msgstr "" msgid "Go to the installer." msgstr "" +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "ഡാറ്റാബേസ് പിഴവ്" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "സാർവ്വജനികം" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "മായ്ക്കുക" @@ -7107,6 +7395,7 @@ msgstr "മായ്ക്കുക" msgid "Delete this user" msgstr "ഈ ഉപയോക്താവിനെ നീക്കം ചെയ്യുക" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "രൂപകല്പന സേവ്‌ ചെയ്യുക" @@ -7119,14 +7408,6 @@ msgstr "നിറങ്ങൾ മാറ്റുക" msgid "Use defaults" msgstr "സ്വതേയുള്ളവ ഉപയോഗിക്കുക" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "സ്വതേയുള്ള രൂപകല്പനകൾ പുനഃസ്ഥാപിക്കുക" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "മുമ്പ് സ്വതേയുണ്ടായിരുന്നതിലേയ്ക്ക് പുനഃസ്ഥാപിക്കുക" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7135,7 +7416,7 @@ msgstr "പ്രമാണം അപ്‌ലോഡ് ചെയ്യുക" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "താങ്കൾക്ക് ഈ സൈറ്റിനുള്ള പശ്ചാത്തല ചിത്രം അപ്‌ലോഡ് ചെയ്യാവുന്നതാണ്. പ്രമാണത്തിന്റെ പരമാവധി " "വലിപ്പം %1$s ആയിരിക്കണം." @@ -7150,15 +7431,6 @@ msgctxt "RADIO" msgid "Off" msgstr "രഹിതം" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "താങ്കളുടെ രൂപകല്പന പുതുക്കാനായില്ല." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "സ്വതേയുള്ള രൂപകല്പന പുനഃസ്ഥാപിച്ചിരിക്കുന്നു." @@ -7188,46 +7460,60 @@ msgctxt "BUTTON" msgid "Favor" msgstr "" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "ആർ.എസ്.എസ്. 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "ആർ.എസ്.എസ്. 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "ആറ്റം" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "" -msgid "Not an atom feed." -msgstr "ഒരു ആറ്റം ഫീഡ് അല്ല." - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "ഫീഡ്" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "എല്ലാം" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "റ്റാഗ്" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +msgid "Choose a tag to narrow list." msgstr "" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "പോകൂ" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "" @@ -7287,9 +7573,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "അംഗമായത്" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7356,6 +7644,7 @@ msgid "%s blocked users" msgstr "%s തടയപ്പെട്ട ഉപയോക്താക്കൾ" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "കാര്യനിർവാഹക(ൻ)" @@ -7456,23 +7745,46 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "" +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "ഭാഗഭാക്കാകുക" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "ഒഴിവായി പോവുക" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "പ്രവേശിക്കുക" @@ -7521,6 +7833,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "" +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "ഈ ആൾക്കാരാണ് താങ്കളുടെ അറിയിപ്പുകൾ ശ്രദ്ധിക്കുന്നത്." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -7728,9 +8054,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "ഉപയോക്താവിനു മാത്രമേ അദ്ദേഹത്തിന്റെ സ്വന്തം മെയിൽബോക്സ് വായിക്കാനാകൂ." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -7739,32 +8067,46 @@ msgstr "" "സന്ദേശങ്ങൾ അയയ്ക്കാവുന്നതാണ്. താങ്കൾക്ക് മാത്രം കാണാവുന്ന സന്ദേശങ്ങൾ അയയ്ക്കാൻ മറ്റുള്ളവർക്കും " "കഴിയുന്നതാണ്." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +msgctxt "MENU" msgid "Inbox" msgstr "ഇൻബോക്സ്" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "താങ്കൾക്ക് വരുന്ന സന്ദേശങ്ങൾ" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +msgctxt "MENU" msgid "Outbox" msgstr "ഔട്ട്ബോക്സ്" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "താങ്കൾ അയച്ച സന്ദേശങ്ങൾ" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "അംഗത്വമുള്ള ഉപയോക്താവല്ല." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "ക്ഷമിക്കുക, അത് താങ്കളുടെ ഇൻകമിങ് ഇമെയിൽ വിലാസം അല്ല." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "ക്ഷമിക്കുക, ഇങ്ങോട്ട് ഇമെയിൽ അനുവദിച്ചിട്ടില്ല." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "പിന്തുണയില്ലാത്ത തരം സന്ദേശം: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -7815,10 +8157,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "\"%s\" എന്ന തരം പ്രമാണത്തിന് ഈ സെർവറിൽ പിന്തുണയില്ല." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "അറിയിപ്പ് നേരിട്ട് അയയ്ക്കുക" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "സ്വീകർത്താവിനെ തിരഞ്ഞെടുക്കുക:" @@ -7826,31 +8171,67 @@ msgstr "സ്വീകർത്താവിനെ തിരഞ്ഞെടു msgid "No mutual subscribers." msgstr "" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "സ്വീകർത്താവ്" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "അയക്കുക" +#. TRANS: Header in message list. msgid "Messages" msgstr "സന്ദേശങ്ങൾ" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "അയച്ചത്" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "വെബ്" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "ഇമെയിൽ" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "ഈ സംഘത്തെ മായ്ക്കരുത്." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "ഈ ഉപയോക്താവിനെ നീക്കം ചെയ്യരുത്." -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -7898,68 +8279,94 @@ msgstr "" "ക്ഷമിക്കുക, താങ്കളുടെ പ്രദേശം കണ്ടെത്താൻ പ്രതീക്ഷിച്ചതിലധികം സമയം എടുക്കുന്നു, ദയവായി പിന്നീട് " "വീണ്ടും ശ്രമിക്കുക" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "അറിയിപ്പുകൾ" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "വ" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "തെ" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "കി" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "പ" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" +#. TRANS: Followed by geo location. msgid "at" msgstr "" -msgid "web" -msgstr "വെബ്" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "ആവർത്തിച്ചത്" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "ഈ അറിയിപ്പിന് മറുപടിയിടുക" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "മറുപടി" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "ഈ അറിയിപ്പ് മായ്ക്കുക" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "അറിയിപ്പ് ആവർത്തിച്ചിരിക്കുന്നു" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "" +#. TRANS: Button text to nudge/ping another user. +msgctxt "BUTTON" msgid "Nudge" msgstr "" -msgid "Send a nudge to this user" -msgstr "" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." +msgstr "ഈ ഉപയോക്താവിന് നേരിട്ട് സന്ദേശമയയ്ക്കുക" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -7967,20 +8374,50 @@ msgstr "" msgid "Duplicate notice." msgstr "അറിയിപ്പിന്റെ പകർപ്പ്." -msgid "Couldn't insert new subscription." -msgstr "" +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." +msgstr "സന്ദേശം ഉൾപ്പെടുത്താൻ കഴിഞ്ഞില്ല." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Profile" +msgstr "അജ്ഞാതമായ കുറിപ്പ്." + +#. TRANS: Menu item title in personal group navigation menu. #, fuzzy msgid "Your profile" msgstr "അജ്ഞാതമായ കുറിപ്പ്." +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" msgid "Replies" msgstr "മറുപടികൾ" +#. TRANS: Menu item in personal group navigation menu. #, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "%s എന്ന ഉപയോക്താവിന് പ്രിയങ്കരമായവ" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "ഉപയോക്താവ്" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "സന്ദേശങ്ങൾ" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "താങ്കൾക്ക് വരുന്ന സന്ദേശങ്ങൾ" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8004,36 +8441,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. #, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "എസ്.എം.എസ്. സജ്ജീകരണങ്ങൾ" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "താങ്കളുടെ രഹസ്യവാക്ക് മാറ്റുക" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "ഉപയോക്തൃ ക്രമീകരണം" -#, fuzzy +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "ലോഗൗട്ട്" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Logout from the site" +msgid "Logout from the site." msgstr "സൈറ്റിൽ നിന്നും പുറത്തുകടക്കുക" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Login to the site" +msgid "Login to the site." msgstr "സൈറ്റിലേക്ക് പ്രവേശിക്കുക" -#, fuzzy +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "തിരയുക" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "സൈറ്റിൽ തിരയുക" #. TRANS: H2 text for user subscription statistics. @@ -8080,30 +8526,53 @@ msgstr "എല്ലാ സംഘങ്ങളും" msgid "Unimplemented method." msgstr "" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "സംഘങ്ങൾ" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "ഉപയോക്തൃ സംഘങ്ങൾ" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "സമീപകാല റ്റാഗുകൾ" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "സമീപകാല റ്റാഗുകൾ" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "തിരഞ്ഞെടുക്കപ്പെട്ടത്" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "ജനപ്രിയം" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "" +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "ഈ അറിയിപ്പ് ആവർത്തിക്കണോ?" -msgid "Yes" -msgstr "അതെ" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "ഈ അറിയിപ്പ് ആവർത്തിക്കുക" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "" @@ -8112,9 +8581,13 @@ msgstr "" msgid "Page not found." msgstr "താൾ കണ്ടെത്താനായില്ല." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "എഴുത്തുകളരി" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "ഈ ഉപയോക്താവിന്റെ എഴുത്തുകളരി" @@ -8132,129 +8605,271 @@ msgctxt "BUTTON" msgid "Search" msgstr "തിരയുക" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "ജനങ്ങൾ" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "ഈ സൈറ്റിലെ ആൾക്കാരെ കണ്ടെത്തുക" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "അറിയിപ്പുകൾ" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "അറിയിപ്പുകളുടെ ഉള്ളടക്കം കണ്ടെത്തുക" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "ഈ സൈറ്റിലെ സംഘങ്ങൾ കണ്ടെത്തുക" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "സഹായം" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "വിവരണം" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "പതിവുചോദ്യങ്ങൾ" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +msgctxt "MENU" msgid "TOS" msgstr "" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "സ്വകാര്യത" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "സ്രോതസ്സ്" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "പതിപ്പ്" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "സമ്പർക്കം" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +msgctxt "MENU" msgid "Badge" msgstr "" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "തലക്കെട്ടില്ലാത്ത ഭാഗം" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "കൂടുതൽ..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "എസ്.എം.എസ്. സജ്ജീകരണങ്ങൾ" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "അവതാരം" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "രഹസ്യവാക്ക്" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "താങ്കളുടെ രഹസ്യവാക്ക് മാറ്റുക" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "ഇമെയിൽ" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "ഇമെയിൽ കൈകാര്യരീതിയിൽ മാറ്റം വരുത്തുക" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "യൂ.ആർ.എൽ." +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "IM" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "SMS" +msgstr "എസ്.എം.എസ്." + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "" -#, fuzzy +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" msgid "Connections" msgstr "ബന്ധങ്ങൾ" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "നിശബ്ദമാക്കുക" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "ഈ ഉപയോക്താവിനെ നിശബ്ദനാക്കുക" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "%s എന്ന ഉപയോക്താവിന്റെ വരിക്കാരനാകലുകൾ" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." +msgstr "എല്ലാ വരിക്കാരും" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "വരിക്കാർ" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." +msgstr "മുമ്പേ തന്നെ %s എന്ന ഉപയോക്താവിന്റെ വരിക്കാരനാണ്." + +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "People %s subscribes to" +msgctxt "MENU" +msgid "Pending (%d)" msgstr "" +#. TRANS: Menu item title in local navigation menu. #, php-format -msgid "People subscribed to %s" +msgid "Approve pending subscription requests." msgstr "" -#, php-format -msgid "Groups %s is a member of" -msgstr "" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." +msgstr "%2$s അംഗമായ %1$s സംഘങ്ങൾ." +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "ക്ഷണിക്കുക" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "%s-ൽ നമ്മോടൊപ്പം ചേരാൻ സുഹൃത്തുക്കളേയും സഹപ്രവർത്തകരേയും ക്ഷണിക്കുക" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "ഈ ഉപയോക്താവിന്റെ വരിക്കാരൻ/വരിക്കാരി ആകുക" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "ഒന്നുമില്ല" @@ -8262,18 +8877,25 @@ msgstr "ഒന്നുമില്ല" msgid "Invalid theme name." msgstr "ദൃശ്യരൂപത്തിന്റെ പേര് അസാധുവാണ്." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "ദൃശ്യരൂപത്തിനുള്ള പ്രമാണം ലഭ്യമല്ല അല്ലെങ്കിൽ അപ്‌ലോഡ് പരാജയപ്പെട്ടു." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "ദൃശ്യരൂപം സേവ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8281,30 +8903,30 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "" -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "അറിയിപ്പുകൾ" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -8335,8 +8957,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "താങ്കൾ ആ അറിയിപ്പ് മുമ്പേ തന്നെ ആവർത്തിച്ചിരിക്കുന്നു." +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "സൈറ്റ് അറിയിപ്പ് സേവ് ചെയ്യാനായില്ല." @@ -8348,8 +8971,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "താങ്കൾ ആ അറിയിപ്പ് മുമ്പേ തന്നെ ആവർത്തിച്ചിരിക്കുന്നു." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "ആ അറിയിപ്പ് മുമ്പേ തന്നെ ആവർത്തിച്ചിരിക്കുന്നു." @@ -8359,6 +8983,28 @@ msgstr[1] "ആ അറിയിപ്പ് മുമ്പേ തന്നെ msgid "Top posters" msgstr "" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "സ്വീകർത്താവ്" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "അപരിചിതമായ ക്രിയ: \"%s\"." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8475,7 +9121,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#, fuzzy -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "" -#~ "സന്ദേശത്തിന് നീളം കൂടുതലാണ്. പരമാവധി %1$d അക്ഷരം മാത്രം, താങ്കൾ അയച്ചത് %2$d അക്ഷരങ്ങൾ." +#~ msgid "Couldn't update your design." +#~ msgstr "താങ്കളുടെ രൂപകല്പന പുതുക്കാനായില്ല." diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 4bebfa677d..d4c474f020 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -12,20 +12,54 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:05+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:10+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 (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Ukjent" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Ukjent handling" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Tilgang" @@ -77,7 +111,9 @@ msgstr "Lagre tilgangsinnstillinger" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -89,6 +125,7 @@ msgstr "Lagre" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Ingen slik side." @@ -107,6 +144,7 @@ msgstr "Ingen slik side." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -131,8 +169,11 @@ msgstr "Ingen slik side." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Ingen slik bruker." @@ -145,7 +186,15 @@ msgstr "%1$s og venner, side %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s og venner" @@ -215,28 +264,14 @@ msgstr "Du og venner" msgid "Updates from %1$s and friends on %2$s!" msgstr "Oppdateringer fra %1$s og venner på %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API-metode ikke funnet." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -270,6 +305,7 @@ msgstr "Kunne ikke oppdatere bruker." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Brukeren har ingen profil." @@ -309,6 +345,8 @@ msgstr "Kunne ikke lagre dine innstillinger for utseende." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Kunne ikke oppdatere din profils utseende." @@ -683,9 +721,12 @@ msgstr "Du er ikke autorisert." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Det var et problem med din sesjons-autentisering. Prøv igjen." @@ -839,16 +880,6 @@ msgstr "Du kan ikke slette statusen til en annen bruker." msgid "No such notice." msgstr "Ingen slik notis." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Kan ikke gjenta din egen notis." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Allerede gjentatt den notisen." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -891,8 +922,11 @@ msgstr "Slettet notis %d" msgid "Client must provide a 'status' parameter with a value." msgstr "Klienten må angi en 'status'-parameter med en verdi." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -905,6 +939,8 @@ msgstr "Foreldrenotis ikke funnet." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -974,6 +1010,8 @@ msgstr "%1$s oppdateringer som svarer på oppdateringer fra %2$s / %3$s." msgid "Repeats of %s" msgstr "Repetisjoner av %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%s /@%s) la din notis til som en favoritt" @@ -988,6 +1026,8 @@ msgstr "Notiser merket med %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Oppdateringer merket med %1$s på %2$s!" @@ -1102,11 +1142,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Manglende profil." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1114,10 +1156,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "En liste over brukerne i denne gruppen." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1142,6 +1186,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "En liste over brukerne i denne gruppen." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Kunne ikke legge bruker %1$s til gruppe %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "%1$s sin status på %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Abonnement" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Autorisasjon kansellert." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1183,7 +1255,7 @@ msgstr "Legg til i favoritter" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "%s gruppemedlemmer" #. TRANS: Subtitle for group membership feed. @@ -1197,8 +1269,7 @@ msgstr "%1$s grupper %2$s er et medlem av." msgid "Cannot add someone else's membership." msgstr "Kan ikke legge til noen andres abonnement" -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Kan bare håndtere POST-handlinger." @@ -1318,6 +1389,7 @@ msgstr "Du kan laste opp en personlig avatar. Maks filstørrelse er %s." #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Bruker uten samsvarende profil." @@ -1344,6 +1416,7 @@ msgstr "Forhåndsvis" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Slett" @@ -1459,6 +1532,7 @@ msgstr "Ikke blokker denne brukeren" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Ja" @@ -1516,6 +1590,33 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s forlot gruppe %2$s" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Ikke logget inn." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +#, fuzzy +msgid "No profile ID in request." +msgstr "Ingen profil med den ID'en." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Ingen profil med den ID'en." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Abonner" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Ingen bekreftelseskode." @@ -1655,6 +1756,7 @@ msgstr "Program ikke funnet." msgid "You are not the owner of this application." msgstr "Du er ikke eieren av dette programmet." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. #, fuzzy msgid "There was a problem with your session token." @@ -1730,24 +1832,6 @@ msgstr "Ikke slett denne gruppen" msgid "Delete this group." msgstr "Slett denne gruppen" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Ikke logget inn." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1942,16 +2026,19 @@ 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. #, 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. #, 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. #, fuzzy msgid "Save design." msgstr "Lagre utseende" @@ -2283,6 +2370,7 @@ msgstr "Fjern favoritt" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Populære notiser" @@ -2324,6 +2412,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "%s sine favorittnotiser" @@ -2336,6 +2426,7 @@ msgstr "Oppdateringer markert som favoritt av %1$s på %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Profilerte brukere" @@ -2397,6 +2488,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Fjerntjeneste bruker ukjent versjon av OMB-protokollen." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Feil ved oppdatering av fjernprofil." @@ -2434,14 +2526,6 @@ msgstr "Bruker har allerede denne rollen." msgid "No profile specified." msgstr "Ingen profil oppgitt." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Ingen profil med den ID'en." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3060,6 +3144,7 @@ msgid "License selection" msgstr "Lisensvalg" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privat" @@ -3298,6 +3383,9 @@ msgid "Ajax Error" msgstr "Ajax-feil" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Ny notis" @@ -3606,7 +3694,6 @@ msgid "Password saved." msgstr "Passordet ble lagret" #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Stier" @@ -3803,6 +3890,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Aldri" @@ -3958,17 +4046,22 @@ 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). -#, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." 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. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +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: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3981,7 +4074,9 @@ msgid "Location" msgstr "Plassering" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Hvor du er, for eksempel «By, fylke (eller region), land»" #. TRANS: Checkbox label in form for profile settings. @@ -3989,6 +4084,9 @@ msgid "Share my current location when posting notices" msgstr "Del min nåværende plassering når jeg poster notiser" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Tagger" @@ -4025,6 +4123,27 @@ msgid "" msgstr "" "Abonner automatisk på de som abonnerer på meg (best for ikke-mennesker)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Abonnement" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4056,7 +4175,7 @@ msgstr "Ugyldig merkelapp: «%s»" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Kunne ikke oppdatere bruker for autoabonnering." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4065,6 +4184,7 @@ msgid "Could not save location prefs." msgstr "Kunne ikke lagre plasseringsinnstillinger." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Kunne ikke lagre merkelapper." @@ -4096,6 +4216,7 @@ msgid "Public timeline, page %d" msgstr "Offentlig tidslinje, side %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Offentlig tidslinje" @@ -4278,10 +4399,6 @@ msgstr "Passordgjenoppretting forespurt" msgid "Password saved" msgstr "Passordet ble lagret" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Ukjent handling" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4377,6 +4494,7 @@ msgstr "Registrering ikke tillatt." msgid "You cannot register if you do not agree to the license." msgstr "Du kan ikke registrere deg om du ikke godtar lisensvilkårene." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "E-postadressen finnes allerede." @@ -4415,26 +4533,7 @@ msgstr "Kun brukt for oppdateringer, kunngjøringer og passordgjenoppretting" msgid "Longer name, preferably your \"real\" name." msgstr "Lengre navn, helst ditt \"ekte\" navn" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Beskriv deg selv og dine interesser på %d tegn" -msgstr[1] "Beskriv deg selv og dine interesser på %d tegn" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Beskriv degselv og dine interesser" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Hvor du er, for eksempel «By, fylke (eller region), land»" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4555,6 +4654,8 @@ msgstr "" "Nettadresse til profilen din på en annen kompatibel mikrobloggingstjeneste" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4591,16 +4692,8 @@ msgstr "Bare innloggede brukere kan repetere notiser." msgid "No notice specified." msgstr "Ingen notis spesifisert." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Du kan ikke gjenta din egen notis." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Du har allerede gjentatt den notisen." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Gjentatt" @@ -4611,6 +4704,8 @@ msgstr "Gjentatt!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Svar til %s" @@ -4722,6 +4817,7 @@ msgid "System error uploading file." msgstr "Systemfeil ved opplasting av fil." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Alle medlemmer" @@ -4762,6 +4858,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Du kan ikke flytte brukere til sandkassen på dette nettstedet." @@ -4960,6 +5057,8 @@ msgstr "Medlemmer" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Ingen)" @@ -5042,6 +5141,11 @@ msgstr "Melding til %1$s på %2$s" msgid "Message from %1$s on %2$s" msgstr "Melding fra %1$s på %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "Direktemeldinger ikke tilgjengelig." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Notis slettet." @@ -5049,20 +5153,20 @@ msgstr "Notis slettet." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %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, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Brukere som har merket seg selv med %1$s - side %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, side %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Brukere som har merket seg selv med %1$s - side %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5149,6 +5253,7 @@ msgid "Repeat of %s" msgstr "Repetisjon av %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Du kan ikke bringe brukere til taushet på dette nettstedet." @@ -5444,55 +5549,71 @@ msgstr "" msgid "No code entered." msgstr "Ingen kode skrevet inn" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" msgid "Snapshots" msgstr "" +#. TRANS: Instructions for admin panel to configure snapshots. #, fuzzy msgid "Manage snapshot configuration" msgstr "Endre nettstedskonfigurasjon" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. #, fuzzy msgid "Invalid snapshot run value." msgstr "Ugyldig rolle." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. #, fuzzy msgid "Invalid snapshot report URL." msgstr "Ugyldig logo-URL." +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frekvens" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. #, fuzzy msgid "Report URL" msgstr "Nettadresse til kilde" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Lagre" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Lagre nettstedsinnstillinger" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5505,6 +5626,27 @@ msgstr "Ikke autorisert." msgid "Could not save subscription." msgstr "Kunne ikke lagre merkelapper." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s gruppemedlemmer" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s gruppemedlemmer, side %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "En liste over brukerne i denne gruppen." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5619,32 +5761,44 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Brukere som har merket seg selv med %1$s - side %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Notismating for merkelapp %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Notismating for merkelapp %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Notismating for merkelapp %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. #, fuzzy msgid "No ID argument." msgstr "Ingen vedlegg." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Merk %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Brukerprofil" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Merk bruker" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5653,14 +5807,23 @@ msgstr "" "Merkelapper for degselv (bokstaver, nummer, -, ., og _), adskilt med komma " "eller mellomrom" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Tagger" + +#. TRANS: Page notice on "tag other users" page. #, fuzzy msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "Bruk dette skjemaet for å redigere programmet ditt." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. #, fuzzy msgid "No such tag." msgstr "Ingen slik side." @@ -5669,27 +5832,32 @@ msgstr "Ingen slik side." msgid "You haven't blocked that user." msgstr "Du har ikke blokkert den brukeren." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. #, fuzzy msgid "User is not sandboxed." msgstr "Brukeren er allerede i sandkassen." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. #, fuzzy msgid "User is not silenced." msgstr "Bruker er allerede brakt til taushet." -#, fuzzy -msgid "No profile ID in request." -msgstr "Ingen profil med den ID'en." - +#. TRANS: Page title for page to unsubscribe. #, fuzzy msgid "Unsubscribed" msgstr "Abonner" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "Notislisensen ‘%1$s’ er ikke kompatibel med nettstedslisensen ‘%2$s’." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Innstillinger for direktemeldinger" @@ -5704,10 +5872,12 @@ msgstr "Håndter diverse andre alternativ." msgid " (free service)" msgstr " (fri tjeneste)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Ingen" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5719,15 +5889,19 @@ msgstr "Forkort nettadresser med" msgid "Automatic shortening service to use." msgstr "Automatisk fortkortelsestjeneste å bruke." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5736,17 +5910,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Adresseforkortelsestjenesten er for lang (maks 50 tegn)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Ugyldig notisinnhold." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Ugyldig notisinnhold." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Bruker" @@ -5770,6 +5948,9 @@ msgstr "Ugyldig velkomsttekst. Maks lengde er 255 tegn." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Ugyldig standardabonnement: '%1$s' er ikke bruker." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profil" @@ -5823,7 +6004,7 @@ msgstr "Lagre nettstedsinnstillinger" msgid "Authorize subscription" msgstr "Autoriser abonnementet" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5832,18 +6013,21 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" msgstr "Godta" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Abonner på denne brukeren" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5863,9 +6047,10 @@ msgstr "" msgid "Subscription authorized" msgstr "Abonnement" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" @@ -5874,9 +6059,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Abonnement" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" @@ -5904,14 +6090,6 @@ msgstr "Profil-URL ‘%s’ er for en lokal bruker." msgid "Profile URL \"%s\" is for a local user." msgstr "Profil-URL ‘%s’ er for en lokal bruker." -#. 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. -#, 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. #, fuzzy, php-format @@ -6018,7 +6196,6 @@ msgid "Contributors" msgstr "Bidragsytere" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Lisens" @@ -6047,7 +6224,6 @@ msgid "" msgstr "" #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Programtillegg" @@ -6128,18 +6304,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "Ugyldig filnavn." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Gruppeprofil" - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Kunne ikke oppdatere gruppe." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Gruppeprofil" - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6152,6 +6316,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "Feil ved lagring av bruker; ugyldig." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Gruppeprofil" + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Kunne ikke oppdatere gruppe." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Gruppeprofil" + #. TRANS: Activity title. msgid "Join" msgstr "Bli med" @@ -6224,6 +6400,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Du kan ikke bringe brukere til taushet på dette nettstedet." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Kan ikke gjenta din egen notis." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Du kan ikke gjenta din egen notis." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Kan ikke gjenta din egen notis." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Kan ikke gjenta din egen notis." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Du har allerede gjentatt den notisen." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Brukeren har ingen profil." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6249,16 +6455,13 @@ msgstr "Kunne ikke lagre lokal gruppeinformasjon." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6281,6 +6484,7 @@ msgid "Unable to save tag." msgstr "Kunne ikke lagre nettstedsnotis." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. #, fuzzy msgid "You have been banned from subscribing." msgstr "Brukeren har blokkert deg fra å abonnere." @@ -6311,9 +6515,11 @@ msgstr "Kunne ikke slette favoritt." msgid "Could not delete subscription." msgstr "Kunne ikke slette favoritt." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "Tillat" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6380,18 +6586,24 @@ msgid "User deletion in progress..." msgstr "" #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Endre profilinnstillinger" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Rediger" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Send en direktemelding til denne brukeren" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Melding" @@ -6413,10 +6625,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Abonner" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6442,7 +6650,9 @@ msgstr "Svar" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6558,8 +6768,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Inget innhold for notis %d." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "Ingen slik bruker." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6608,80 +6819,131 @@ msgstr "saveSettings() ikke implementert." msgid "Unable to delete design setting." msgstr "Kunne ikke lagre dine innstillinger for utseende." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Hjemmesiden" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Hjemmesiden" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Administrator" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Basic site configuration" msgstr "Endre nettstedskonfigurasjon" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Nettsted" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Design configuration" msgstr "Tilgangskonfigurasjon" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Utseende" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Brukerkonfigurasjon" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Bruker" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Tilgangskonfigurasjon" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Tilgang" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Stikonfigurasjon" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Stier" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Sessions configuration" msgstr "Tilgangskonfigurasjon" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "Sessions" msgstr "Økter" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Rediger nettstedsnotis" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Nettstedsnotis" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Snapshots configuration" msgstr "Stikonfigurasjon" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Snapshots" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Lisens" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Stikonfigurasjon" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Programtillegg" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6690,6 +6952,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6726,9 +6989,11 @@ msgstr "" msgid "Could not issue access token." msgstr "Kunne ikke sette inn melding." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Databasefeil ved innsetting av bruker i programmet OAuth." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "Databasefeil ved innsetting av bruker i programmet OAuth." @@ -6825,6 +7090,17 @@ msgstr "" msgid "Cancel" msgstr "Avbryt" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Lagre" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Ukjent handling" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -6847,11 +7123,12 @@ msgstr "" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Tilbakekall" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -6892,6 +7169,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Alle abonnementer" + #. TRANS: Title for command results. msgid "Command results" msgstr "Kommandoresultat" @@ -6902,6 +7185,7 @@ msgid "AJAX error" msgstr "Ajax-feil" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Kommando fullført" @@ -7021,6 +7305,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7041,10 +7327,6 @@ msgstr "Feil ved sending av direktemelding." msgid "Notice from %s repeated." msgstr "Nytt nick" -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Feil ved repetering av notis." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7356,13 +7638,19 @@ msgstr "" msgid "Go to the installer." msgstr "Log inn på nettstedet" +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Databasefeil" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Offentlig" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Slett" @@ -7370,6 +7658,7 @@ msgstr "Slett" msgid "Delete this user" msgstr "Slett denne brukeren" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Lagre utseende" @@ -7382,14 +7671,6 @@ msgstr "Endre farger" msgid "Use defaults" msgstr "Bruk standard" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Gjenopprett standardutseende" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Tilbakestill til standardverdier" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7398,7 +7679,7 @@ msgstr "Last opp fil" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "Du kan laste opp en personlig avatar. Maks filstørrelse er %s." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. @@ -7413,15 +7694,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Av" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "Kunne ikke oppdatere utseende." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". #, fuzzy msgid "Design defaults restored." @@ -7456,49 +7728,62 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Favoritter" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "Venn av en venn" -#, fuzzy -msgid "Not an atom feed." -msgstr "Alle medlemmer" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Alle" +#. TRANS: Fieldset legend on gallery action page. #, fuzzy msgid "Select tag to filter" msgstr "Velg en operatør" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. #, fuzzy msgid "Tag" msgstr "Tagger" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +msgid "Choose a tag to narrow list." msgstr "" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Gå" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Innvilg denne brukeren rollen «%s»" @@ -7558,9 +7843,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Medlem siden" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7627,6 +7914,7 @@ msgid "%s blocked users" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Administrator" @@ -7727,23 +8015,46 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Ukjent innbokskilde %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Bli med" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Forlat" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Logg inn" @@ -7804,6 +8115,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s lytter nå til dine notiser på %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s lytter nå til dine notiser på %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8093,9 +8418,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Bare brukeren kan lese sine egne postbokser." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8104,34 +8431,50 @@ msgstr "" "engasjere andre brukere i en samtale. Personer kan sende deg meldinger som " "bare du kan se." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Innboks" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Dine innkommende meldinger" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Utboks" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Dine sendte meldinger" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Kunne ikke tolke meldingen." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Ikke en registrert bruker." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. #, fuzzy msgid "Sorry, that is not your incoming email address." msgstr "Det er ikke din e-postadresse." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. #, fuzzy msgid "Sorry, no incoming email allowed." msgstr "Ingen innkommende e-postadresse." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Meldingstypen støttes ikke: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8181,10 +8524,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Send en direktenotis" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Velg lisens" @@ -8194,32 +8540,67 @@ msgstr "Velg lisens" msgid "No mutual subscribers." msgstr "Alle abonnementer" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Til" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Send" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Melding" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "fra" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +msgctxt "SOURCE" +msgid "web" msgstr "" +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "E-post" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Du har ikke tillatelse til å slette denne gruppen." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Ikke slett denne gruppen" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8267,69 +8648,96 @@ msgstr "" "Beklager, henting av din geoposisjon tar lenger tid enn forventet, prøv " "igjen senere" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Notiser" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "Ø" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "V" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "på" -msgid "web" -msgstr "" - +#. TRANS: Addition in notice list item if notice is part of a conversation. #, fuzzy msgid "in context" msgstr "Inget innhold." +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Repetert av" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Svar på denne notisen" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Svar" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Slett denne notisen" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Notis repetert" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Knuff denne brukeren" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Knuff" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Send et knuff til denne brukeren" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8337,19 +8745,51 @@ msgstr "" msgid "Duplicate notice." msgstr "" +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. #, fuzzy -msgid "Couldn't insert new subscription." +msgid "Could not insert new subscription." msgstr "Kunne ikke sette inn bekreftelseskode." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Gruppeprofil" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Svar" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Favoritter" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Bruker" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Melding" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Dine innkommende meldinger" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, fuzzy, php-format msgid "Tags in %s's notices" @@ -8373,34 +8813,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. #, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "SMS-innstillinger" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Endre profilinnstillingene dine" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Brukerkonfigurasjon" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "Logg ut" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Logout from the site" +msgid "Logout from the site." msgstr "Logg ut fra nettstedet" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Login to the site" +msgid "Login to the site." msgstr "Log inn på nettstedet" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "Søk" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Søk nettsted" #. TRANS: H2 text for user subscription statistics. @@ -8447,34 +8898,55 @@ msgstr "Alle grupper" msgid "Unimplemented method." msgstr "Ikke-implementert metode." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grupper" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Brukergrupper" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Recent tags" +msgstr "Nyeste Tagger" + +#. TRANS: Menu item title in search group navigation panel. #, fuzzy msgid "Recent tags" msgstr "Nyeste Tagger" +#. TRANS: Menu item in search group navigation panel. #, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Profilerte brukere" +#. TRANS: Menu item in search group navigation panel. #, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Populære notiser" +#. TRANS: Client error displayed when return-to was defined without a target. #, fuzzy msgid "No return-to arguments." msgstr "Ingen vedlegg." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Repeter denne notisen?" -msgid "Yes" -msgstr "Ja" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Repeter denne notisen" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, fuzzy, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Blokker denne brukeren fra denne gruppen" @@ -8484,10 +8956,13 @@ msgstr "Blokker denne brukeren fra denne gruppen" msgid "Page not found." msgstr "API-metode ikke funnet!" +#. TRANS: Title of form to sandbox a user. #, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Innboks" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Opphev blokkering av denne brukeren" @@ -8505,133 +8980,276 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Personer" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Finn personer på dette nettstedet" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Notiser" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Finn innhold i notiser" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Finn grupper på dette nettstedet" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "Hjelp" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Om" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "OSS/FAQ" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +msgctxt "MENU" msgid "TOS" msgstr "" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. #, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Privat" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Kilde" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Versjon" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Kontakt" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. #, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Knuff" +#. TRANS: Default title for section/sidebar widget. #, fuzzy msgid "Untitled section" msgstr "Side uten tittel" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Mer..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "SMS-innstillinger" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Endre profilinnstillingene dine" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Brukerbilde" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Last opp en avatar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Passord" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Endre passordet ditt" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "E-post" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Endre eposthåndtering" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Brukerprofil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "Nettadresse" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "IM" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Oppdatert med SMS" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Tilkoblinger" +#. TRANS: Menu item title in settings navigation panel. #, fuzzy msgid "Authorized connected applications" msgstr "Tilkoblede program" +#. TRANS: Title of form to silence a user. #, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Nettstedsnotis" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Slett denne brukeren" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Abonnement" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, fuzzy, php-format -msgid "People %s subscribes to" +msgid "People %s subscribes to." msgstr "Fjernabonner" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Abonnenter" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." +msgstr "Fjernabonner" + +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "People subscribed to %s" -msgstr "Fjernabonner" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, fuzzy, php-format -msgid "Groups %s is a member of" +msgid "Groups %s is a member of." msgstr "%1$s grupper %2$s er et medlem av." +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "Inviter" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, fuzzy, php-format -msgid "Invite friends and colleagues to join you on %s" +msgid "Invite friends and colleagues to join you on %s." msgstr "Inviter venner og kollegaer til å bli med deg på %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Abonner på denne brukeren" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Ingen" @@ -8640,19 +9258,26 @@ msgstr "Ingen" msgid "Invalid theme name." msgstr "Ugyldig filnavn." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "" +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. #, fuzzy msgid "Failed saving theme." msgstr "Oppdatering av avatar mislyktes." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8660,31 +9285,31 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. #, fuzzy msgid "Error opening theme archive." msgstr "Feil ved oppdatering av fjernprofil." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Notiser" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -8715,8 +9340,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Repeter denne notisen" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Slett denne notisen" @@ -8728,8 +9354,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Du har allerede gjentatt den notisen." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Allerede gjentatt den notisen." @@ -8739,6 +9366,28 @@ msgstr[1] "Allerede gjentatt den notisen." msgid "Top posters" msgstr "" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Til" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Ukjent språk «%s»." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8858,5 +9507,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Melding for lang - maks er %1$d tegn, du sendte %2$d." +#~ msgid "Couldn't update your design." +#~ msgstr "Kunne ikke oppdatere utseende." diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 8aba59437d..a1a7932e2d 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -12,20 +12,54 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:04+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:08+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Onbekend" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Onbekende handeling" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Toegang" @@ -77,7 +111,9 @@ msgstr "Toegangsinstellingen opslaan" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -89,6 +125,7 @@ msgstr "Opslaan" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Deze pagina bestaat niet." @@ -107,6 +144,7 @@ msgstr "Deze pagina bestaat niet." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -131,11 +169,14 @@ msgstr "Deze pagina bestaat niet." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." -msgstr "Onbekende gebruiker." +msgstr "Deze gebruiker bestaat niet." #. TRANS: Page title. %1$s is user nickname, %2$d is page number #, php-format @@ -145,7 +186,15 @@ msgstr "%1$s en vrienden, pagina %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s en vrienden" @@ -218,28 +267,14 @@ msgstr "U en vrienden" msgid "Updates from %1$s and friends on %2$s!" msgstr "Updates van %1$s en vrienden op %2$s." -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "De API-functie is niet aangetroffen." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -275,6 +310,7 @@ msgstr "Het was niet mogelijk de gebruiker bij te werken." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Deze gebruiker heeft geen profiel." @@ -314,6 +350,8 @@ msgstr "Het was niet mogelijk om uw ontwerpinstellingen op te slaan." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Het was niet mogelijk uw ontwerp bij te werken." @@ -689,9 +727,12 @@ msgstr "Het verzoektoken is al geautoriseerd." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" "Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, " @@ -849,16 +890,6 @@ msgstr "U kunt de status van een andere gebruiker niet verwijderen." msgid "No such notice." msgstr "De mededeling bestaat niet." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "U kunt uw eigen mededeling niet herhalen." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "U hebt die mededeling al herhaald." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -900,8 +931,11 @@ msgstr "Mededeling %d is verwijderd" msgid "Client must provide a 'status' parameter with a value." msgstr "De client moet een parameter \"status\" met een waarde opgeven." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -914,6 +948,8 @@ msgstr "De bovenliggende mededeling is niet aangetroffen." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -988,6 +1024,8 @@ msgstr "Mededelingen van %1$s die zijn herhaald naar %2$s / %3$s." msgid "Repeats of %s" msgstr "Herhaald van %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "Mededelingen van %1$s die %2$s / %3$s heeft herhaald." @@ -1002,6 +1040,8 @@ msgstr "Mededelingen met het label %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Updates met het label %1$s op %2$s!" @@ -1117,10 +1157,12 @@ msgstr "" "afwijzen." #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. msgid "Must specify a profile." msgstr "Er moet een profiel opgegeven worden." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, php-format @@ -1128,10 +1170,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "%s heeft geen openstaand verzoek voor deze groep." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "Interne fout: zowel annuleren als afbreken is niet ontvangen." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "Interne fout: er is zowel annuleren als afbreken ontvangen." @@ -1158,6 +1202,34 @@ msgstr "Uw verzoek om lid te worden is geaccepteerd." msgid "Join request canceled." msgstr "Het verzoek voor lidmaatschap is geweigerd." +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "%s staat niet in de wachtrij voor uw abonnementen." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "" +"Het was niet mogelijk het verzoek van gebruiker %1$s om lid te worden van de " +"groep %2$s te annuleren of goed te keuren." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Verzoek van %1$s" + +#. TRANS: Message on page for user after approving a subscription request. +msgid "Subscription approved." +msgstr "Het abonnement is oedgekeurd." + +#. TRANS: Message on page for user after rejecting a subscription request. +msgid "Subscription canceled." +msgstr "Het abonnement is geweigerd." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1196,8 +1268,8 @@ msgstr "Deze mededeling is al een favoriet." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, php-format -msgid "%s group memberships" -msgstr "groepslidmaatschappen van %s" +msgid "Group memberships of %s" +msgstr "Groepslidmaatschappen van %s" #. TRANS: Subtitle for group membership feed. #. TRANS: %1$s is a username, %2$s is the StatusNet sitename. @@ -1209,8 +1281,7 @@ msgstr "Groepen waar %1$s lid van is op %2$s" msgid "Cannot add someone else's membership." msgstr "Het is niet mogelijk om een lidmaatschap van een ander toe te voegen." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "" "Het is alleen mogelijk om activiteiten met betrekking tot lidmaatschap af te " @@ -1328,6 +1399,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Gebruiker zonder bijbehorend profiel." @@ -1354,6 +1426,7 @@ msgstr "Voorvertoning" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Verwijderen" @@ -1471,6 +1544,7 @@ msgstr "Deze gebruiker niet blokkeren." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Ja" @@ -1527,13 +1601,38 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s heeft de groep %2$s verlaten" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Niet aangemeld." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Het profiel-ID was niet aanwezig in het verzoek." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Er is geen profiel met dat ID." + +#. TRANS: Title after unsubscribing from a group. +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Het abonnement is opgezegd" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Geen bevestigingscode." #. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. msgid "Confirmation code not found." -msgstr "De bevestigingscode niet gevonden." +msgstr "De bevestigingscode is niet gevonden." #. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. msgid "That confirmation code is not for you!" @@ -1665,6 +1764,7 @@ msgstr "De applicatie is niet gevonden." msgid "You are not the owner of this application." msgstr "U bent niet de eigenaar van deze applicatie." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Er is een probleem met uw sessietoken." @@ -1736,24 +1836,6 @@ msgstr "Deze groep niet verwijderen." msgid "Delete this group." msgstr "Deze groep verwijderen." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Niet aangemeld." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1943,14 +2025,17 @@ msgid "Use defaults" msgstr "Standaardinstellingen gebruiken" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." msgstr "Het standaardontwerp toepassen." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "De standaardinstellingen toepassen." #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." msgstr "Ontwerp opslaan." @@ -2281,6 +2366,7 @@ msgstr "Van uw favorietenlijst verwijderen." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Populaire mededelingen" @@ -2323,6 +2409,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Favoriete mededelingen van %s" @@ -2335,6 +2423,7 @@ msgstr "Updates op de favorietenlijst van %1$s op %2$s." #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Nieuwe gebruikers" @@ -2399,6 +2488,7 @@ msgstr "" "De diensten op afstand gebruiken een onbekende versie van het OMB-protocol." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "" "Er is een fout opgetreden tijdens het bijwerken van het profiel op afstand." @@ -2437,14 +2527,6 @@ msgstr "Deze gebruiker heeft deze rol al." msgid "No profile specified." msgstr "Er is geen profiel opgegeven." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Er is geen profiel met dat ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3058,6 +3140,7 @@ msgid "License selection" msgstr "Licentieselectie" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privé" @@ -3275,7 +3358,7 @@ msgstr "Stuur geen berichten naar uzelf. Zeg het gewoon in uw hoofd." #. TRANS: Page title after sending a direct message. msgid "Message sent" -msgstr "Bericht verzonden." +msgstr "Bericht verzonden" #. TRANS: Confirmation text after sending a direct message. #. TRANS: %s is the direct message recipient. @@ -3291,6 +3374,9 @@ msgid "Ajax Error" msgstr "Er is een Ajax-fout opgetreden" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nieuw bericht" @@ -3551,7 +3637,7 @@ msgstr "Nieuw wachtwoord" #. TRANS: Field title on page where to change password. #. TRANS: Field title on account registration page. msgid "6 or more characters." -msgstr "Zes of meer tekens" +msgstr "Zes of meer tekens." #. TRANS: Field label on page where to change password. In this field the new password should be typed a second time. msgctxt "LABEL" @@ -3598,7 +3684,6 @@ msgid "Password saved." msgstr "Het wachtwoord is opgeslagen." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Paden" @@ -3790,6 +3875,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Nooit" @@ -3949,17 +4035,21 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" -msgstr[0] "Beschrijf uzelf en uw interesses in %d teken" -msgstr[1] "Beschrijf uzelf en uw interesses in %d tekens" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." +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. -msgid "Describe yourself and your interests" -msgstr "Beschrijf uzelf en uw interesses" +#. TRANS: Text area title on account registration page. +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: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3972,14 +4062,18 @@ msgid "Location" msgstr "Locatie" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Waar u bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\"" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Waar u bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\"." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" msgstr "Mijn huidige locatie weergeven bij het plaatsen van mededelingen" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Labels" @@ -4014,6 +4108,26 @@ msgstr "" "Automatisch abonneren bij abonnement op mij (beste voor automatische " "processen)." +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +msgid "Subscription policy" +msgstr "Abonnementenbeleid" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "Iedereen mag mij volgen" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "Vraag het me eerst" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "Of andere gebruikers uw toestemming nodig hebben om u te volgen." + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "Nieuwe berichten alleen weergeven aan mijn volgers" + #. 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). @@ -4044,16 +4158,17 @@ msgstr "Ongeldig label: \"%s\"." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "" -"Het was niet mogelijk de instelling voor automatisch abonneren voor de " -"gebruiker bij te werken." +"Het was niet mogelijk de instelling voor automatisch abonneren of het " +"abonneerbeleid voor de gebruiker bij te werken." #. TRANS: Server error thrown when user profile location preference settings could not be updated. msgid "Could not save location prefs." msgstr "Het was niet mogelijk de locatievoorkeuren op te slaan." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Het was niet mogelijk de labels op te slaan." @@ -4084,6 +4199,7 @@ msgid "Public timeline, page %d" msgstr "Openbare tijdlijn, pagina %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Openbare tijdlijn" @@ -4268,10 +4384,6 @@ msgstr "Wachtwoordherstel aangevraagd" msgid "Password saved" msgstr "Het wachtwoord is opgeslagen" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Onbekende handeling" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "Zes of meer tekens, en vergeet uw wachtwoord niet!" @@ -4364,6 +4476,7 @@ msgstr "Registratie is niet toegestaan." msgid "You cannot register if you do not agree to the license." msgstr "U kunt zich niet registreren als u niet akkoord gaat met de licentie." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Het e-mailadres bestaat al." @@ -4397,24 +4510,7 @@ msgstr "Alleen gebruikt voor updates, aankondigingen en wachtwoordherstel." msgid "Longer name, preferably your \"real\" name." msgstr "Een langere naam, mogelijk uw echte naam." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Beschrijf uzelf en uw interesses in %d teken." -msgstr[1] "Beschrijf uzelf en uw interesses in %d tekens." - -#. TRANS: Text area title on account registration page. -msgid "Describe yourself and your interests." -msgstr "Beschrijf uzelf en uw interesses." - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Waar u bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\"." - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. msgctxt "BUTTON" msgid "Register" msgstr "Registreren" @@ -4533,6 +4629,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "De URL van uw profiel bij een andere, compatibele microblogdienst." #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. msgctxt "BUTTON" msgid "Subscribe" msgstr "Abonneren" @@ -4565,15 +4663,8 @@ msgstr "Alleen aangemelde gebruikers kunnen hun mededelingen herhalen." msgid "No notice specified." msgstr "Er is geen mededeling opgegeven." -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "U kunt uw eigen mededeling niet herhalen." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "U hebt die mededeling al herhaald." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Herhaald" @@ -4584,6 +4675,8 @@ msgstr "Herhaald!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Antwoorden aan %s" @@ -4699,6 +4792,7 @@ msgid "System error uploading file." msgstr "Er is een systeemfout opgetreden tijdens het uploaden van het bestand." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." msgstr "Dit is geen Atomfeed." @@ -4740,6 +4834,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Op deze website kunt u gebruikers niet in de zandbak plaatsen." @@ -4933,6 +5028,8 @@ msgstr "Leden" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(geen)" @@ -5014,6 +5111,10 @@ msgstr "Bericht aan %1$s op %2$s" msgid "Message from %1$s on %2$s" msgstr "Bericht van %1$s op %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +msgid "Not available." +msgstr "Niet beschikbaar." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Deze mededeling is verwijderd." @@ -5021,20 +5122,20 @@ msgstr "Deze mededeling is verwijderd." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format -msgid "%1$s tagged %2$s" -msgstr "%2$s gelabeld door %1$s" +msgid "Notices by %1$s tagged %2$s" +msgstr "Mededelingen van %1$s met het label %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, %3$d is the page number. #, php-format -msgid "%1$s tagged %2$s, page %3$d" -msgstr "%2$s gelabeld door %1$s, pagina %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" +msgstr "Mededelingen van %1$s met het label %2$s, pagina %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. #, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, pagina %2$d" +msgid "Notices by %1$s, page %2$d" +msgstr "Mededelingen van %1$s, pagina %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5123,6 +5224,7 @@ msgid "Repeat of %s" msgstr "Herhaald van %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "U kunt gebruikers op deze website niet muilkorven." @@ -5415,53 +5517,68 @@ msgstr "" msgid "No code entered." msgstr "Er is geen code ingevoerd." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" msgid "Snapshots" msgstr "Snapshots" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Snapshotinstellingen beheren" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "De waarde voor het uitvoeren van snapshots is ongeldig." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "De snapshotfrequentie moet een getal zijn." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "De rapportage-URL voor snapshots is ongeldig." +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Snapshots" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Willekeurig tijdens een websitehit" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "Als geplande taak" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Snapshots van gegevens" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" -"Wanneer statistische gegevens naar de status.net-servers verzonden worden" +"Wanneer statistische gegevens naar de status.net-servers verzonden worden." +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frequentie" -msgid "Snapshots will be sent once every N web hits" -msgstr "Iedere zoveel websitehits wordt een snapshot verzonden" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." +msgstr "Iedere zoveel websitehits wordt een snapshot verzonden." +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "Rapportage-URL" -msgid "Snapshots will be sent to this URL" -msgstr "Snapshots worden naar deze URL verzonden" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." +msgstr "Snapshots worden naar deze URL verzonden." -#. TRANS: Submit button title. -msgid "Save" -msgstr "Opslaan" - -msgid "Save snapshot settings" -msgstr "Snapshotinstellingen opslaan" +#. TRANS: Title for button to save snapshot settings. +msgid "Save snapshot settings." +msgstr "Snapshotinstellingen opslaan." #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. msgid "You are not subscribed to that profile." @@ -5472,6 +5589,26 @@ msgstr "U bent niet geabonneerd op dat profiel." msgid "Could not save subscription." msgstr "Het was niet mogelijk het abonnement op te slaan." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "U mag alleen uw eigen aangevraagde abonnementen goedkeuren." + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, php-format +msgid "%s subscribers awaiting approval" +msgstr "Te behandelen volgersaanvragen voor %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Te behandelen volgersaanvragen voor %1$s, pagina %2$d" + +#. TRANS: Page notice for group members page. +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Een lijst met gebruikers die wachten op goedkeuring om u te volgen." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5595,31 +5732,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Mededelingen met het label %1$s, pagina %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Mededelingenfeed voor label %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Mededelingenfeed voor label %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Mededelingenfeed voor label %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Geen ID-argument." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Label %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Gebruikersprofiel" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Gebruiker labelen" +#. TRANS: Title for input field for inputting tags on "tag other users" page. msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " "spaces." @@ -5627,17 +5776,25 @@ msgstr "" "Labels voor deze gebruiker (letters, cijfers, -, ., en _). Gebruik komma's " "of spaties als scheidingsteken." +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "U kunt alleen gebruikers labelen waarop u geabonneerd bent of die op u " "geabonneerd zijn." +#. TRANS: Title of "tag other users" page. +msgctxt "TITLE" +msgid "Tags" +msgstr "Labels" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Gebruik dit formulier om labels toe te voegen aan uw abonnementen of " "abonnees." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Onbekend label." @@ -5645,25 +5802,31 @@ msgstr "Onbekend label." msgid "You haven't blocked that user." msgstr "U hebt deze gebruiker niet geblokkeerd." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Deze gebruiker is niet in de zandbak geplaatst." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Deze gebruiker is niet gemuilkorfd." -msgid "No profile ID in request." -msgstr "Het profiel-ID was niet aanwezig in het verzoek." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" -msgstr "Het abonnement is opgezegd" +msgstr "Uitgeschreven" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "De licentie \"%1$s\" voor de stream die u wilt volgen is niet compatibel met " "de sitelicentie \"%2$s\"." +#. TRANS: Title of URL settings tab in profile settings. msgid "URL settings" msgstr "URL-instellingen" @@ -5677,9 +5840,11 @@ msgstr "Overige instellingen beheren." msgid " (free service)" msgstr " (vrij beschikbare dienst)" +#. TRANS: Default value for URL shortening settings. msgid "[none]" msgstr "[geen]" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "[intern]" @@ -5691,15 +5856,19 @@ msgstr "URL's inkorten met" msgid "Automatic shortening service to use." msgstr "Te gebruiken automatische verkortingsdienst." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "URL langer dan" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "URL's langer dan dit worden ingekort. 0 betekent altijd inkorten." +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "Tekst langer dan" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5710,16 +5879,19 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "De URL voor de verkortingdienst is te lang (maximaal 50 tekens)." -msgid "Invalid number for max url length." +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. +msgid "Invalid number for maximum URL length." msgstr "Ongeldig getal voor maximale URL-lengte." -msgid "Invalid number for max notice length." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +msgid "Invalid number for maximum notice length." msgstr "Ongeldig getal voor maximale mededelingslengte." +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "Fout bij het opslaan van gebruikersinstellingen voor URL-verkorting." -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Gebruiker" @@ -5742,6 +5914,8 @@ msgstr "Ongeldige welkomsttekst. De maximale lengte is 255 tekens." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Ongeldig standaardabonnement: \"%1$s\" is geen gebruiker." +#. TRANS: Fieldset legend in user administration panel. +msgctxt "LEGEND" msgid "Profile" msgstr "Profiel" @@ -5793,7 +5967,7 @@ msgstr "Gebruikersinstellingen opslaan." msgid "Authorize subscription" msgstr "Abonneren" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5806,16 +5980,19 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "Aanvaarden" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. msgid "Subscribe to this user." msgstr "Op deze gebruiker abonneren." #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "Afwijzen" @@ -5832,27 +6009,29 @@ msgstr "Geen autorisatieverzoek!" msgid "Subscription authorized" msgstr "Het abonnement is geautoriseerd" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -"Het abonnement is afgewezen, maar er is geen callback-URL doorgegeven. " -"Controleer de instructies van de site voor informatie over het volledig " -"afwijzen van een abonnement. Uw abonnementstoken is:" +"Het abonnement is geautoriseerd maar er is geen callback-URL doorgegeven. " +"Controleer de instructies van de website voor details over hoe het " +"abonnement te autoriseren." #. TRANS: Reject message header from Authorise subscription page. msgid "Subscription rejected" msgstr "Het abonnement is afgewezen" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" -"Het abonnement is afgewezen, maar er is geen callback-URL doorgegeven. " -"Controleer de instructies van de site voor informatie over het volledig " -"afwijzen van een abonnement." +"Het abonnement is afgewezen maar er is geen callback-URL doorgegeven. " +"Controleer de instructies van de website voor details over hoe het " +"abonnement volledig af te wijzen." #. TRANS: Exception thrown when no valid user is found for an authorisation request. #. TRANS: %s is a listener URI. @@ -5878,16 +6057,6 @@ msgstr "De abonnements-URI \"%s\" is een lokale gebruiker." msgid "Profile URL \"%s\" is for a local user." msgstr "De profiel-URL \"%s\" is van een lokale gebruiker." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"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. #, php-format @@ -5992,7 +6161,6 @@ msgid "Contributors" msgstr "Medewerkers" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licentie" @@ -6031,7 +6199,6 @@ msgstr "" "License te hebben ontvangen. Zo niet, zie dan %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Plug-ins" @@ -6114,18 +6281,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "Ongeldige bestandsnaam." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Groepslidmaatschap toevoegen is mislukt." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Geen lid van groep." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Groepslidmaatschap opzeggen is mislukt." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6138,6 +6293,18 @@ msgstr "Profiel-ID %s is ongeldig." msgid "Group ID %s is invalid." msgstr "Groep-ID %s is ongeldig." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Groepslidmaatschap toevoegen is mislukt." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Geen lid van groep." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Groepslidmaatschap opzeggen is mislukt." + #. TRANS: Activity title. msgid "Join" msgstr "Toetreden" @@ -6217,6 +6384,33 @@ msgid "You are banned from posting notices on this site." msgstr "" "U bent geblokkeerd en mag geen mededelingen meer achterlaten op deze site." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "" +"Herhalen is niet mogelijk. De originele mededeling mist of is verwijderd." + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "U kunt uw eigen mededeling niet herhalen." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +msgid "Cannot repeat a private notice." +msgstr "U kunt een persoonlijk bericht niet herhalen." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +msgid "Cannot repeat a notice you cannot read." +msgstr "U kunt een mededeling die u niet kunt zien niet herhalen." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "U hebt die mededeling al herhaald." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "%1$s heeft geen toegang tot de mededeling %2$d." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6244,16 +6438,13 @@ msgstr "Het was niet mogelijk antwoord %1$d voor %2$d op te slaan." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "Ongeldig groepslidmaatschapverzoek: niet in behandeling." - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6279,6 +6470,7 @@ msgid "Unable to save tag." msgstr "Het was niet mogelijk om het label op te slaan." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "U mag zich niet abonneren." @@ -6307,7 +6499,8 @@ msgstr "" msgid "Could not delete subscription." msgstr "Kon abonnement niet verwijderen." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +msgctxt "TITLE" msgid "Follow" msgstr "Volgen" @@ -6376,18 +6569,20 @@ msgid "User deletion in progress..." msgstr "Bezig met het verwijderen van de gebruiker..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" -msgstr "Profielinstellingen bewerken" +msgid "Edit profile settings." +msgstr "Profielinstellingen bewerken." #. TRANS: Link text for link on user profile. +msgctxt "BUTTON" msgid "Edit" msgstr "Bewerken" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" -msgstr "Deze gebruiker een direct bericht zenden" +msgid "Send a direct message to this user." +msgstr "Deze gebruiker een direct bericht zenden." #. TRANS: Link text for link on user profile. +msgctxt "BUTTON" msgid "Message" msgstr "Bericht" @@ -6409,10 +6604,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Abonneren" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6437,6 +6628,8 @@ msgstr "Antwoorden" msgid "Write a reply..." msgstr "Schrijf een antwoord..." +#. TRANS: Tab on the notice form. +msgctxt "TAB" msgid "Status" msgstr "Status" @@ -6562,9 +6755,10 @@ msgstr "" msgid "No content for notice %s." msgstr "Geen inhoud voor mededeling %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, php-format -msgid "No such user %s." -msgstr "De gebruiker %s bestaat niet." +msgid "No such user \"%s\"." +msgstr "De gebruiker \"%s\" bestaat niet." #. TRANS: Client exception thrown when post to collection fails with a 400 status. #. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason. @@ -6610,75 +6804,117 @@ msgstr "saveSettings() is nog niet geïmplementeerd." msgid "Unable to delete design setting." msgstr "Het was niet mogelijk om de ontwerpinstellingen te verwijderen." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +msgctxt "HEADER" msgid "Home" -msgstr "Start" +msgstr "Hoofdmenu" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "Home" +msgstr "Hoofdmenu" + +#. TRANS: Header in administrator navigation panel. +msgctxt "HEADER" msgid "Admin" -msgstr "Beheerder" +msgstr "Beheer" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Basisinstellingen voor de website" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Website" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Instellingen vormgeving" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Uiterlijk" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Gebruikersinstellingen" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "User" -msgstr "Gebruiker" +msgstr "Gebruikers" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Toegangsinstellingen" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Access" +msgstr "Toegang" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Padinstellingen" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Paths" +msgstr "Paden" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Sessieinstellingen" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "Sessions" msgstr "Sessies" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Websitebrede mededeling opslaan" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "Site notice" msgstr "Mededeling van de website" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Snapshotinstellingen" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Snapshots" +msgstr "Snapshots" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Sitelicentie instellen" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "License" +msgstr "Licentie" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Plugins configuration" msgstr "Plug-ininstellingen" +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Plugins" +msgstr "Plug-ins" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6689,6 +6925,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "Er is geen applicatie voor die gebruikerssleutel." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "Het gebruik van de API is niet toegestaan." @@ -6724,11 +6961,13 @@ msgstr "" msgid "Could not issue access token." msgstr "Het was niet mogelijk het toegangstoken uit te geven." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "" "Er is een databasefout opgetreden tijdens het toevoegen van de OAuth " "applicatiegebruiker." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "" "Er is een databasefout opgetreden tijdens het toevoegen van de OAuth " @@ -6824,6 +7063,16 @@ msgstr "" msgid "Cancel" msgstr "Annuleren" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Opslaan" + +#. TRANS: Name for an anonymous application in application list. +msgid "Unknown application" +msgstr "Onbekende toepassing" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr " door " @@ -6846,11 +7095,12 @@ msgstr "Goedgekeurd op %1$s met toegang \"%2$s\"." msgid "Access token starting with: %s" msgstr "Toegangstoken begint met: %s" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Intrekken" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "Het element author moet een element name bevatten." @@ -6885,7 +7135,12 @@ msgstr "Deze gebruiker blokkeren" #. TRANS: Submit button text on form to cancel group join request. msgctxt "BUTTON" msgid "Cancel join request" -msgstr "" +msgstr "Lidmaatschapsverzoek weigeren" + +#. TRANS: Button text for form action to cancel a subscription request. +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Lidmaatschapsverzoek weigeren" #. TRANS: Title for command results. msgid "Command results" @@ -6896,6 +7151,7 @@ msgid "AJAX error" msgstr "Er is een Ajax-fout opgetreden" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Het commando is uitgevoerd" @@ -7017,6 +7273,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7041,10 +7299,6 @@ msgstr "Er is een fout opgetreden bij het verzonden van het directe bericht." msgid "Notice from %s repeated." msgstr "De mededeling van %s is herhaald." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Er is een fout opgetreden bij het herhalen van de mededeling." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7343,13 +7597,18 @@ msgstr "" msgid "Go to the installer." msgstr "Naar het installatieprogramma gaan." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Databasefout" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "Public" msgstr "Openbaar" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Verwijderen" @@ -7357,6 +7616,7 @@ msgstr "Verwijderen" msgid "Delete this user" msgstr "Gebruiker verwijderen" +#. TRANS: Form legend of form for changing the page design. msgid "Change design" msgstr "Ontwerp wijzigen" @@ -7368,14 +7628,6 @@ msgstr "Kleuren wijzigen" msgid "Use defaults" msgstr "Standaardinstellingen gebruiken" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Standaardontwerp toepassen" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Standaardinstellingen toepassen" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7383,10 +7635,10 @@ msgstr "Bestand uploaden" #. TRANS: Instructions for form on profile design page. msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "U kunt een persoonlijke achtergrondafbeelding uploaden. De maximale " -"bestandsgroote is 2 megabyte." +"bestandsgrootte is 2 megabyte." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. msgctxt "RADIO" @@ -7398,15 +7650,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Uit" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "Het was niet mogelijk uw ontwerp bij te werken." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Het standaardontwerp is weer ingesteld." @@ -7436,46 +7679,58 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Aan favorietenlijst toevoegen" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "Vrienden van vrienden (FOAF)" -msgid "Not an atom feed." -msgstr "Dit is geen Atomfeed." - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "Er staat geen auteur in de feed." -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "Het is niet mogelijk te importeren zonder gebruiker." #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Feeds" +#. TRANS: List element on gallery action page to show all tags. +msgctxt "TAGS" msgid "All" msgstr "Alle" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Selecteer een label om op te filteren" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Label" -msgid "Choose a tag to narrow list" -msgstr "Kies een label om de lijst kleiner te maken" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +msgid "Choose a tag to narrow list." +msgstr "Kies een label om de lijst kleiner te maken." +#. TRANS: Submit button text on gallery action page. +msgctxt "BUTTON" msgid "Go" msgstr "OK" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Deze gebruiker de rol \"%s\" geven" @@ -7534,9 +7789,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Lidmaatschapsbeleid" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "Open voor iedereen" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "Beheerders moeten alle leden accepteren" @@ -7603,6 +7860,7 @@ msgid "%s blocked users" msgstr "Geblokkeerde gebruikers in %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Beheer" @@ -7703,28 +7961,51 @@ msgid_plural "%dB" msgstr[0] "%d byte" msgstr[1] "%d bytes" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" -"Gebruiker \"%s\" op de site %s heeft aangegeven dat de schermnaam %s van hem " -"is. Als dat klopt, dan kunt u dit bevestigen door op deze verwijzing te " -"klikken: %s. Als u hier niet op kunt klikken, kopieer en plak deze " -"verwijzing naar in de adresbalk van uw webbrowser. Als u deze gebruiker niet " -"bent, of u hebt niet om deze bevestiging gevraagd, negeer dit bericht dan." +"De gebruiker \"%1$s\" op de site %2$s heeft aangegeven dat uw %3$s-" +"schermnaam van hem of haar is. Als dat klopt, dan kunt u dit bevestigen door " +"op deze verwijzing te klikken: %4$s . (Als u hier niet op kunt klikken, " +"kopieer en plak deze verwijzing dan in de adresbalk van uw webbrowser.) Als " +"u deze gebruiker niet bent, of u niet om deze bevestiging hebt gevraagd, " +"negeer dit bericht dan." +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Onbekende bron Postvak IN %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "Wachtrijen moeten zijn ingeschakeld om IM-plugins te kunnen gebruiken." + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "Er moet een transportmethode worden opgegeven." + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Toetreden" + +#. TRANS: Button text on form to leave a group. +msgctxt "BUTTON" msgid "Leave" msgstr "Verlaten" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Aanmelden" @@ -7786,6 +8067,22 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s volgt nu uw berichten %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s wil uw berichten volgen op %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" +"%1$s wil uw berichten volgen op %2$s. U kunt dit verzoek accepteren of " +"weigeren via de volgende verwijzing: %3$s." + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8060,9 +8357,11 @@ msgstr "" "%1$s wil lid worden van de groep %2$s op %3$s. U kunt dit verzoek accepteren " "of weigeren via de volgende verwijzing: %4$s." +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Gebruikers kunnen alleen hun eigen postvakken lezen." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8070,33 +8369,45 @@ msgstr "" "U hebt geen privéberichten. U kunt privéberichten verzenden aan andere " "gebruikers. Mensen kunnen u privéberichten sturen die alleen u kunt lezen." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +msgctxt "MENU" msgid "Inbox" msgstr "Postvak IN" -msgid "Your incoming messages" -msgstr "Uw inkomende berichten" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +msgid "Your incoming messages." +msgstr "Uw inkomende berichten." +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +msgctxt "MENU" msgid "Outbox" msgstr "Postvak UIT" -msgid "Your sent messages" -msgstr "Uw verzonden berichten" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +msgid "Your sent messages." +msgstr "Uw verzonden berichten." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Het was niet mogelijk het bericht te verwerken." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Geen geregistreerde gebruiker" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Dit is niet uw inkomende e-mailadres." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Inkomende e-mail is niet toegestaan." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. #, php-format -msgid "Unsupported message type: %s" -msgstr "Niet ondersteund berichttype: %s" +msgid "Unsupported message type: %s." +msgstr "Niet ondersteund berichttype: %s." #. TRANS: Form legend for form to make a user a group admin. msgid "Make user an admin of the group" @@ -8149,10 +8460,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "\"%s\" is geen ondersteund bestandstype op deze server." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Directe mededeling verzenden" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "Selecteer ontvanger:" @@ -8160,29 +8474,63 @@ msgstr "Selecteer ontvanger:" msgid "No mutual subscribers." msgstr "Geen wederzijdse abonnees." +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Aan" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Verzenden" +#. TRANS: Header in message list. msgid "Messages" msgstr "Berichten" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "van" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +msgctxt "SOURCE" +msgid "web" +msgstr "web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "XMPP" + +#. TRANS: A possible notice source (e-mail). +msgctxt "SOURCE" +msgid "mail" +msgstr "e-mail" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "OMB" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "API" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." msgstr "Het was niet mogelijk de auteur te achterhalen voor de activiteit." +#. TRANS: Client exception. msgid "Bookmark not posted to this group." msgstr "De bladwijzer is niet aan deze groep verzonden." +#. TRANS: Client exception. msgid "Object not posted to this user." msgstr "Het object is niet aan deze gebruiker verzonden." -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "Het is niet bekend hoe dit doel afgehandeld moet worden." #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8229,68 +8577,91 @@ msgstr "" "Het ophalen van uw geolocatie duurt langer dan verwacht. Probeer het later " "nog eens" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +msgctxt "HEADER" +msgid "Notices" +msgstr "Mededelingen" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "Z" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "O" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "W" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "op" -msgid "web" -msgstr "web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "in context" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Herhaald door" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Op deze mededeling antwoorden" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Antwoorden" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Deze mededeling verwijderen" -msgid "Notice repeated" -msgstr "Mededeling herhaald" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +msgid "Notice repeated." +msgstr "Mededeling herhaald." +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "Werk uw status bij..." +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Deze gebruiker porren" +#. TRANS: Button text to nudge/ping another user. +msgctxt "BUTTON" msgid "Nudge" msgstr "Porren" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +msgid "Send a nudge to this user." msgstr "Deze gebruiker porren" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Fout tijdens het invoegen van een nieuw profiel." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Fout bij het invoegen van de avatar." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Fout bij het invoegen van het profiel van een andere server." @@ -8298,18 +8669,45 @@ msgstr "Fout bij het invoegen van het profiel van een andere server." msgid "Duplicate notice." msgstr "Dubbele mededeling." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +msgid "Could not insert new subscription." msgstr "Kon nieuw abonnement niet toevoegen." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Profile" +msgstr "Profiel" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Uw profiel" +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" msgid "Replies" msgstr "Antwoorden" +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" msgid "Favorites" msgstr "Favorieten" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +msgctxt "FIXME" +msgid "User" +msgstr "deze gebruiker" + +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Messages" +msgstr "Berichten" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Uw inkomende berichten" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8333,28 +8731,44 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "Plug-inbeschrijvingen zijn niet beschikbaar als uitgeschakeld." +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Settings" -msgstr "SMS-instellingen" +msgstr "Instellingen" -msgid "Change your personal settings" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Change your personal settings." msgstr "Persoonlijke instellingen wijzigen" -msgid "Site configuration" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Site configuration." msgstr "Siteinstellingen" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "Afmelden" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Van de site afmelden" -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "Bij de site aanmelden" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "Zoeken" -msgid "Search the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Search the site." msgstr "Site doorzoeken" #. TRANS: H2 text for user subscription statistics. @@ -8401,30 +8815,48 @@ msgstr "Alle groepen" msgid "Unimplemented method." msgstr "Methode niet geïmplementeerd." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "Groepen" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Gebruikersgroepen" +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "Recent tags" msgstr "Recente labels" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Recente labels" + +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "Featured" msgstr "Uitgelicht" +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "Popular" msgstr "Populair" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Er zijn geen \"terug naar\"-parameters opgegeven." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Deze mededeling herhalen?" -msgid "Yes" -msgstr "Ja" - -msgid "Repeat this notice" -msgstr "Deze mededeling herhalen" +#. TRANS: Button title to repeat a notice on notice repeat form. +msgid "Repeat this notice." +msgstr "Deze mededeling herhalen." +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "De gebruikersrol \"%s\" voor deze gebruiker intrekken" @@ -8433,9 +8865,12 @@ msgstr "De gebruikersrol \"%s\" voor deze gebruiker intrekken" msgid "Page not found." msgstr "De pagina is niet aangetroffen." +#. TRANS: Title of form to sandbox a user. +msgctxt "TITLE" msgid "Sandbox" -msgstr "Zandbak" +msgstr "In zandbak plaatsen" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Deze gebruiker in de zandbak plaatsen" @@ -8446,135 +8881,261 @@ msgstr "Site doorzoeken" #. TRANS: Used as a field label for the field where one or more keywords #. TRANS: for searching can be entered. msgid "Keyword(s)" -msgstr "Term(en)" +msgstr "Trefwoord(en)" #. TRANS: Button text for searching site. msgctxt "BUTTON" msgid "Search" msgstr "Zoeken" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "People" msgstr "Gebruikers" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Gebruikers op deze site vinden" +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" +msgid "Notices" +msgstr "Mededelingen" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Inhoud van mededelingen vinden" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Groepen op deze site vinden" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "Help" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" msgid "About" msgstr "Over" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" msgid "FAQ" msgstr "Veel gestelde vragen" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +msgctxt "MENU" msgid "TOS" msgstr "Gebruiksvoorwaarden" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +msgctxt "MENU" msgid "Privacy" msgstr "Privacy" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +msgctxt "MENU" msgid "Source" msgstr "Broncode" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +msgctxt "MENU" msgid "Version" msgstr "Versie" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" msgid "Contact" msgstr "Contact" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +msgctxt "MENU" msgid "Badge" msgstr "Widget" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Naamloze sectie" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Meer..." +#. TRANS: Header in settings navigation panel. +msgctxt "HEADER" +msgid "Settings" +msgstr "Instellingen" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Uw profielgegevens wijzigen" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Avatar uploaden" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "Password" +msgstr "Wachtwoord" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Uw wachtwoord wijzigen" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "Email" +msgstr "E-mail" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "E-mailafhandeling wijzigen" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Uw profiel ontwerpen" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "URL-verkorters" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Updates via instant messenger (IM)" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Updates via SMS" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" msgid "Connections" -msgstr "Verbindingen" +msgstr "Koppelingen" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Geautoriseerde verbonden applicaties" +#. TRANS: Title of form to silence a user. +msgctxt "TITLE" msgid "Silence" msgstr "Muilkorven" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Deze gebruiker muilkorven" -#, php-format -msgid "People %s subscribes to" -msgstr "Gebruikers waarop %s een abonnement heeft" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Abonnementen" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, php-format -msgid "People subscribed to %s" -msgstr "Gebruikers met een abonnement op %s" +msgid "People %s subscribes to." +msgstr "Gebruikers waarop %s een abonnement heeft." +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Subscribers" +msgstr "Abonnees" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, php-format -msgid "Groups %s is a member of" -msgstr "Groepen waar %s lid van is" +msgid "People subscribed to %s." +msgstr "Gebruikers met een abonnement op %s." +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. +#, php-format +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "In behandeling (%d)" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "Openstaande volgverzoeken behandelen." + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, php-format +msgid "Groups %s is a member of." +msgstr "Groepen waar %s lid van is." + +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" -msgstr "Uitnodigen" +msgstr "Uitnodigingen" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "Vrienden en collega's uitnodigen om u te vergezellen op %s" +msgid "Invite friends and colleagues to join you on %s." +msgstr "Vrienden en collega's uitnodigen om u te vergezellen op %s." +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Op deze gebruiker abonneren" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Gebruikerslabelwolk als zelf gelabeld" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Gebruikerslabelwolk" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +msgctxt "NOTAGS" msgid "None" msgstr "Geen" @@ -8582,20 +9143,27 @@ msgstr "Geen" msgid "Invalid theme name." msgstr "Ongeldige naam voor vormgeving." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" "Deze server kan niet overweg met uploads van vormgevingsbestanden zonder ZIP-" "ondersteuning." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Het vormgevingsbestand ontbreekt of is de upload mislukt." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Het opslaan van de vormgeving is mislukt." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "Ongeldige vormgeving: de mappenstructuur is onjuist." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8607,10 +9175,13 @@ msgstr[1] "" "De geüploade vormgeving is te groot; deze moet omgecomprimeerd kleiner zijn " "dan %d bytes." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" -"Ongeldig bestand met vormgeving: het bestand css/display.css is niet aanwezig" +"Ongeldig bestand met vormgeving: het bestand css/display.css is niet " +"aanwezig." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -8618,24 +9189,23 @@ msgstr "" "De vormgeving bevat een ongeldige bestandsnaam of mapnaam. Gebruik alleen " "maar ASCII-letters, getallen, liggende streepjes en het minteken." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "Het uiterlijk bevat onveilige namen voor bestandsextensies." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" "De vormgeving bevat een bestand van het type \".%s\". Dit is niet toegestaan." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "" "Er is een fout opgetreden tijdens het openen van het archiefbestand met de " "vormgeving." -#. TRANS: Header for Notices section. -msgctxt "HEADER" -msgid "Notices" -msgstr "Mededelingen" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -8665,8 +9235,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "U hebt deze mededeling op uw favorietenlijst geplaatst." +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "" @@ -8679,8 +9250,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "U hebt deze mededeling herhaald." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Een persoon heeft deze mededeling herhaald." @@ -8690,6 +9262,27 @@ msgstr[1] "%d personen hebben deze mededeling herhaald." msgid "Top posters" msgstr "Meest actieve gebruikers" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "Iedereen" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "Mijn collega's bij %s" + +#. TRANS: Label for drop-down of potential addressees. +msgctxt "LABEL" +msgid "To:" +msgstr "Aan:" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Onbekende waarde voor \"Aan\": \"%s\"." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8803,10 +9396,5 @@ msgstr "Ongeldige XML. De XRD-root mist." msgid "Getting backup from file '%s'." msgstr "De back-up wordt uit het bestand \"%s\" geladen." -#~ msgid "BUTTON" -#~ msgstr "X" - -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "" -#~ "Het bericht te is lang. De maximale lengte is %1$d tekens. De lengte van " -#~ "uw bericht was %2$d." +#~ msgid "Couldn't update your design." +#~ msgstr "Het was niet mogelijk uw ontwerp bij te werken." diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 270951de02..a971b542a8 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-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:06+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:12+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -20,14 +20,48 @@ 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 (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Nieznane" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Nieznane działanie" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Dostęp" @@ -79,7 +113,9 @@ msgstr "Zapisz ustawienia dostępu" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -91,6 +127,7 @@ msgstr "Zapisz" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Nie ma takiej strony." @@ -109,6 +146,7 @@ msgstr "Nie ma takiej strony." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -133,8 +171,11 @@ msgstr "Nie ma takiej strony." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Brak takiego użytkownika." @@ -147,7 +188,15 @@ msgstr "%1$s i przyjaciele, strona %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "Użytkownik %s i przyjaciele" @@ -219,28 +268,14 @@ msgstr "Ty i przyjaciele" msgid "Updates from %1$s and friends on %2$s!" msgstr "Aktualizacje z %1$s i przyjaciół na %2$s." -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "Nie odnaleziono metody API." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -275,6 +310,7 @@ msgstr "Nie można zaktualizować użytkownika." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Użytkownik nie posiada profilu." @@ -317,6 +353,8 @@ msgstr "Nie można zapisać ustawień wyglądu." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Nie można zaktualizować wyglądu." @@ -691,9 +729,12 @@ msgstr "Token żądania został już upoważniony." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Wystąpił problem z tokenem sesji. Spróbuj ponownie." @@ -847,16 +888,6 @@ msgstr "Nie można usuwać stanów innych użytkowników." msgid "No such notice." msgstr "Nie ma takiego wpisu." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Nie można powtórzyć własnego wpisu." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Już powtórzono ten wpis." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -898,8 +929,11 @@ msgstr "Usunięto wpis %d" msgid "Client must provide a 'status' parameter with a value." msgstr "Klient musi dostarczać parametr \"stan\" z wartością." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -913,6 +947,8 @@ msgstr "Nie odnaleziono wpisu nadrzędnego." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -986,6 +1022,8 @@ msgstr "%1$s aktualizuje tę odpowiedź na aktualizacje od %2$s/%3$s." msgid "Repeats of %s" msgstr "Powtórzenia %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "Użytkownik %1$s oznaczył wpis %2$s jako ulubiony." @@ -1000,6 +1038,8 @@ msgstr "Wpisy ze znacznikiem %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Aktualizacje ze znacznikiem %1$s na %2$s." @@ -1114,11 +1154,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Brak profilu." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1126,10 +1168,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Lista użytkowników znajdujących się w tej grupie." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1154,6 +1198,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Lista użytkowników znajdujących się w tej grupie." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Nie można dołączyć użytkownika %1$s do grupy %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Stan użytkownika %1$s na %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Upoważniono subskrypcję" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Anulowano upoważnienie." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1190,8 +1262,8 @@ msgstr "Jest już ulubiony." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "%s członków grupy" #. TRANS: Subtitle for group membership feed. @@ -1204,8 +1276,7 @@ msgstr "Grupy %s są członkiem" msgid "Cannot add someone else's membership." msgstr "Nie można dodać członkostwa innej osoby." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "Można obsługiwać tylko działania dołączania." @@ -1317,6 +1388,7 @@ msgstr "Można wysłać osobisty awatar. Maksymalny rozmiar pliku to %s." #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Użytkownik bez odpowiadającego profilu." @@ -1343,6 +1415,7 @@ msgstr "Podgląd" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Usuń" @@ -1464,6 +1537,7 @@ msgstr "Nie blokuj tego użytkownika" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Tak" @@ -1521,6 +1595,32 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "Użytkownik %1$s opuścił grupę %2$s" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Niezalogowany." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Brak identyfikatora profilu w żądaniu." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Brak profilu o tym identyfikatorze." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Zrezygnowano z subskrypcji" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Brak kodu potwierdzającego." @@ -1658,6 +1758,7 @@ msgstr "Nie odnaleziono aplikacji." msgid "You are not the owner of this application." msgstr "Nie jesteś właścicielem tej aplikacji." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Wystąpił problem z tokenem sesji." @@ -1731,24 +1832,6 @@ msgstr "Nie usuwaj tej grupy" msgid "Delete this group." msgstr "Usuń tę grupę" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Niezalogowany." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1939,16 +2022,19 @@ msgid "Use defaults" msgstr "Użyj domyślne" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "Przywróć domyślny wygląd" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "Przywróć domyślne ustawienia" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "Zapisz wygląd" @@ -2281,6 +2367,7 @@ msgstr "Usuń wpis z ulubionych" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Popularne wpisy" @@ -2322,6 +2409,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Ulubione wpisy użytkownika %s" @@ -2334,6 +2423,7 @@ msgstr "Aktualizacje ulubione przez użytkownika %1$s na %2$s." #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Znani użytkownicy" @@ -2395,6 +2485,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Zdalna usługa używa nieznanej wersji protokołu OMB." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Błąd podczas aktualizowania zdalnego profilu." @@ -2432,14 +2523,6 @@ msgstr "Użytkownik ma już tę rolę." msgid "No profile specified." msgstr "Nie podano profilu." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Brak profilu o tym identyfikatorze." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3070,6 +3153,7 @@ msgid "License selection" msgstr "Wybór licencji" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Prywatna" @@ -3308,6 +3392,9 @@ msgid "Ajax Error" msgstr "Błąd AJAX" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nowy wpis" @@ -3615,7 +3702,6 @@ msgid "Password saved." msgstr "Zapisano hasło." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Ścieżki" @@ -3812,6 +3898,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Nigdy" @@ -3968,18 +4055,23 @@ 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). -#, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Opisz siebie i swoje zainteresowania w %d znaku" 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. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +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: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3992,7 +4084,9 @@ msgid "Location" msgstr "Położenie" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Gdzie jesteś, np. \"miasto, województwo (lub region), kraj\"" #. TRANS: Checkbox label in form for profile settings. @@ -4000,6 +4094,9 @@ msgid "Share my current location when posting notices" msgstr "Podziel się swoim obecnym położeniem podczas wysyłania wpisów" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Znaczniki" @@ -4036,6 +4133,28 @@ msgid "" msgstr "" "Automatycznie subskrybuj każdego, kto mnie subskrybuje (najlepsze dla botów)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Subskrypcje" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "Można obserwować tylko osoby." + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4067,7 +4186,8 @@ msgstr "Nieprawidłowy znacznik: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -msgid "Could not update user for autosubscribe." +#, fuzzy +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Nie można zaktualizować użytkownika do automatycznej subskrypcji." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4075,6 +4195,7 @@ msgid "Could not save location prefs." msgstr "Nie można zapisać preferencji położenia." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Nie można zapisać znaczników." @@ -4105,6 +4226,7 @@ msgid "Public timeline, page %d" msgstr "Publiczna oś czasu, strona %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Publiczna oś czasu" @@ -4286,10 +4408,6 @@ msgstr "Zażądano przywracania hasła" msgid "Password saved" msgstr "Zapisano hasło." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Nieznane działanie" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "6 lub więcej znaków, i nie zapomnij go." @@ -4384,6 +4502,7 @@ msgid "You cannot register if you do not agree to the license." msgstr "" "Nie można się zarejestrować, jeśli nie zgadzasz się z warunkami licencji." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Adres e-mail już istnieje." @@ -4422,27 +4541,7 @@ msgstr "Używane tylko do aktualizacji, ogłoszeń i przywracania hasła" msgid "Longer name, preferably your \"real\" name." msgstr "Dłuższa nazwa, najlepiej twoje \"prawdziwe\" imię i nazwisko" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Opisz siebie i swoje zainteresowania w %d znaku" -msgstr[1] "Opisz siebie i swoje zainteresowania w %d znakach" -msgstr[2] "Opisz siebie i swoje zainteresowania w %d znakach" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Opisz się i swoje zainteresowania" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Gdzie jesteś, np. \"miasto, województwo (lub region), kraj\"" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4562,6 +4661,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "Adres URL profilu na innej, zgodnej usłudze mikroblogowania" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4596,15 +4697,8 @@ msgstr "Tylko zalogowani użytkownicy mogą powtarzać wpisy." msgid "No notice specified." msgstr "Nie podano wpisu." -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "Nie można powtórzyć własnego wpisu." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Już powtórzono ten wpis." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Powtórzono" @@ -4615,6 +4709,8 @@ msgstr "Powtórzono." #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Odpowiedzi na %s" @@ -4726,6 +4822,7 @@ msgid "System error uploading file." msgstr "Błąd systemu podczas wysyłania pliku." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." msgstr "Nie jest kanałem Atom." @@ -4768,6 +4865,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Nie można ograniczać użytkowników na tej witrynie." @@ -4967,6 +5065,8 @@ msgstr "Członkowie" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Brak)" @@ -5049,27 +5149,32 @@ msgstr "Wiadomość do użytkownika %1$s na %2$s" msgid "Message from %1$s on %2$s" msgstr "Wiadomość od użytkownika %1$s na %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "Komunikator nie jest dostępny." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Usunięto wpis." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" +#, fuzzy, php-format +msgid "Notices by %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, %3$d is the page number. -#, php-format -msgid "%1$s tagged %2$s, page %3$d" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%1$s nadał etykietę %2$s, strona %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, strona %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Wpisy ze znacznikiem %1$s, strona %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5158,6 +5263,7 @@ msgid "Repeat of %s" msgstr "Powtórzenia %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Nie można wyciszać użytkowników na tej witrynie." @@ -5457,51 +5563,72 @@ msgstr "" msgid "No code entered." msgstr "Nie podano kodu" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Migawki" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Zarządzaj konfiguracją migawki" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Nieprawidłowa wartość wykonania migawki." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "Częstotliwość migawek musi być liczbą." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "Nieprawidłowy adres URL zgłaszania migawek." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Migawki" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Losowo podczas trafienia WWW" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "Jako zaplanowane zadanie" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Migawki danych" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Kiedy wysyłać dane statystyczne na serwery status.net" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Częstotliwość" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Migawki będą wysyłane co N trafień WWW" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "Adres URL zgłaszania" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Migawki będą wysyłane na ten adres URL" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Zapisz" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Zapisz ustawienia migawki" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5513,6 +5640,27 @@ msgstr "Nie jesteś subskrybowany do tego profilu." msgid "Could not save subscription." msgstr "Nie można zapisać subskrypcji." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s członków grupy" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Członkowie grupy %1$s, strona %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Lista użytkowników znajdujących się w tej grupie." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5636,31 +5784,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Wpisy ze znacznikiem %1$s, strona %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Kanał wpisów dla znacznika %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Kanał wpisów dla znacznika %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Kanał wpisów dla znacznika %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Brak parametru identyfikatora." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Znacznik %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Profil użytkownika" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Znacznik użytkownika" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5669,16 +5829,25 @@ msgstr "" "Znaczniki dla tego użytkownika (litery, liczby, -, . i _), oddzielone " "przecinkami lub spacjami" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Można nadawać znaczniki tylko osobom, których subskrybujesz lub którzy " "subskrybują ciebie." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Znaczniki" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Użyj tego formularza, aby dodać znaczniki subskrybentom lub subskrypcjom." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Nie ma takiego znacznika." @@ -5686,25 +5855,31 @@ msgstr "Nie ma takiego znacznika." msgid "You haven't blocked that user." msgstr "Ten użytkownik nie został zablokowany." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Użytkownik nie jest ograniczony." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Użytkownik nie jest wyciszony." -msgid "No profile ID in request." -msgstr "Brak identyfikatora profilu w żądaniu." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Zrezygnowano z subskrypcji" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "Licencja nasłuchiwanego strumienia \"%1$s\" nie jest zgodna z licencją " "witryny \"%2$s\"." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Ustawienia komunikatora" @@ -5719,10 +5894,12 @@ msgstr "Zarządzaj różnymi innymi opcjami." msgid " (free service)" msgstr " (wolna usługa)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Brak" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5734,15 +5911,19 @@ msgstr "Skracanie adresów URL za pomocą" msgid "Automatic shortening service to use." msgstr "Używana automatyczna usługa skracania." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5751,17 +5932,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Adres URL usługi skracania jest za długi (maksymalnie 50 znaków)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Nieprawidłowa treść wpisu." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Nieprawidłowa treść wpisu." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Użytkownik" @@ -5784,6 +5969,9 @@ msgstr "Nieprawidłowy tekst powitania. Maksymalna długość to 255 znaków." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Nieprawidłowa domyślna subskrypcja: \"%1$s\" nie jest użytkownikiem." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profil" @@ -5836,7 +6024,7 @@ msgstr "Zapisz ustawienia użytkownika" msgid "Authorize subscription" msgstr "Upoważnij subskrypcję" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5849,18 +6037,21 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" msgstr "Zaakceptuj" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Subskrybuj tego użytkownika" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5879,9 +6070,10 @@ msgstr "Brak żądania upoważnienia." msgid "Subscription authorized" msgstr "Upoważniono subskrypcję" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "Subskrypcja została upoważniona, ale nie przekazano zwrotnego adresu URL. " @@ -5891,9 +6083,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Odrzucono subskrypcję" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "Subskrypcja została odrzucona, ale nie przekazano zwrotnego adresu URL. " @@ -5923,16 +6116,6 @@ msgstr "Adres URI nasłuchującego \"%s\" jest lokalnym użytkownikiem." msgid "Profile URL \"%s\" is for a local user." msgstr "Adres URL profilu \"%s\" jest dla lokalnego użytkownika." -#. 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. -#, 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. #, fuzzy, php-format @@ -6037,7 +6220,6 @@ msgid "Contributors" msgstr "Współtwórcy" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licencja" @@ -6078,7 +6260,6 @@ msgstr "" "License); jeśli nie - proszę odwiedzić stronę internetową %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Wtyczki" @@ -6176,18 +6357,6 @@ msgstr[2] "" msgid "Invalid filename." msgstr "Nieprawidłowa nazwa pliku." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Dołączenie do grupy nie powiodło się." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Nie jest częścią grupy." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Opuszczenie grupy nie powiodło się." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6200,6 +6369,18 @@ msgstr "Identyfikator profilu %s jest nieprawidłowy." msgid "Group ID %s is invalid." msgstr "Identyfikator grupy %s jest nieprawidłowy." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Dołączenie do grupy nie powiodło się." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Nie jest częścią grupy." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Opuszczenie grupy nie powiodło się." + #. TRANS: Activity title. msgid "Join" msgstr "Dołącz" @@ -6274,6 +6455,35 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Zabroniono ci wysyłania wpisów na tej witrynie." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Nie można powtórzyć własnego wpisu." + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "Nie można powtórzyć własnego wpisu." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Nie można powtórzyć własnego wpisu." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Nie można powtórzyć własnego wpisu." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Już powtórzono ten wpis." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Użytkownik nie posiada ostatniego wpisu." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6299,16 +6509,13 @@ msgstr "Nie można zapisać odpowiedzi na %1$d, %2$d." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6331,6 +6538,7 @@ msgid "Unable to save tag." msgstr "Nie można zapisać etykiety." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Zablokowano subskrybowanie." @@ -6358,7 +6566,9 @@ msgstr "Nie można usunąć tokenu subskrypcji OMB." msgid "Could not delete subscription." msgstr "Nie można usunąć subskrypcji." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Obserwuj" @@ -6427,18 +6637,24 @@ msgid "User deletion in progress..." msgstr "Trwa usuwanie użytkownika..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Zmodyfikuj ustawienia profilu" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Edycja" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Wyślij bezpośrednią wiadomość do tego użytkownika" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Wiadomość" @@ -6460,10 +6676,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Subskrybuj" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6489,7 +6701,9 @@ msgstr "Odpowiedz" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6612,8 +6826,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Brak zawartości dla wpisu %s." -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "Brak użytkownika %s." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6660,76 +6875,129 @@ msgstr "saveSettings() nie jest zaimplementowane." msgid "Unable to delete design setting." msgstr "Nie można usunąć ustawienia wyglądu." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Strona domowa" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Strona domowa" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Administrator" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Podstawowa konfiguracja witryny" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Witryna" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Konfiguracja wyglądu" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Wygląd" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Konfiguracja użytkownika" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Użytkownik" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Konfiguracja dostępu" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Dostęp" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Konfiguracja ścieżek" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Ścieżki" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Konfiguracja sesji" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Sesje" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Zmodyfikuj wpis witryny" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Wpis witryny" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Konfiguracja migawek" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Snapshots" +msgstr "Migawki" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Ustaw licencję witryny" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licencja" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Konfiguracja ścieżek" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Wtyczki" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6740,6 +7008,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "Brak aplikacji dla tego klucza klienta." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6773,9 +7042,11 @@ msgstr "Nie można odnaleźć profilu i aplikacji powiązanych z tokenem żądan msgid "Could not issue access token." msgstr "Nie można wywołać tokenu żądania." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Błąd bazy danych podczas wprowadzania użytkownika aplikacji OAuth." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "Błąd bazy danych podczas aktualizowania użytkownika aplikacji OAuth." @@ -6870,6 +7141,17 @@ msgstr "" msgid "Cancel" msgstr "Anuluj" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Zapisz" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Nieznane działanie" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr " autorstwa " @@ -6892,11 +7174,12 @@ msgstr "Zaakceptowano %1$s - dostęp \"%2$s\"." msgid "Access token starting with: %s" msgstr "Token dostępu rozpoczynający się od: %s" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Unieważnij" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "Element \"author\" musi zawierać element \"name\"." @@ -6933,6 +7216,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Wszystkie subskrypcje" + #. TRANS: Title for command results. msgid "Command results" msgstr "Wyniki polecenia" @@ -6942,6 +7231,7 @@ msgid "AJAX error" msgstr "Błąd AJAX" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Zakończono polecenie" @@ -7062,6 +7352,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7083,10 +7375,6 @@ msgstr "Błąd podczas wysyłania bezpośredniej wiadomości." msgid "Notice from %s repeated." msgstr "Powtórzono wpis od użytkownika %s." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Błąd podczas powtarzania wpisu." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7394,13 +7682,19 @@ msgstr "Należy uruchomić instalator, aby to naprawić." msgid "Go to the installer." msgstr "Przejdź do instalatora." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Błąd bazy danych" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Publiczny" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Usuń" @@ -7408,6 +7702,7 @@ msgstr "Usuń" msgid "Delete this user" msgstr "Usuń tego użytkownika" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Zapisz wygląd" @@ -7420,14 +7715,6 @@ 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. -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. -msgid "Reset back to default" -msgstr "Przywróć domyślne ustawienia" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7435,7 +7722,7 @@ msgstr "Wyślij plik" #. TRANS: Instructions for form on profile design page. msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "Można wysłać osobisty obraz tła. Maksymalny rozmiar pliku to 2 MB." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. @@ -7448,15 +7735,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Wyłączone" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "Nie można zaktualizować wyglądu." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Przywrócono domyślny wygląd." @@ -7488,46 +7766,62 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Dodaj do ulubionych" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -msgid "Not an atom feed." -msgstr "Nie jest kanałem Atom." - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "Brak autora w kanale." -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +#, fuzzy +msgid "Cannot import without a user." msgstr "Nie można zaimportować bez użytkownika." #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Kanały" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Wszystko" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Wybierz znacznik do filtrowania" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Znacznik" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Wybierz znacznik do ograniczonej listy" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Przejdź" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Nadaj użytkownikowi rolę \"%s\"" @@ -7595,9 +7889,11 @@ msgstr[2] "" msgid "Membership policy" msgstr "Członek od" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7665,6 +7961,7 @@ msgid "%s blocked users" msgstr "%s zablokowanych użytkowników" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Administrator" @@ -7768,23 +8065,46 @@ msgstr[0] "%d B" msgstr[1] "%d B" msgstr[2] "%d B" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Nieznane źródło skrzynki odbiorczej %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Dołącz" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Opuść" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Zaloguj się" @@ -7846,6 +8166,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "Użytkownik %1$s obserwuje teraz twoje wpisy na %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "Użytkownik %1$s obserwuje teraz twoje wpisy na %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8139,9 +8473,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Tylko użytkownik może czytać swoje skrzynki pocztowe." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8150,32 +8486,48 @@ msgstr "" "rozmowę z innymi użytkownikami. Inni mogą wysyłać ci wiadomości tylko dla " "twoich oczu." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Odebrane" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Wiadomości przychodzące" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Wysłane" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Wysłane wiadomości" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Nie można przetworzyć wiadomości." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "To nie jest zarejestrowany użytkownik." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "To nie jest przychodzący adres e-mail." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Przychodzący e-mail nie jest dozwolony." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Nieobsługiwany typ wiadomości: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8227,10 +8579,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "\"%s\" nie jest obsługiwanym typem pliku na tym serwerze." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Wyślij bezpośredni wpis" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "Wybierz odbiorcę:" @@ -8238,32 +8593,68 @@ msgstr "Wybierz odbiorcę:" msgid "No mutual subscribers." msgstr "Brak wzajemnych subskrybentów." +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Do" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Wyślij" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Wiadomość" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "z" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "WWW" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "E-mail" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Brak uprawnienia do usunięcia tej grupy." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Nie usuwaj tego użytkownika" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8312,68 +8703,95 @@ msgstr "" "Pobieranie danych geolokalizacji trwa dłużej niż powinno, proszę spróbować " "ponownie później" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Wpisy" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "Północ" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "Południe" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "Wschód" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "Zachód" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "w" -msgid "web" -msgstr "WWW" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "w rozmowie" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Powtórzone przez" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Odpowiedz na ten wpis" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Odpowiedz" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Usuń ten wpis" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Powtórzono wpis" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Szturchnij tego użytkownika" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Szturchnij" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Wyślij szturchnięcie do tego użytkownika" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Błąd podczas wprowadzania nowego profilu." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Błąd podczas wprowadzania awatara." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Błąd podczas wprowadzania zdalnego profilu." @@ -8381,18 +8799,51 @@ msgstr "Błąd podczas wprowadzania zdalnego profilu." msgid "Duplicate notice." msgstr "Podwójny wpis." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Nie można wprowadzić nowej subskrypcji." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Profil grupy" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Odpowiedzi" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Ulubione" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Użytkownik" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Wiadomość" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Wiadomości przychodzące" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8416,31 +8867,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Ustawienia SMS" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Zmień ustawienia profilu" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Konfiguracja użytkownika" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "Wyloguj się" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Wyloguj się z witryny" -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "Zaloguj się na witrynie" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "Wyszukaj" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Przeszukaj witrynę" #. TRANS: H2 text for user subscription statistics. @@ -8487,30 +8952,53 @@ msgstr "Wszystkie grupy" msgid "Unimplemented method." msgstr "Niezaimplementowana metoda." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grupy" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Grupy użytkowników" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Ostatnie znaczniki" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Ostatnie znaczniki" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Znane" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Popularne" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Brak parametrów powrotu." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Powtórzyć ten wpis?" -msgid "Yes" -msgstr "Tak" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Powtórz ten wpis" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Unieważnij rolę \"%s\" tego użytkownika" @@ -8519,9 +9007,13 @@ msgstr "Unieważnij rolę \"%s\" tego użytkownika" msgid "Page not found." msgstr "Nie odnaleziono strony." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Ogranicz" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Ogranicz tego użytkownika" @@ -8539,128 +9031,273 @@ msgctxt "BUTTON" msgid "Search" msgstr "Wyszukaj" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Osoby" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Znajdź osoby na tej witrynie" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Wpisy" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Przeszukaj zawartość wpisów" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Znajdź grupy na tej witrynie" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "Pomoc" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "O usłudze" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "FAQ" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "TOS" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Prywatność" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Kod źródłowy" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Wersja" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Kontakt" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Odznaka" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Sekcja bez nazwy" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Więcej..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Ustawienia SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Zmień ustawienia profilu" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Awatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Wyślij awatar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Hasło" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Zmień hasło" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "E-mail" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Zmień obsługę adresu e-mail" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Wygląd profilu" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "Adres URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "IM" +msgstr "Komunikator" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Aktualizacje przez komunikator" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Aktualizacje przez wiadomości SMS" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" msgid "Connections" msgstr "Połączenia" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Upoważnione połączone aplikacje" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Wycisz" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Wycisz tego użytkownika" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Subskrypcje" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Osoby %s subskrybowane do" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Subskrybenci" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Osoby subskrybowane do %s" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Grupy %s są członkiem" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "Zaproś" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Zaproś przyjaciół i kolegów do dołączenia do ciebie na %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Subskrybuj tego użytkownika" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Chmura znaczników osób, które same sobie nadały znaczniki" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Chmura znaczników osób ze znacznikami" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Brak" @@ -8668,19 +9305,27 @@ msgstr "Brak" msgid "Invalid theme name." msgstr "Nieprawidłowa nazwa motywu." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" "Ten serwer nie może obsługiwać wysyłania motywu bez obsługi archiwów zip." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Brak pliku motywu lub wysłanie nie powiodło się." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Zapisanie motywu nie powiodło się." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Nieprawidłowy motyw: błędna struktura katalogów." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8695,9 +9340,12 @@ msgstr[2] "" "Wysłany motyw jest za duży, musi być mniejszy niż %d bajtów po " "zdekompresowaniu." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Nieprawidłowe archiwum motywu: brak pliku css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -8705,24 +9353,22 @@ msgstr "" "Motyw zawiera nieprawidłowy plik lub nazwę katalogu. Należy używać tylko " "liter, cyfr, podkreślników i znaku minus z zestawu ASCII." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" "Temat zawiera niebezpieczne rozszerzenie nazwy pliku, co może stanowić " "zagrożenie." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Motyw zawiera plik typu \\\".%s\\\", który nie jest dozwolony." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Błąd podczas otwierania archiwum motywu." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Wpisy" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -8754,8 +9400,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Dodaj ten wpis do ulubionych" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Usuń ten wpis z ulubionych" @@ -8768,8 +9415,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Już powtórzono ten wpis." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Już powtórzono ten wpis." @@ -8780,6 +9428,28 @@ msgstr[2] "Już powtórzono ten wpis." msgid "Top posters" msgstr "Najczęściej wysyłający wpisy" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Do" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Nieznany czasownik: \"%s\"." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8902,5 +9572,5 @@ msgstr "Nieprawidłowy kod XML, brak głównego XRD." msgid "Getting backup from file '%s'." msgstr "Pobieranie kopii zapasowej z pliku \"%s\"." -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Wiadomość jest za długa - maksymalnie %1$d znaków, wysłano %2$d." +#~ msgid "Couldn't update your design." +#~ msgstr "Nie można zaktualizować wyglądu." diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 805e361281..91c2714af2 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -17,20 +17,54 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:07+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:13+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Desconhecida" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Acção desconhecida" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Acesso" @@ -82,7 +116,9 @@ msgstr "Gravar configurações de acesso" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -94,6 +130,7 @@ msgstr "Gravar" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Página não foi encontrada." @@ -112,6 +149,7 @@ msgstr "Página não foi encontrada." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -136,8 +174,11 @@ msgstr "Página não foi encontrada." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Utilizador não foi encontrado." @@ -150,7 +191,15 @@ msgstr "%1$s e amigos, página %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s e amigos" @@ -221,28 +270,14 @@ msgstr "Você e seus amigos" msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualizações de %1$s e amigos no %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "Método da API não encontrado." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -277,6 +312,7 @@ msgstr "Não foi possível actualizar o utilizador." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Utilizador não tem perfil." @@ -316,6 +352,8 @@ msgstr "Não foi possível gravar as configurações do estilo." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Não foi possível actualizar o seu estilo." @@ -685,9 +723,12 @@ msgstr "Não tem autorização." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Ocorreu um problema com a sua sessão. Por favor, tente novamente." @@ -837,16 +878,6 @@ msgstr "Não pode apagar o estado de outro utilizador." msgid "No such notice." msgstr "Nota não foi encontrada." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Não pode repetir a sua própria nota." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Já repetiu essa nota." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -888,8 +919,11 @@ msgstr "Apagar nota %d" msgid "Client must provide a 'status' parameter with a value." msgstr "O cliente tem de fornecer um parâmetro 'status' com um valor." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -902,6 +936,8 @@ msgstr "Método da API não encontrado." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -971,6 +1007,8 @@ msgstr "%1$s actualizações em resposta a actualizações de %2$s / %3$s." msgid "Repeats of %s" msgstr "Repetições de %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%1$s avisos que %2$s / %3$s repetiu." @@ -985,6 +1023,8 @@ msgstr "Notas categorizadas com %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualizações categorizadas com %1$s em %2$s!" @@ -1099,11 +1139,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Perfil não existe." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1111,10 +1153,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Uma lista dos utilizadores neste grupo." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1139,6 +1183,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Uma lista dos utilizadores neste grupo." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Não foi possível adicionar %1$s ao grupo %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Estado de %1$s em %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Subscrição autorizada" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Confirmação do mensageiro instantâneo cancelada." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1175,8 +1247,8 @@ msgstr "Já nos favoritos" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "%s membros do grupo" #. TRANS: Subtitle for group membership feed. @@ -1189,8 +1261,7 @@ msgstr "Os grupos %1$s são membros em %2$s" msgid "Cannot add someone else's membership." msgstr "Não é possível adicionar alguém já subscrito." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "Só podes tratar de participar nas atividades." @@ -1303,6 +1374,7 @@ msgstr "Pode carregar o seu avatar pessoal. O tamanho máximo do ficheiro é %s. #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Utilizador sem perfil correspondente." @@ -1329,6 +1401,7 @@ msgstr "Antevisão" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Apagar" @@ -1440,6 +1513,7 @@ msgstr "Não bloquear este utilizador." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Sim" @@ -1496,6 +1570,32 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s deixou o grupo %2$s" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Não iniciou sessão." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "O pedido não tem a identificação do perfil." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Não foi encontrado um perfil com essa identificação." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Subscrição cancelada" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Sem código de confimação." @@ -1633,6 +1733,7 @@ msgstr "Aplicação não foi encontrada." msgid "You are not the owner of this application." msgstr "Não é o proprietário desta aplicação." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Ocorreu um problema com a sua sessão." @@ -1703,24 +1804,6 @@ msgstr "Não apagues este grupo." msgid "Delete this group." msgstr "Apagar este grupo." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Não iniciou sessão." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1911,14 +1994,17 @@ msgid "Use defaults" msgstr "Usar padrão" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." msgstr "Restaurar designs padrão." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "Repor para o padrão." #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." msgstr "Salvar o design." @@ -2254,6 +2340,7 @@ msgstr "Retirar dos favoritos." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Notas populares" @@ -2294,6 +2381,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Notas favoritas de %s" @@ -2306,6 +2395,7 @@ msgstr "Actualizações marcadas por %1$s em %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Utilizadores em destaque" @@ -2367,6 +2457,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Serviço remoto usa uma versão desconhecida do protocolo OMB." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Erro ao actualizar o perfil remoto." @@ -2404,14 +2495,6 @@ msgstr "O utilizador já tem esta função." msgid "No profile specified." msgstr "Não foi especificado um perfil." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Não foi encontrado um perfil com essa identificação." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3037,6 +3120,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privado" @@ -3273,6 +3357,9 @@ msgid "Ajax Error" msgstr "Erro do Ajax" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nota nova" @@ -3577,7 +3664,6 @@ msgid "Password saved." msgstr "Senha gravada." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Localizações" @@ -3781,6 +3867,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Nunca" @@ -3941,17 +4028,22 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "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. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +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: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3964,7 +4056,9 @@ msgid "Location" msgstr "Localidade" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Onde está, por ex. \"Cidade, Região, País\"" #. TRANS: Checkbox label in form for profile settings. @@ -3972,6 +4066,9 @@ msgid "Share my current location when posting notices" msgstr "Compartilhar a minha localização presente ao publicar notas" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Categorias" @@ -4006,6 +4103,28 @@ msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "Subscrever automaticamente quem me subscreva (óptimo para não-humanos)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Subscrições" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "Só podes seguir pessoas." + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4038,7 +4157,7 @@ msgstr "Categoria inválida: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Não foi possível actualizar o utilizador para subscrição automática." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4047,6 +4166,7 @@ msgid "Could not save location prefs." msgstr "Não foi possível gravar as preferências de localização." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Não foi possível gravar as categorias." @@ -4078,6 +4198,7 @@ msgid "Public timeline, page %d" msgstr "Notas públicas, página %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Notas públicas" @@ -4261,10 +4382,6 @@ msgstr "Solicitada recuperação da senha" msgid "Password saved" msgstr "Senha gravada" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Acção desconhecida" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4362,6 +4479,7 @@ msgstr "Registo não é permitido." msgid "You cannot register if you do not agree to the license." msgstr "Não se pode registar se não aceita a licença." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Correio electrónico já existe." @@ -4400,26 +4518,7 @@ msgstr "Usado apenas para actualizações, anúncios e recuperação da senha" msgid "Longer name, preferably your \"real\" name." msgstr "Nome mais longo, de preferência o seu nome \"verdadeiro\"" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -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: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Descreva-se e aos seus interesses" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Onde está, por ex. \"Cidade, Região, País\"" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4544,6 +4643,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "URL do seu perfil noutro serviço de microblogues compatível" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4580,16 +4681,8 @@ msgstr "Só utilizadores com sessão iniciada podem repetir notas." msgid "No notice specified." msgstr "Nota não foi especificada." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Não pode repetir a sua própria nota." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Já repetiu essa nota." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Repetida" @@ -4600,6 +4693,8 @@ msgstr "Repetida!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Respostas a %s" @@ -4713,6 +4808,7 @@ msgid "System error uploading file." msgstr "Ocorreu um erro de sistema ao transferir o ficheiro." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Todos os membros" @@ -4753,6 +4849,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Não pode impedir notas públicas neste site." @@ -4952,6 +5049,8 @@ msgstr "Membros" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Nenhum)" @@ -5034,27 +5133,32 @@ msgstr "Mensagem para %1$s a %2$s" msgid "Message from %1$s on %2$s" msgstr "Mensagem de %1$s a %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "MI não está disponível." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Avatar actualizado." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s etiquetado 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, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Notas categorizadas com %1$s, página %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, página %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Notas categorizadas com %1$s, página %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5142,6 +5246,7 @@ msgid "Repeat of %s" msgstr "Repetições de %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Não pode silenciar utilizadores neste site." @@ -5442,51 +5547,72 @@ msgstr "" msgid "No code entered." msgstr "Nenhum código introduzido." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Instantâneos" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Alterar a configuração do instantâneo" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Valor de criação do instantâneo é inválido." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "Frequência dos instantâneos estatísticos tem de ser um número." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "URL para onde enviar instantâneos é inválida" +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Instantâneos" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Aleatoriamente, durante o acesso pela internet" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "Num processo agendado" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Instantâneos dos dados" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Quando enviar dados estatísticos para os servidores do status.net" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frequência" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Instantâneos serão enviados uma vez a cada N acessos da internet" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL para relatórios" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Instantâneos serão enviados para esta URL" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Gravar" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Gravar configurações do instantâneo" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5498,6 +5624,27 @@ msgstr "Não subscreveu esse perfil." msgid "Could not save subscription." msgstr "Não foi possível gravar a subscrição." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s membros do grupo" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Membros do grupo %1$s, página %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Uma lista dos utilizadores neste grupo." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "Não pode subscrever um perfil remoto OMB 0.1 com esta operação." @@ -5620,31 +5767,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Notas categorizadas com %1$s, página %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Fonte de notas para a categoria %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Fonte de notas para a categoria %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Fonte de notas para a categoria %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Argumento de identificação (ID) em falta." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Categoria %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Perfil" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Categorizar utilizador" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5653,15 +5812,24 @@ msgstr "" "Categorias para este utilizador (letras, números, ., _), separadas por " "vírgulas ou espaços" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "Só pode categorizar pessoas que subscreve ou os seus subscritores." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Categorias" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Use este formulário para categorizar os seus subscritores ou os que " "subscreve." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Categoria não foi encontrada." @@ -5669,25 +5837,31 @@ msgstr "Categoria não foi encontrada." msgid "You haven't blocked that user." msgstr "Não bloqueou esse utilizador." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Utilizador não está impedido de criar notas públicas." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Utilizador não está silenciado." -msgid "No profile ID in request." -msgstr "O pedido não tem a identificação do perfil." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Subscrição cancelada" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "Licença ‘%1$s’ da listenee stream não é compatível com a licença ‘%2$s’ do " "site." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Configurações do IM" @@ -5702,9 +5876,11 @@ msgstr "Gerir várias outras opções." msgid " (free service)" msgstr " (serviço livre)" +#. TRANS: Default value for URL shortening settings. msgid "[none]" msgstr "[nenhum]" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "[interno]" @@ -5716,15 +5892,19 @@ msgstr "Encurtar URLs com" msgid "Automatic shortening service to use." msgstr "Serviço de encurtamento que será usado automaticamente" +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5734,17 +5914,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Serviço de encurtamento de URLs demasiado extenso (máx. 50 caracteres)" -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Conteúdo da nota é inválido." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Conteúdo da nota é inválido." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Utilizador" @@ -5768,6 +5952,9 @@ msgstr "Texto de boas-vindas inválido. Tamanho máx. é 255 caracteres." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Subscrição predefinida é inválida: '%1$s' não é utilizador." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Perfil" @@ -5821,7 +6008,7 @@ msgstr "Gravar configurações do site" msgid "Authorize subscription" msgstr "Autorizar subscrição" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5834,17 +6021,20 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "Aceitar" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Subscrever este utilizador" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "Rejeitar" @@ -5862,9 +6052,11 @@ msgstr "Não há pedido de autorização!" msgid "Subscription authorized" msgstr "Subscrição autorizada" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "A subscrição foi autorizada, mas não foi enviada nenhuma URL de retorno. " @@ -5875,9 +6067,11 @@ msgstr "" msgid "Subscription rejected" msgstr "Subscrição rejeitada" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "A subscrição foi rejeitada, mas não foi enviada nenhuma URL de retorno. " @@ -5908,16 +6102,6 @@ msgstr "URI do ouvido ‘%s’ é um utilizador local." msgid "Profile URL \"%s\" is for a local user." msgstr "A URL ‘%s’ do perfil é de um utilizador local." -#. 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. -#, 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. #, fuzzy, php-format @@ -6022,7 +6206,6 @@ msgid "Contributors" msgstr "Colaboradores" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licença" @@ -6060,7 +6243,6 @@ msgstr "" "General Public License. Se não a tiver recebido, consulte %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Plugins" @@ -6148,18 +6330,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "Nome de ficheiro inválido." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Entrada no grupo falhou." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Não faz parte do grupo." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Saída do grupo falhou." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6172,6 +6342,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "Erro ao guardar utilizador; inválido." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Entrada no grupo falhou." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Não faz parte do grupo." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Saída do grupo falhou." + #. TRANS: Activity title. msgid "Join" msgstr "Juntar-me" @@ -6246,6 +6428,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Está proibido de publicar notas neste site." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Não pode repetir a sua própria nota." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Não pode repetir a sua própria nota." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Não pode repetir a sua própria nota." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Não pode repetir a sua própria nota." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Já repetiu essa nota." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Utilizador não tem nenhuma última nota." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6272,16 +6484,13 @@ msgstr "Não foi possível gravar a informação do grupo local." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6306,6 +6515,7 @@ msgid "Unable to save tag." msgstr "Não foi possível gravar a categoria." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Foi bloqueado de fazer subscrições" @@ -6333,9 +6543,11 @@ msgstr "Não foi possível apagar a chave OMB da subscrição." msgid "Could not delete subscription." msgstr "Não foi possível apagar a subscrição." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "Permitir" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6401,18 +6613,24 @@ msgid "User deletion in progress..." msgstr "A apagar o utilizador..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Editar configurações do perfil" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Editar" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Enviar mensagem directa a este utilizador" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Mensagem" @@ -6434,10 +6652,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderador" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Subscrever" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6463,7 +6677,9 @@ msgstr "Responder" msgid "Write a reply..." msgstr "Escrever uma resposta..." +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6589,8 +6805,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Procurar no conteúdo das notas" -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "Utilizador %s não foi encontrado." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6637,75 +6854,128 @@ msgstr "saveSettings() não implementado." msgid "Unable to delete design setting." msgstr "Não foi possível apagar a configuração do estilo." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Página pessoal" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Página pessoal" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Gestor" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Configuração básica do site" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Site" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Configuração do estilo" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Estilo" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Configuração do utilizador" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Utilizador" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Configuração de acesso" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Acesso" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Configuração das localizações" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Localizações" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Configuração das sessões" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Sessões" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Editar aviso do site" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Aviso do site" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Configuração dos instântaneos" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Snapshots" +msgstr "Instantâneos" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Conjunto de licenças do site" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licença" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Plugins configuration" msgstr "Configuração dos plugins" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Plugins" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "API requer acesso de leitura e escrita, mas só tem acesso de leitura." @@ -6714,6 +6984,7 @@ msgstr "API requer acesso de leitura e escrita, mas só tem acesso de leitura." msgid "No application for that consumer key." msgstr "Nenhuma aplicação para essa chave de consumidor." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6749,9 +7020,11 @@ msgstr "" msgid "Could not issue access token." msgstr "Não foi possível emitir a ficha de acesso." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Erro na base de dados ao inserir o utilizador da aplicação OAuth." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "" "Erro na actualização da base de dados ao inserir o utilizador da aplicação " @@ -6846,6 +7119,17 @@ msgstr "Acesso por omissão para esta aplicação: leitura ou leitura e escrita" msgid "Cancel" msgstr "Cancelar" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Gravar" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Acção desconhecida" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "por " @@ -6868,11 +7152,12 @@ msgstr "Aprovado a %1$s - acesso \"%2$s\"." msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Retirar" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -6912,6 +7197,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Todas as subscrições" + #. TRANS: Title for command results. msgid "Command results" msgstr "Resultados do comando" @@ -6922,6 +7213,7 @@ msgid "AJAX error" msgstr "Erro do Ajax" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Comando terminado" @@ -7042,6 +7334,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7062,10 +7356,6 @@ msgstr "Erro no envio da mensagem directa." msgid "Notice from %s repeated." msgstr "Nota de %s repetida." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Erro ao repetir nota." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7370,13 +7660,19 @@ msgstr "Talvez queira correr o instalador para resolver esta questão." msgid "Go to the installer." msgstr "Ir para o instalador." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Erro de base de dados" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Público" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Apagar" @@ -7384,6 +7680,7 @@ msgstr "Apagar" msgid "Delete this user" msgstr "Apagar este utilizador" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Gravar o estilo" @@ -7396,14 +7693,6 @@ 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. -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. -msgid "Reset back to default" -msgstr "Repor predefinição" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7411,10 +7700,10 @@ msgstr "Carregar ficheiro" #. TRANS: Instructions for form on profile design page. msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Pode carregar uma imagem de fundo pessoal. O tamanho máximo do ficheiro é " -"2Mb." +"2MB." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. #, fuzzy @@ -7428,15 +7717,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Desligar" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "Não foi possível actualizar o estilo." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Predefinições do estilo repostas" @@ -7468,47 +7748,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Eleger como favorita" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -#, fuzzy -msgid "Not an atom feed." -msgstr "Todos os membros" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Todas" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Seleccione uma categoria para filtrar" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Categoria" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Escolha uma categoria para reduzir a lista" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Prosseguir" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Atribuir a este utilizador a função \"%s\"" @@ -7570,9 +7864,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Membro desde" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7639,6 +7935,7 @@ msgid "%s blocked users" msgstr "Utilizadores bloqueados de %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Gestor" @@ -7739,23 +8036,46 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Origem da caixa de entrada desconhecida \"%s\"." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Juntar-me" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Afastar-me" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Entrar" @@ -7816,6 +8136,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s está agora a ouvir as suas notas em %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s está agora a ouvir as suas notas em %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8109,9 +8443,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Só o próprio utilizador pode ler a sua caixa de correio." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8120,32 +8456,48 @@ msgstr "" "conversa com outros utilizadores. Outros podem enviar-lhe mensagens, a que " "só você terá acesso." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Recebidas" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Mensagens recebidas" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Enviadas" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Mensagens enviadas" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Não foi possível fazer a análise sintáctica da mensagem." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Não é um utilizador registado." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Desculpe, esse não é o seu endereço para receber correio electrónico." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Desculpe, não lhe é permitido receber correio electrónico." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Tipo de mensagem não suportado: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8199,10 +8551,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "\"%s\" não é um tipo de ficheiro suportado neste servidor." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Enviar uma nota directa" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Seleccione um operador" @@ -8212,32 +8567,68 @@ msgstr "Seleccione um operador" msgid "No mutual subscribers." msgstr "Não subscrito!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Para" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Enviar" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Mensagem" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "a partir de" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Correio" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Não tens permissão para apagar este grupo." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Não apagues este utilizador." -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8285,68 +8676,95 @@ msgstr "" "A obtenção da sua geolocalização está a demorar mais do que o esperado; " "tente novamente mais tarde" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Notas" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "E" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "O" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "coords." -msgid "web" -msgstr "web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "no contexto" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Repetida por" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Responder a esta nota" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Responder" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Apagar esta nota" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Nota repetida" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Tocar este utilizador" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Tocar" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Enviar toque a este utilizador" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Erro ao inserir perfil novo." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Erro ao inserir avatar." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Erro ao inserir perfil remoto." @@ -8354,19 +8772,52 @@ msgstr "Erro ao inserir perfil remoto." msgid "Duplicate notice." msgstr "Nota duplicada." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Não foi possível inserir nova subscrição." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Perfil" + +#. TRANS: Menu item title in personal group navigation menu. #, fuzzy msgid "Your profile" msgstr "Perfil do grupo" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Respostas" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Favoritas" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Utilizador" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Mensagem" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Mensagens recebidas" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8390,30 +8841,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Configurações" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Modificar as suas definições de perfil" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Configuração do utilizador" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "Sair" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Terminar esta sessão" -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "Iniciar uma sessão" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "Pesquisa" -msgid "Search the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Search the site." msgstr "Pesquisar no site" #. TRANS: H2 text for user subscription statistics. @@ -8460,30 +8926,53 @@ msgstr "Todos os grupos" msgid "Unimplemented method." msgstr "Método não implementado." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grupos" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Grupos" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Categorias recentes" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Categorias recentes" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Destaques" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Populares" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Sem argumentos return-to." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Repetir esta nota?" -msgid "Yes" -msgstr "Sim" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Repetir esta nota" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Retirar a função \"%s\" a este utilizador" @@ -8493,9 +8982,13 @@ msgstr "Retirar a função \"%s\" a este utilizador" msgid "Page not found." msgstr "Método da API não encontrado." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Bloquear notas públicas" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Impedir que notas deste utilizador sejam públicas" @@ -8513,128 +9006,276 @@ msgctxt "BUTTON" msgid "Search" msgstr "Pesquisar" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Pessoas" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Procurar pessoas neste site" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Notas" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Procurar no conteúdo das notas" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Procurar grupos neste site" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "Ajuda" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Sobre" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "FAQ" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "Termos" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Privacidade" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Código fonte" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Versão" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Contacto" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Emblema" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Secção sem título" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Mais..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Configurações" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Modificar as suas definições de perfil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Carregar um avatar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Senha" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Modificar a sua senha" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Correio" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Alterar manuseamento de email" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Altere o estilo do seu perfil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "MI" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Actualizações por mensagem instantânea (MI)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Actualizações por SMS" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Ligações" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Aplicações ligadas autorizadas" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Silenciar" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Silenciar este utilizador" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Subscrições" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Pessoas que %s subscreve" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Subscritores" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Pessoas que subscrevem %s" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Grupos de que %s é membro" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "Convidar" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Convidar amigos e colegas para se juntarem a si em %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Subscrever este utilizador" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Nuvem da auto-categorização das pessoas" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Nuvem da sua categorização das pessoas" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Nenhum" @@ -8643,19 +9284,27 @@ msgstr "Nenhum" msgid "Invalid theme name." msgstr "Nome de ficheiro inválido." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" "Este servidor não pode processar uploads de temas sem suporte do formato ZIP." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "O ficheiro do tema não foi localizado ou o upload falhou." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Não foi possível gravar o tema." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Tema inválido: estrutura de directórios incorrecta." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, fuzzy, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8667,9 +9316,12 @@ msgstr[1] "" "O tema carregado é demasiado grande; tem de ter menos de %d bytes " "descomprimido." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Arquivo do tema inválido: falta o ficheiro css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -8677,22 +9329,20 @@ msgstr "" "Tema contém um nome de ficheiro ou de directório inválido. Use somente " "letras ASCII, algarismos, sublinhados e o sinal de menos." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "O tema contém extensões de ficheiro inseguras; pode não ser seguro." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Tema contém um ficheiro do tipo '.%s', o que não é permitido." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Ocorreu um erro ao abrir o arquivo do tema." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Notas" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -8723,8 +9373,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Eleger esta nota como favorita" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Retirar esta nota das favoritas" @@ -8736,8 +9387,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Já repetiu essa nota." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Já repetiu essa nota." @@ -8747,6 +9399,28 @@ msgstr[1] "Já repetiu essa nota." msgid "Top posters" msgstr "Quem mais publica" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Para" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Língua desconhecida \"%s\"." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8865,5 +9539,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Mensagem demasiado extensa - máx. %1$d caracteres, enviou %2$d." +#~ msgid "Couldn't update your design." +#~ msgstr "Não foi possível actualizar o estilo." diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 401d83517f..15664171d4 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -15,21 +15,55 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:08+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:15+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 (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Desconhecido" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Ação desconhecida" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Acesso" @@ -81,7 +115,9 @@ msgstr "Salvar as configurações de acesso" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -93,6 +129,7 @@ msgstr "Salvar" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Esta página não existe." @@ -111,6 +148,7 @@ msgstr "Esta página não existe." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -135,8 +173,11 @@ msgstr "Esta página não existe." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Este usuário não existe." @@ -149,7 +190,15 @@ msgstr "%1$s e amigos, pág. %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s e amigos" @@ -221,28 +270,14 @@ msgstr "Você e amigos" msgid "Updates from %1$s and friends on %2$s!" msgstr "Atualizações de %1$s e amigos no %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "O método da API não foi encontrado!" +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -278,6 +313,7 @@ msgstr "Não foi possível atualizar o usuário." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "O usuário não tem perfil." @@ -317,6 +353,8 @@ msgstr "Não foi possível salvar suas configurações de aparência." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Não foi possível atualizar a sua aparência." @@ -407,7 +445,6 @@ msgid "Recipient user not found." 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). -#, 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 " @@ -667,7 +704,6 @@ msgstr "" #. TRANS: API validation exception thrown when alias is the same as nickname. #. TRANS: Group create form validation error. -#, fuzzy msgid "Alias cannot be the same as nickname." msgstr "O apelido não pode ser igual à identificação." @@ -694,9 +730,12 @@ msgstr "O token solicitado já foi autorizado." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" "Ocorreu um problema com o seu token de sessão. Tente novamente, por favor." @@ -852,16 +891,6 @@ msgstr "Você não pode excluir uma mensagem de outro usuário." msgid "No such notice." msgstr "Essa mensagem não existe." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Você não pode repetir a sua própria mensagem." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Você já repetiu essa mensagem." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -873,7 +902,7 @@ msgstr "O método HTTP não é suportado." #. TRANS: Exception thrown requesting an unsupported notice output format. #. TRANS: %s is the requested output format. -#, fuzzy, php-format +#, php-format msgid "Unsupported format: %s." msgstr "Formato não suportado: %s" @@ -903,8 +932,11 @@ msgstr "Mensagem excluída %d" msgid "Client must provide a 'status' parameter with a value." msgstr "O cliente tem de fornecer um parâmetro 'status' com um valor." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -917,6 +949,8 @@ msgstr "A mensagem pai não foi encontrada." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -976,9 +1010,9 @@ msgstr "Repetida para %s" #. TRANS: Subtitle for API action that shows most recent notices that are repeats in user's inbox. #. TRANS: %1$s is the sitename, %2$s is a user nickname, %3$s is a user profile name. -#, fuzzy, php-format +#, php-format msgid "%1$s notices that were to repeated to %2$s / %3$s." -msgstr "%1$s mensagens em resposta a mensagens de %2$s / %3$s." +msgstr "Mensagens em %1$s que são repetições de %2$s / %3$s." #. TRANS: Title of list of repeated notices of the logged in user. #. TRANS: %s is the nickname of the logged in user. @@ -986,9 +1020,11 @@ msgstr "%1$s mensagens em resposta a mensagens de %2$s / %3$s." msgid "Repeats of %s" msgstr "Repetições de %s" -#, fuzzy, php-format +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. +#, php-format msgid "%1$s notices that %2$s / %3$s has repeated." -msgstr "%1$s marcou a mensagem %2$s como favorita." +msgstr "Mensagens em %1$s que %2$s / %3$s repetiu." #. TRANS: Title for timeline with lastest notices with a given tag. #. TRANS: %s is the tag. @@ -1000,6 +1036,8 @@ msgstr "Mensagens etiquetadas como %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Mensagens etiquetadas como %1$s no %2$s!" @@ -1103,56 +1141,90 @@ msgstr "Nenhum apelido ou identificação." #. TRANS: Client error displayed trying to approve group membership while not logged in. #. TRANS: Client error displayed when trying to leave a group while not logged in. -#, fuzzy msgid "Must be logged in." -msgstr "Você não está autenticado." +msgstr "É necessário estar autenticado." #. TRANS: Client error displayed trying to approve group membership while not a group administrator. #. TRANS: Client error displayed when trying to approve or cancel a group join request without #. TRANS: being a group administrator. msgid "Only group admin can approve or cancel join requests." msgstr "" +"Somente administradores do grupo podem aprovar ou cancelar requisições de " +"associação." #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. -#, fuzzy +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. msgid "Must specify a profile." -msgstr "Perfil não existe." +msgstr "É necessário especificar um perfil." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "%s is not in the moderation queue for this group." -msgstr "Uma lista dos usuários deste grupo." +msgstr "%s não está na fila de moderação para este grupo." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." -msgstr "" +msgstr "Erro interno: não foi recebido nem cancelar nem abortar." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." -msgstr "" +msgstr "Erro interno: foram recebidos simultaneamente cancelar e abortar." #. TRANS: Server error displayed when cancelling a queued group join request fails. #. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed. -#, fuzzy, php-format +#, php-format msgid "Could not cancel request for user %1$s to join group %2$s." -msgstr "Não foi possível associar o usuário %1$s ao grupo %2$s." +msgstr "" +"Não foi possível cancelar a requisição de associação do usuário %1$s para o " +"grupo %2$s." #. TRANS: Title for leave group page after group join request is approved/disapproved. #. TRANS: %1$s is the user nickname, %2$s is the group nickname. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s's request for %2$s" -msgstr "Mensagem de %1$s no %2$s" +msgstr "Requisição de associação de %1$s em %2$s" #. TRANS: Message on page for group admin after approving a join request. msgid "Join request approved." -msgstr "" +msgstr "A requisição de associação foi aprovada." #. TRANS: Message on page for group admin after rejecting a join request. msgid "Join request canceled." +msgstr "A requisição de associação foi cancelada." + +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "%s não está na fila de moderação das suas assinaturas." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." msgstr "" +"Não foi possível cancelar ou aprovar a solicitação de associação do usuário %" +"1$s ao grupo %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Solicitação de %1$s" + +#. TRANS: Message on page for user after approving a subscription request. +msgid "Subscription approved." +msgstr "A assinatura foi aprovada" + +#. TRANS: Message on page for user after rejecting a subscription request. +msgid "Subscription canceled." +msgstr "A assinatura foi cancelada." #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. @@ -1172,7 +1244,6 @@ msgid "Cannot add someone else's subscription." 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. -#, fuzzy msgid "Can only handle favorite activities." msgstr "Só é possível manipular as atividades das Favoritas." @@ -1181,7 +1252,6 @@ msgid "Can only fave notices." msgstr "Só é possível tornar favoritas as mensagens." #. TRANS: Client exception thrown when trying favorite a notice without content. -#, fuzzy msgid "Unknown notice." msgstr "Mensagem desconhecida." @@ -1192,23 +1262,20 @@ msgstr "Já foi adicionada às Favoritas." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, php-format -msgid "%s group memberships" -msgstr "Membros do grupo %s" +msgid "Group memberships of %s" +msgstr "Associações a grupos de %s" #. TRANS: Subtitle for group membership feed. #. TRANS: %1$s is a username, %2$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "Groups %1$s is a member of on %2$s" -msgstr "Grupos dos quais %s é membro" +msgstr "Grupos nos quais %1$s está associado em %2$s" #. TRANS: Client exception thrown when trying subscribe someone else to a group. -#, fuzzy msgid "Cannot add someone else's membership." -msgstr "Não é possível adicionar a assinatura de outra pessoa" +msgstr "Não é possível efetuar a associação de outra pessoa." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. -#, fuzzy +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "Só é possível manipular as atividades de associação." @@ -1229,42 +1296,38 @@ msgid "No such favorite." msgstr "Essa Favorita não existe." #. TRANS: Client exception thrown when trying to remove a favorite notice of another user. -#, fuzzy msgid "Cannot delete someone else's favorite." -msgstr "Não é possível excluir a Favorita de outra pessoa" +msgstr "Não é possível excluir uma Favorita de outra pessoa" #. TRANS: Client exception thrown when trying to show membership of a non-subscribed group -#, fuzzy msgid "Not a member." -msgstr "Não é um membro" +msgstr "Não é membro." #. TRANS: Client exception thrown when deleting someone else's membership. -#, fuzzy msgid "Cannot delete someone else's membership." -msgstr "Não é possível excluir a assinatura de outra pessoa" +msgstr "Não é possível cancelar a associação de outra pessoa." #. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID. #. TRANS: %d is the non-existing profile ID number. -#, fuzzy, php-format +#, php-format msgid "No such profile id: %d." -msgstr "Este id de perfil não existe: %d" +msgstr "Este id de perfil não existe: %d." #. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID. #. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to. -#, fuzzy, php-format +#, php-format msgid "Profile %1$d not subscribed to profile %2$d." -msgstr "O perfil %1$d não assina o perfil %2$d" +msgstr "O perfil %1$d não está assinado pelo perfil %2$d." #. TRANS: Client exception thrown when trying to delete a subscription of another user. -#, fuzzy msgid "Cannot delete someone else's subscription." -msgstr "Não é possível excluir a assinatura de outra pessoa" +msgstr "Não é possível excluir a assinatura de outra pessoa." #. TRANS: Subtitle for Atom subscription feed. #. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "People %1$s has subscribed to on %2$s" -msgstr "Assinantes de %s" +msgstr "Pessoas que %1$s assinou em %2$s" #. TRANS: Client error displayed when not using the follow verb. msgid "Can only handle Follow activities." @@ -1276,15 +1339,15 @@ msgstr "Só é possível assinar pessoas." #. TRANS: Client exception thrown when subscribing to a non-existing profile. #. TRANS: %s is the unknown profile ID. -#, fuzzy, php-format +#, php-format msgid "Unknown profile %s." -msgstr "Perfil desconhecido: %s" +msgstr "Perfil desconhecido: %s." #. TRANS: Client error displayed trying to subscribe to an already subscribed profile. #. TRANS: %s is the profile the user already has a subscription on. -#, fuzzy, php-format +#, php-format msgid "Already subscribed to %s." -msgstr "Já assinado!" +msgstr "%s já está assinado." #. TRANS: Client error displayed trying to get a non-existing attachment. msgid "No such attachment." @@ -1325,6 +1388,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Usuário sem um perfil correspondente" @@ -1351,6 +1415,7 @@ msgstr "Pré-visualizar" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Excluir" @@ -1371,9 +1436,8 @@ msgid "No file uploaded." msgstr "Não foi enviado nenhum arquivo." #. TRANS: Avatar upload form instruction after uploading a file. -#, fuzzy msgid "Pick a square area of the image to be your avatar." -msgstr "Selecione uma área quadrada da imagem para ser seu 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. #. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present. @@ -1406,7 +1470,6 @@ msgid "You may not backup your account." msgstr "Você não pode fazer backup da sua conta." #. TRANS: Information displayed on the backup account page. -#, fuzzy msgid "" "You can backup your account data in Activity Streams format. This is an experimental feature and provides " @@ -1417,19 +1480,17 @@ msgstr "" "Você pode fazer backup dos dados da sua conta no formato de Fluxos de Atividades. Este é um recurso experimental " "e fornece um backup incompleto; informações privadas da sua conta, como " -"endereços de e-mail e de mensagens instantâneas não são copiados. Além " -"disso, arquivos enviados e mensagens diretas também não entram no backup." +"endereços de e-mail e de mensagens instantâneas não são armazenados, bem " +"como arquivos enviados e mensagens diretas." #. TRANS: Submit button to backup an account on the backup account page. -#, fuzzy msgctxt "BUTTON" msgid "Backup" -msgstr "Fundo" +msgstr "Backup" #. TRANS: Title for submit button to backup an account on the backup account page. -#, fuzzy msgid "Backup your account." -msgstr "Fazer backup da conta" +msgstr "Fazer backup da sua conta." #. TRANS: Client error displayed when blocking a user that has already been blocked. msgid "You already blocked that user." @@ -1463,9 +1524,8 @@ msgid "No" msgstr "Não" #. TRANS: Submit button title for 'No' when blocking a user. -#, fuzzy msgid "Do not block this user." -msgstr "Não bloquear este usuário" +msgstr "Não bloquear este usuário." #. TRANS: Button label on the user block form. #. TRANS: Button label on the delete application form. @@ -1473,14 +1533,14 @@ msgstr "Não bloquear este usuário" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Sim" #. TRANS: Submit button title for 'Yes' when blocking a user. -#, fuzzy msgid "Block this user." -msgstr "Bloquear este usuário" +msgstr "Bloquear este usuário." #. TRANS: Server error displayed when blocking a user fails. msgid "Failed to save block information." @@ -1525,11 +1585,36 @@ msgstr "Publicar em %s" #. TRANS: Title for leave group page after leaving. #. TRANS: %s$s is the leaving user's name, %2$s is the group name. #. TRANS: Title for leave group page after leaving. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s deixou o grupo %2$s" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Você não está autenticado." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "A requisição não possui nenhuma ID de perfil." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Não foi encontrado nenhum perfil com esse ID." + +#. TRANS: Title after unsubscribing from a group. +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Associação cancelada" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Nenhum código de confirmação." @@ -1554,14 +1639,16 @@ msgstr "Esse endereço já foi confirmado." #. TRANS: Server error displayed when updating IM preferences fails. #. TRANS: Server error thrown on database error removing a registered IM address. -#, fuzzy msgid "Could not update user IM preferences." -msgstr "Não foi possível atualizar o registro do usuário." +msgstr "" +"Não foi possível atualizar as preferências do mensageiro instantâneo do " +"usuário." #. TRANS: Server error displayed when adding IM preferences fails. -#, fuzzy msgid "Could not insert user IM preferences." -msgstr "Não foi possível inserir a nova assinatura." +msgstr "" +"Não foi possível inserir as preferências de mensageiro instantâneo do " +"usuário." #. TRANS: Server error displayed when an address confirmation code deletion from the #. TRANS: database fails in the contact address confirmation action. @@ -1589,47 +1676,44 @@ msgstr "Mensagens" #. TRANS: Title for conversation page. #. TRANS: Title for page that shows a notice. -#, fuzzy msgctxt "TITLE" msgid "Notice" -msgstr "Mensagens" +msgstr "Mensagem" #. TRANS: Client exception displayed trying to delete a user account while not logged in. -#, fuzzy msgid "Only logged-in users can delete their account." -msgstr "Apenas usuários autenticados podem repetir mensagens." +msgstr "Apenas usuários autenticados podem excluir sua conta." #. TRANS: Client exception displayed trying to delete a user account without have the rights to do that. -#, fuzzy msgid "You cannot delete your account." -msgstr "Você não pode excluir usuários." +msgstr "Você não pode excluir sua conta." #. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation. msgid "I am sure." -msgstr "" +msgstr "Tenho certeza." #. TRANS: Notification for user about the text that must be input to be able to delete a user account. #. TRANS: %s is the text that needs to be input. #, php-format msgid "You must write \"%s\" exactly in the box." -msgstr "" +msgstr "Você deve digitar \"%s\" no quadro." #. TRANS: Confirmation that a user account has been deleted. -#, fuzzy msgid "Account deleted." -msgstr "O avatar foi excluído." +msgstr "A conta foi excluída." #. TRANS: Page title for page on which a user account can be deleted. #. TRANS: Option in profile settings to delete the account of the currently logged in user. -#, fuzzy msgid "Delete account" -msgstr "Criar uma conta" +msgstr "Excluir a conta" #. TRANS: Form text for user deletion form. msgid "" "This will permanently delete your account data from this " "server." msgstr "" +"Isso irá excluir permanentemente os dados da sua conta " +"deste servidor." #. TRANS: Additional form text for user deletion form shown if a user has account backup rights. #. TRANS: %s is a URL to the backup page. @@ -1638,6 +1722,8 @@ msgid "" "You are strongly advised to back up your data before " "deletion." msgstr "" +"Aconselhamos com veemência que você faça um backup dos seus " +"dados antes da exclusão." #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. @@ -1646,14 +1732,14 @@ msgstr "Confirmar" #. TRANS: Input title for the delete account field. #. TRANS: %s is the text that needs to be input. -#, fuzzy, php-format +#, php-format msgid "Enter \"%s\" to confirm that you want to delete your account." -msgstr "Você não pode excluir usuários." +msgstr "" +"Digite \"%s\" para confirmar que você deseja realmente excluir sua conta." #. TRANS: Button title for user account deletion. -#, fuzzy msgid "Permanently delete your account" -msgstr "Você não pode excluir usuários." +msgstr "Excluir sua conta permanentemente" #. TRANS: Client error displayed trying to delete an application while not logged in. msgid "You must be logged in to delete an application." @@ -1669,6 +1755,7 @@ msgstr "A aplicação não foi encontrada." msgid "You are not the owner of this application." msgstr "Você não é o dono desta aplicação." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Ocorreu um problema com o seu token de sessão." @@ -1689,14 +1776,12 @@ msgstr "" "com os usuários." #. TRANS: Submit button title for 'No' when deleting an application. -#, fuzzy msgid "Do not delete this application." -msgstr "Não excluir esta aplicação" +msgstr "Não excluir esta aplicação." #. TRANS: Submit button title for 'Yes' when deleting an application. -#, fuzzy msgid "Delete this application." -msgstr "Excluir esta aplicação" +msgstr "Excluir esta aplicação." #. TRANS: Client error when trying to delete group while not logged in. msgid "You must be logged in to delete a group." @@ -1734,32 +1819,12 @@ msgstr "" "para este grupo continuarão aparecendo nas linhas de tempo individuais." #. TRANS: Submit button title for 'No' when deleting a group. -#, fuzzy msgid "Do not delete this group." -msgstr "Não excluir este grupo" +msgstr "Não excluir este grupo." #. TRANS: Submit button title for 'Yes' when deleting a group. -#, fuzzy msgid "Delete this group." -msgstr "Excluir este grupo" - -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Você não está autenticado." +msgstr "Excluir este grupo." #. TRANS: Instructions for deleting a notice. msgid "" @@ -1779,14 +1844,12 @@ msgid "Are you sure you want to delete this notice?" msgstr "Tem certeza que deseja excluir esta mensagem?" #. TRANS: Submit button title for 'No' when deleting a notice. -#, fuzzy msgid "Do not delete this notice." msgstr "Não excluir esta mensagem." #. TRANS: Submit button title for 'Yes' when deleting a notice. -#, fuzzy msgid "Delete this notice." -msgstr "Excluir esta mensagem" +msgstr "Excluir esta mensagem." #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. msgid "You cannot delete users." @@ -1797,7 +1860,6 @@ msgid "You can only delete local users." msgstr "Você só pode excluir usuários locais." #. TRANS: Title of delete user page. -#, fuzzy msgctxt "TITLE" msgid "Delete user" msgstr "Excluir usuário" @@ -1815,14 +1877,12 @@ msgstr "" "deste usuário do banco de dados, sem cópia de segurança." #. TRANS: Submit button title for 'No' when deleting a user. -#, fuzzy msgid "Do not delete this user." -msgstr "Não excluir este grupo" +msgstr "Não excluir este este usuário." #. TRANS: Submit button title for 'Yes' when deleting a user. -#, fuzzy msgid "Delete this user." -msgstr "Excluir este usuário" +msgstr "Excluir este usuário." #. TRANS: Message used as title for design settings for the site. msgid "Design" @@ -1919,9 +1979,8 @@ msgid "Tile background image" msgstr "Ladrilhar a imagem de fundo" #. TRANS: Fieldset legend for theme colors. -#, fuzzy msgid "Change colors" -msgstr "Alterar a cor" +msgstr "Alterar as cores" #. TRANS: Field label for content color selector. #. TRANS: Label on profile design page for setting a profile page content colour. @@ -1952,25 +2011,24 @@ msgid "Custom CSS" msgstr "CSS personalizado" #. TRANS: Button text for resetting theme settings. -#, fuzzy msgctxt "BUTTON" msgid "Use defaults" -msgstr "Usar o padrão|" +msgstr "Usar o padrão" #. TRANS: Title for button for resetting theme settings. -#, fuzzy +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." -msgstr "Restaura a aparência padrão" +msgstr "Restaurar a aparência padrão." #. TRANS: Title for button for resetting theme settings. -#, fuzzy +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." -msgstr "Restaura de volta ao padrão" +msgstr "Restaurar de volta ao padrão." #. TRANS: Title for button for saving theme settings. -#, fuzzy +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." -msgstr "Salvar a aparência" +msgstr "Salvar a aparência." #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" @@ -1982,9 +2040,9 @@ msgstr "Adicionar às favoritas" #. TRANS: Client exception thrown when requesting a document from the documentation that does not exist. #. TRANS: %s is the non-existing document. -#, fuzzy, php-format +#, php-format msgid "No such document \"%s\"." -msgstr "O documento \"%s\" não existe" +msgstr "O documento \"%s\" não existe." #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. @@ -2162,6 +2220,8 @@ msgid "" "To send notices via email, we need to create a unique email address for you " "on this server:" msgstr "" +"Para enviar mensagens por e-mail, é necessário criar um endereço de e-mail " +"único para você neste servidor." #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. @@ -2210,9 +2270,8 @@ msgid "No email address." msgstr "Nenhum endereço de e-mail." #. TRANS: Message given saving e-mail address that cannot be normalised. -#, fuzzy msgid "Cannot normalize that email address." -msgstr "Não foi possível normalizar este endereço de e-mail" +msgstr "Não foi possível normalizar este endereço de e-mail." #. TRANS: Message given saving e-mail address that not valid. #. TRANS: Form validation error displayed when trying to register without a valid e-mail address. @@ -2231,7 +2290,6 @@ msgstr "Esse endereço de e-mail já pertence à outro usuário." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding Instant Messaging confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#, fuzzy msgid "Could not insert confirmation code." msgstr "Não foi possível inserir o código de confirmação." @@ -2255,7 +2313,6 @@ msgid "That is the wrong email address." msgstr "Esse é o endereço de e-mail errado." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#, fuzzy msgid "Could not delete email confirmation." msgstr "Não foi possível excluir a confirmação de e-mail." @@ -2279,7 +2336,6 @@ 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. -#, fuzzy msgid "Could not update user record." msgstr "Não foi possível atualizar o registro do usuário." @@ -2299,12 +2355,12 @@ msgid "This notice is already a favorite!" msgstr "Essa mensagem já é uma favorita!" #. TRANS: Page title for page on which favorite notices can be unfavourited. -#, fuzzy msgid "Disfavor favorite." -msgstr "Desmarcar a favorita" +msgstr "Desmarcar a favorita." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Mensagens populares" @@ -2346,6 +2402,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Mensagens favoritas de %s" @@ -2358,6 +2416,7 @@ msgstr "Mensagens favoritas de %1$s no %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Usuários em destaque" @@ -2368,9 +2427,9 @@ msgid "Featured users, page %d" msgstr "Usuários em destaque, pág. %d" #. TRANS: Description on page displaying featured users. -#, fuzzy, php-format +#, php-format msgid "A selection of some great users on %s." -msgstr "Uma seleção de alguns grandes usuários no%s" +msgstr "Uma seleção de alguns grandes usuários em %s." #. TRANS: Client error displayed when no notice ID was given trying do display a file. msgid "No notice ID." @@ -2419,6 +2478,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "O serviço remoto usa uma versão desconhecida do protocolo OMB." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Ocorreu um erro durante a atualização do perfil remoto." @@ -2456,14 +2516,6 @@ msgstr "O usuário já possui este papel." msgid "No profile specified." msgstr "Não foi especificado nenhum perfil." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Não foi encontrado nenhum perfil com esse ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2500,14 +2552,12 @@ msgstr "" "futuramente." #. TRANS: Submit button title for 'No' when blocking a user from a group. -#, fuzzy msgid "Do not block this user from this group." -msgstr "Não bloquear este usuário neste grupo" +msgstr "Não bloquear este usuário neste grupo." #. TRANS: Submit button title for 'Yes' when blocking a user from a group. -#, fuzzy msgid "Block this user from this group." -msgstr "Bloquear este usuário neste grupo" +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. msgid "Database error blocking user from group." @@ -2536,9 +2586,8 @@ msgstr "" "cores à sua escolha." #. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -#, fuzzy msgid "Unable to update your design settings." -msgstr "Não foi possível salvar suas configurações de aparência." +msgstr "Não foi possível atualizar suas configurações de aparência." #. TRANS: Form text to confirm saved group design settings. #. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. @@ -2597,24 +2646,24 @@ msgstr "Uma lista dos usuários deste grupo." #. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. msgid "Only the group admin may approve users." -msgstr "" +msgstr "Somente o administrador do grupo pode aprovar usuários." #. TRANS: Title of the first page showing pending group members still awaiting approval to join the group. #. TRANS: %s is the name of the group. -#, fuzzy, php-format +#, php-format msgid "%s group members awaiting approval" -msgstr "Membros do grupo %s" +msgstr "Membros do grupo %s aguardando aprovação" #. TRANS: Title of all but the first page showing pending group members still awaiting approval to join the group. #. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. -#, fuzzy, php-format +#, php-format msgid "%1$s group members awaiting approval, page %2$d" -msgstr "Membros do grupo %1$s, pág. %2$d" +msgstr "Membros do grupo %1$s aguardando aprovação, pág. %2$d" #. TRANS: Page notice for group members page. -#, fuzzy msgid "A list of users awaiting approval to join this group." -msgstr "Uma lista dos usuários deste grupo." +msgstr "" +"Uma lista de usuários aguardando aprovação para se associar a este grupo." #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. #, php-format @@ -2622,14 +2671,13 @@ msgid "Updates from members of %1$s on %2$s!" msgstr "Atualizações dos membros de %1$s no %2$s!" #. TRANS: Title for first page of the groups list. -#, fuzzy msgctxt "TITLE" msgid "Groups" msgstr "Grupos" #. TRANS: Title for all but the first page of the groups list. #. TRANS: %d is the page number. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "Groups, page %d" msgstr "Groupos, pág. %d" @@ -2637,7 +2685,7 @@ msgstr "Groupos, pág. %d" #. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name, #. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them. #. TRANS: This message contains Markdown links in the form [link text](link). -#, 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 " @@ -2645,11 +2693,12 @@ msgid "" "for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%" "%%%)!" msgstr "" -"Os grupos de %%%%site.name%%%% lhe permite encontrar e conversar com pessoas " -"que tenham interesses similares. Após associar-se a um grupo, você pode " -"enviar mensagens para todos os seus membros usando a sintaxe \"!nomedogrupo" -"\". Não encontrou um grupo que lhe agrade? Experimente [procurar por um](%%%%" -"action.groupsearch%%%%) ou [criar o seu próprio!](%%%%action.newgroup%%%%)" +"Os grupos de %%%%site.name%%%% lhe permitem encontrar e conversar com " +"pessoas que tenham interesses similares. Após associar-se a um grupo, você " +"pode enviar mensagens para todos os seus membros usando a sintaxe \"!" +"nomedogrupo\". Não encontrou um grupo que lhe agrade? Experimente [procurar " +"por um](%%%%action.groupsearch%%%%) ou [criar o seu próprio](%%%%action." +"newgroup%%%%)!" #. TRANS: Link to create a new group on the group list page. #. TRANS: Link text on group page to create a new group. @@ -2678,7 +2727,7 @@ msgstr "Nenhum resultado." #. 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). -#, fuzzy, php-format +#, php-format msgid "" "If you cannot find the group you're looking for, you can [create it](%%" "action.newgroup%%) yourself." @@ -2716,33 +2765,32 @@ msgstr "Configurações do MI" #. TRANS: Instant messaging settings page instructions. #. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. #. TRANS: the order and formatting of link text and link should remain unchanged. -#, fuzzy, php-format +#, php-format msgid "" "You can send and receive notices through instant messaging [instant messages]" "(%%doc.im%%). Configure your addresses and settings below." msgstr "" -"Você pode enviar e receber mensagens através dos [mensageiros instantâneos](%" -"%doc.im%%) Jabber/GTalk. Configure seu endereço e opções abaixo." +"Você pode enviar e receber mensagens através de [mensageiros instantâneos](%%" +"doc.im%%). Configure seu endereço e suas opções abaixo." #. TRANS: Message given in the IM settings if IM is not enabled on the site. msgid "IM is not available." msgstr "MI não está disponível" #. TRANS: Form note in IM settings form. %s is the type of IM address that was confirmed. -#, fuzzy, php-format +#, php-format msgid "Current confirmed %s address." -msgstr "Endereço de e-mail já confirmado." +msgstr "O endereço %s foi confirmado." #. TRANS: Form note in IM settings form. #. TRANS: %s is the IM service name, %2$s is the IM address set. -#, fuzzy, php-format +#, php-format msgid "" "Awaiting confirmation on this address. Check your %1$s account for a message " "with further instructions. (Did you add %2$s to your buddy list?)" msgstr "" -"Aguardando a confirmação deste endereço. Procure em sua conta de Jabber/" -"GTalk por uma mensagem com mais instruções (Você adicionou %s à sua lista de " -"contatos?)" +"Aguardando a confirmação deste endereço. Procure em sua conta %1$s por uma " +"mensagem com mais instruções. (Você adicionou %2$s à sua lista de contatos?)" #. TRANS: Field label for IM address. msgid "IM address" @@ -2751,39 +2799,31 @@ msgstr "Endereço do MI" #. TRANS: Field title for IM address. %s is the IM service name. #, php-format msgid "%s screenname." -msgstr "" +msgstr "Identificação %s." #. TRANS: Header for IM preferences form. -#, fuzzy msgid "IM Preferences" msgstr "Preferências do mensageiro instantâneo" #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Send me notices" -msgstr "Enviar uma mensagem" +msgstr "Envie-me mensagens" #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Post a notice when my status changes." -msgstr "Publicar uma mensagem quando eu mudar de status no Jabber/GTalk." +msgstr "Publique uma mensagem quando meu status mudar." #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Send me replies from people I'm not subscribed to." -msgstr "" -"Envie-me respostas de pessoas que eu não estou assinando através do Jabber/" -"GTalk." +msgstr "Envie-me respostas de pessoas que eu não estou assinando." #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Publish a MicroID" -msgstr "Publique um MicroID para meu endereço de e-mail." +msgstr "Publique um MicroID." #. TRANS: Server error thrown on database error updating IM preferences. -#, fuzzy msgid "Could not update IM preferences." -msgstr "Não foi possível atualizar o usuário." +msgstr "Não foi possível atualizar as preferências do mensageiro instantâneo." #. TRANS: Confirmation message for successful IM preferences save. #. TRANS: Confirmation message after saving preferences. @@ -2791,45 +2831,38 @@ msgid "Preferences saved." msgstr "As preferências foram salvas." #. TRANS: Message given saving IM address without having provided one. -#, fuzzy msgid "No screenname." msgstr "Nenhuma identificação." #. TRANS: Form validation error when no transport is available setting an IM address. -#, fuzzy msgid "No transport." -msgstr "Nenhuma mensagem." +msgstr "Nenhum transporte." #. TRANS: Message given saving IM address that cannot be normalised. -#, fuzzy msgid "Cannot normalize that screenname." -msgstr "Não foi possível normalizar essa ID do Jabber" +msgstr "Não foi possível normalizar essa identificação." #. TRANS: Message given saving IM address that not valid. -#, fuzzy msgid "Not a valid screenname." msgstr "Não é uma identificação válida." #. TRANS: Message given saving IM address that is already set for another user. -#, fuzzy msgid "Screenname already belongs to another user." -msgstr "Esta ID do Jabber já pertence à outro usuário." +msgstr "Esta identificação já pertence a outro usuário." #. TRANS: Message given saving valid IM address that is to be confirmed. -#, fuzzy msgid "A confirmation code was sent to the IM address you added." msgstr "" -"Um código de confirmação foi enviado para o endereço de IM que você " -"informou. Você deve permitir que %s envie mensagens para você." +"Um código de confirmação foi enviado para o endereço de mensageiro " +"instantâneo que você informou." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. msgid "That is the wrong IM address." msgstr "Isso é um endereço de MI errado." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#, fuzzy msgid "Could not delete confirmation." -msgstr "Não foi possível excluir a confirmação do mensageiro instantâneo." +msgstr "Não foi possível excluir a confirmação." #. TRANS: Message given after successfully canceling IM address confirmation. msgid "IM confirmation cancelled." @@ -2837,9 +2870,8 @@ msgstr "A confirmação do mensageiro instantâneo foi cancelada." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#, fuzzy msgid "That is not your screenname." -msgstr "Esse não é seu número de telefone." +msgstr "Essa não é a sua identificação." #. TRANS: Message given after successfully removing a registered Instant Messaging address. msgid "The IM address was removed." @@ -2942,9 +2974,8 @@ msgid "Email addresses" msgstr "Endereços de e-mail" #. TRANS: Tooltip for field label for a list of e-mail addresses. -#, fuzzy msgid "Addresses of friends to invite (one per line)." -msgstr "Endereços dos seus amigos que serão convidados (um por linha)" +msgstr "Endereços dos seus amigos que serão convidados (um por linha)." #. TRANS: Field label for a personal message to send to invitees. msgid "Personal message" @@ -3033,15 +3064,14 @@ msgid "You must be logged in to join a group." msgstr "Você deve estar autenticado para se associar a um grupo." #. TRANS: Title for join group page after joining. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s joined group %2$s" msgstr "%1$s associou-se ao grupo %2$s" #. TRANS: Exception thrown when there is an unknown error joining a group. -#, fuzzy msgid "Unknown error joining group." -msgstr "Grupo desconhecido." +msgstr "Erro desconhecido ao associar-se ao grupo." #. TRANS: Client error displayed when trying to join a group while already a member. #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. @@ -3099,6 +3129,7 @@ msgid "License selection" msgstr "Seleção da licença" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Particular" @@ -3115,9 +3146,8 @@ msgid "Type" msgstr "Tipo" #. TRANS: Dropdown field instructions in the license admin panel. -#, fuzzy msgid "Select a license." -msgstr "Selecione a licença" +msgstr "Selecione uma licença." #. TRANS: Form legend in the license admin panel. msgid "License details" @@ -3156,9 +3186,8 @@ msgid "URL for an image to display with the license." msgstr "URL de uma imagem a ser exibida com a licença." #. TRANS: Button title in the license admin panel. -#, fuzzy msgid "Save license settings." -msgstr "Salvar as configurações da licença" +msgstr "Salvar as configurações da licença." #. TRANS: Client error displayed when trying to log in while already logged in. #. TRANS: Client error displayed trying to use "one time password login" when already logged in. @@ -3197,7 +3226,6 @@ msgstr "" "computadores compartilhados!" #. TRANS: Button text for log in on login page. -#, fuzzy msgctxt "BUTTON" msgid "Login" msgstr "Entrar" @@ -3277,18 +3305,16 @@ msgid "Could not create application." msgstr "Não foi possível criar a aplicação." #. TRANS: Form validation error on New application page when providing an invalid image upload. -#, fuzzy msgid "Invalid image." -msgstr "Tamanho inválido." +msgstr "Imagem inválida." #. TRANS: Title for form to create a group. msgid "New group" msgstr "Novo grupo" #. TRANS: Client exception thrown when a user tries to create a group while banned. -#, fuzzy msgid "You are not allowed to create groups on this site." -msgstr "Você não tem permissão para excluir este grupo." +msgstr "Você não tem permissão para criar grupos neste site." #. TRANS: Form instructions for group create form. msgid "Use this form to create a new group." @@ -3301,7 +3327,6 @@ msgstr "Nova mensagem" #. TRANS: Client error displayed trying to send a direct message to a user while sender and #. TRANS: receiver are not subscribed to each other. -#, fuzzy msgid "You cannot send a message to this user." msgstr "Você não pode enviar mensagens para este usuário." @@ -3342,6 +3367,9 @@ msgid "Ajax Error" msgstr "Erro no Ajax" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nova mensagem" @@ -3397,9 +3425,9 @@ msgstr "Mensagens com \"%s\"" #. TRANS: RSS notice search feed description. #. TRANS: %1$s is the query, %2$s is the StatusNet site name. -#, fuzzy, php-format +#, php-format msgid "Updates matching search term \"%1$s\" on %2$s." -msgstr "Mensagens correspondentes aos termos \"%1$s\" no %2$s!" +msgstr "Mensagens correspondentes aos termos \"%1$s\" em %2$s." #. TRANS: Client error displayed trying to nudge a user that cannot be nudged. msgid "" @@ -3478,15 +3506,15 @@ msgstr "" #. TRANS: Server error displayed in oEmbed action when path not found. #. TRANS: %s is a path. -#, fuzzy, php-format +#, php-format msgid "\"%s\" not found." -msgstr "O método da API não foi encontrado!" +msgstr "\"%s\" não foi encontrado." #. TRANS: Server error displayed in oEmbed action when notice not found. #. TRANS: %s is a notice. -#, fuzzy, php-format +#, php-format msgid "Notice %s not found." -msgstr "A mensagem pai não foi encontrada." +msgstr "A mensagem %s não foi encontrada." #. TRANS: Server error displayed in oEmbed action when notice has not profile. #. TRANS: Server error displayed trying to show a notice without a connected profile. @@ -3502,15 +3530,15 @@ msgstr "Mensagem de %1$s no %2$s" #. TRANS: Server error displayed in oEmbed action when attachment not found. #. TRANS: %d is an attachment ID. -#, fuzzy, php-format +#, php-format msgid "Attachment %s not found." -msgstr "O usuário destinatário não foi encontrado." +msgstr "O anexo %s não foi encontrado." #. TRANS: Server error displayed in oEmbed request when a path is not supported. #. TRANS: %s is a path. #, php-format msgid "\"%s\" not supported for oembed requests." -msgstr "" +msgstr "\"%s\" não é suportado para solicitações de oEmbed." #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #, php-format @@ -3573,7 +3601,6 @@ msgstr "" "particulares que você enviou." #. TRANS: Title for page where to change password. -#, fuzzy msgctxt "TITLE" msgid "Change password" msgstr "Alterar a senha" @@ -3598,12 +3625,10 @@ msgstr "Senha nova" #. TRANS: Field title on page where to change password. #. TRANS: Field title on account registration page. -#, fuzzy msgid "6 or more characters." -msgstr "No mínimo 6 caracteres" +msgstr "No mínimo 6 caracteres." #. TRANS: Field label on page where to change password. In this field the new password should be typed a second time. -#, fuzzy msgctxt "LABEL" msgid "Confirm" msgstr "Confirmar" @@ -3611,12 +3636,10 @@ msgstr "Confirmar" #. TRANS: Field title on page where to change password. #. TRANS: Ttile for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. -#, fuzzy msgid "Same as password above." -msgstr "Igual à senha acima" +msgstr "Igual à senha acima." #. TRANS: Button text on page where to change password. -#, fuzzy msgctxt "BUTTON" msgid "Change" msgstr "Alterar" @@ -3628,14 +3651,12 @@ msgstr "A senha deve ter, no mínimo, 6 caracteres." #. TRANS: Form validation error on password change when password confirmation does not match. #. TRANS: Form validation error displayed when trying to register with non-matching passwords. -#, fuzzy msgid "Passwords do not match." msgstr "As senhas não coincidem." #. TRANS: Form validation error on page where to change password. -#, fuzzy msgid "Incorrect old password." -msgstr "A senha anterior está errada" +msgstr "A senha anterior está errada." #. TRANS: Form validation error on page where to change password. msgid "Error saving user; invalid." @@ -3644,7 +3665,6 @@ msgstr "Erro ao salvar usuário; inválido." #. TRANS: Server error displayed on page where to change password when password change #. TRANS: could not be made because of a server error. #. TRANS: Reset password form validation error message. -#, fuzzy msgid "Cannot save new password." msgstr "Não é possível salvar a nova senha." @@ -3653,7 +3673,6 @@ msgid "Password saved." msgstr "A senha foi salva." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Caminhos" @@ -3724,12 +3743,10 @@ msgid "Fancy URLs" msgstr "URLs limpas" #. TRANS: Field title in Paths admin panel. -#, fuzzy msgid "Use fancy URLs (more readable and memorable)?" msgstr "Utilizar URLs limpas (mais legíveis e memorizáveis)?" #. TRANS: Fieldset legend in Paths admin panel. -#, fuzzy msgctxt "LEGEND" msgid "Theme" msgstr "Tema" @@ -3843,12 +3860,12 @@ msgid "Directory where attachments are located." msgstr "Diretório onde os anexos estão localizados." #. TRANS: Fieldset legend in Paths admin panel. -#, fuzzy msgctxt "LEGEND" msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Nunca" @@ -3905,7 +3922,7 @@ msgstr "Usuários auto-etiquetados com %1$s - pág. %2$d" #. TRANS: Page title for AJAX form return when a disabling a plugin. msgctxt "plugin" msgid "Disabled" -msgstr "" +msgstr "Desabilitado" #. TRANS: Client error displayed when trying to use another method than POST. #. TRANS: Do not translate POST. @@ -3915,22 +3932,19 @@ msgid "This action only accepts POST requests." msgstr "Esta ação aceita somente requisições POST." #. TRANS: Client error displayed when trying to enable or disable a plugin without access rights. -#, fuzzy msgid "You cannot administer plugins." -msgstr "Você não pode excluir usuários." +msgstr "Você não pode administrar plugins." #. TRANS: Client error displayed when trying to enable or disable a non-existing plugin. -#, fuzzy msgid "No such plugin." -msgstr "Esta página não existe." +msgstr "Este plugin não existe." #. TRANS: Page title for AJAX form return when enabling a plugin. msgctxt "plugin" msgid "Enabled" -msgstr "" +msgstr "Habilitado" #. TRANS: Tab and title for plugins admin panel. -#, fuzzy msgctxt "TITLE" msgid "Plugins" msgstr "Plugins" @@ -3941,16 +3955,20 @@ msgid "" "\"http://status.net/wiki/Plugins\">online plugin documentation for more " "details." msgstr "" +"Plugins adicionais podem ser habilitados e configurados manualmente. Dê uma " +"olhada na documentação online " +"sobre plugins para maiores detalhes." #. TRANS: Admin form section header -#, fuzzy msgid "Default plugins" -msgstr "Idioma padrão" +msgstr "Plugins padrão" #. TRANS: Text displayed on plugin admin page when no plugin are enabled. msgid "" "All default plugins have been disabled from the site's configuration file." msgstr "" +"Todos os plugins padrão foram desabilitados no arquivo de configuração do " +"site." #. TRANS: Client error displayed if the notice posted has too many characters. msgid "Invalid notice content." @@ -3958,10 +3976,11 @@ msgstr "O conteúdo da mensagem é inválido." #. TRANS: Exception thrown if a notice's license is not compatible with the StatusNet site license. #. TRANS: %1$s is the notice license, %2$s is the StatusNet site's license. -#, fuzzy, php-format +#, php-format msgid "Notice license \"%1$s\" is not compatible with site license \"%2$s\"." msgstr "" -"A licença ‘%1$s’ da mensagem não é compatível com a licença ‘%2$s’ do site." +"A licença \"%1$s\" da mensagem não é compatível com a licença \"%2$s\" do " +"site." #. TRANS: Page title for profile settings. msgid "Profile settings" @@ -4005,17 +4024,21 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" -msgstr[0] "Descreva a si mesmo e os seus interesses em %d caractere" -msgstr[1] "Descreva a si mesmo e os seus interesses em %d caracteres" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." +msgstr[0] "Descreva você e os seus interesses em %d caractere." +msgstr[1] "Descreva você e os seus interesses em %d caracteres." #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" -msgstr "Descreva a si mesmo e os seus interesses" +#. TRANS: Text area title on account registration page. +msgid "Describe yourself and your interests." +msgstr "Descreva você e os seus interesses." -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4028,32 +4051,34 @@ msgid "Location" msgstr "Localização" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Onde você está, ex: \"cidade, estado (ou região), país\"" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Onde você está, ex: \"cidade, estado (ou região), país\"." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" msgstr "Compartilhe minha localização atual ao publicar mensagens" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Etiquetas" #. TRANS: Tooltip for field label in form for profile settings. -#, fuzzy msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Suas etiquetas (letras, números, -, ., e _), separadas por vírgulas ou " -"espaços" +"espaços." #. TRANS: Dropdownlist label in form for profile settings. msgid "Language" msgstr "Idioma" #. TRANS: Tooltip for dropdown list label in form for profile settings. -#, fuzzy msgid "Preferred language." msgstr "Idioma preferencial" @@ -4066,11 +4091,31 @@ msgid "What timezone are you normally in?" msgstr "Em que fuso horário você normalmente está?" #. TRANS: Checkbox label in form for profile settings. -#, fuzzy msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" -"Assinar automaticamente à quem me assinar (melhor para perfis não humanos)" +"Assinar automaticamente à quem me assinar (melhor para perfis não humanos)." + +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +msgid "Subscription policy" +msgstr "Política de assinaturas" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "Permitir que qualquer um me assine" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "Perguntar-me primeiro" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" +"Outros usuários precisam da sua permissão para acompanhar suas atualizações?" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "Tornar as atualizações visíveis somente para meus assinantes" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed @@ -4096,22 +4141,23 @@ msgstr "O nome do idioma é muito extenso (máx. 50 caracteres)." #. TRANS: %s is an invalid tag. #. TRANS: Form validation error when entering an invalid tag. #. TRANS: %s is the invalid tag. -#, fuzzy, php-format +#, php-format msgid "Invalid tag: \"%s\"." -msgstr "Etiqueta inválida: \"%s\"" +msgstr "Etiqueta inválida: \"%s\"." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -#, fuzzy -msgid "Could not update user for autosubscribe." -msgstr "Não foi possível atualizar o usuário para assinar automaticamente." +msgid "Could not update user for autosubscribe or subscribe_policy." +msgstr "" +"Não foi possível atualizar o usuário para assinar automaticamente ou para a " +"política de assinaturas." #. TRANS: Server error thrown when user profile location preference settings could not be updated. -#, fuzzy msgid "Could not save location prefs." msgstr "Não foi possível salvar as preferências de localização." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Não foi possível salvar as etiquetas." @@ -4122,9 +4168,8 @@ msgstr "As configurações foram salvas." #. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup. #. TRANS: Page title for page where a user account can be restored from backup. -#, fuzzy msgid "Restore account" -msgstr "Criar uma conta" +msgstr "Restaurar a conta" #. TRANS: Client error displayed when requesting a public timeline page beyond the page limit. #. TRANS: %s is the page limit. @@ -4143,6 +4188,7 @@ msgid "Public timeline, page %d" msgstr "Mensagens públicas, pág. %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Mensagens públicas" @@ -4205,9 +4251,9 @@ msgstr "" "Microblogging) baseado no software livre [StatusNet](http://status.net/)." #. TRANS: Public RSS feed description. %s is the StatusNet site name. -#, fuzzy, php-format +#, php-format msgid "%s updates from everyone." -msgstr "%s mensagens de todo mundo!" +msgstr "Mensagens públicas de %s." #. TRANS: Title for public tag cloud. msgid "Public tag cloud" @@ -4303,7 +4349,6 @@ msgid "Recover" msgstr "Recuperar" #. TRANS: Button text on password recovery page. -#, fuzzy msgctxt "BUTTON" msgid "Recover" msgstr "Recuperar" @@ -4322,22 +4367,15 @@ msgid "Password recovery requested" msgstr "Foi solicitada a recuperação da senha" #. TRANS: Title for password recovery page in password saved mode. -#, fuzzy msgid "Password saved" -msgstr "A senha foi salva." - -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Ação desconhecida" +msgstr "A senha foi salva" #. TRANS: Title for field label for password reset form. -#, fuzzy msgid "6 or more characters, and do not forget it!" msgstr "No mínimo 6 caracteres. E não se esqueça dela!" #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. -#, fuzzy msgctxt "BUTTON" msgid "Reset" msgstr "Restaurar" @@ -4392,15 +4430,14 @@ msgstr "" "autenticado." #. TRANS: Client exception thrown when no ID parameter was provided. -#, fuzzy msgid "No id parameter." -msgstr "Nenhum argumento de ID." +msgstr "Nenhum parâmetro de ID." #. TRANS: Client exception thrown when an invalid ID parameter was provided for a file. #. TRANS: %d is the provided ID for which the file is not present (number). -#, fuzzy, php-format +#, php-format msgid "No such file \"%d\"." -msgstr "Esse arquivo não existe." +msgstr "Esse arquivo não existe: \"%d\"." #. TRANS: Client error displayed when trying to register to an invite-only site without an invitation. msgid "Sorry, only invited people can register." @@ -4415,7 +4452,6 @@ msgid "Registration successful" msgstr "Registro realizado com sucesso" #. TRANS: Title for registration page. -#, fuzzy msgctxt "TITLE" msgid "Register" msgstr "Registrar-se" @@ -4425,10 +4461,10 @@ msgid "Registration not allowed." msgstr "Não é permitido o registro." #. TRANS: Form validation error displayed when trying to register without agreeing to the site license. -#, fuzzy msgid "You cannot register if you do not agree to the license." msgstr "Você não pode se registrar se não aceitar a licença." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "O endereço de e-mail já existe." @@ -4437,60 +4473,35 @@ msgid "Invalid username or password." msgstr "Nome de usuário e/ou senha inválido(s)" #. TRANS: Page notice on registration page. -#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " "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. " +"pode publicar mensagens e se conectar a amigos e colegas." #. TRANS: Field label on account registration page. In this field the password has to be entered a second time. -#, fuzzy msgctxt "PASSWORD" msgid "Confirm" msgstr "Confirmar" #. TRANS: Field label on account registration page. -#, fuzzy msgctxt "LABEL" msgid "Email" msgstr "E-mail" #. TRANS: Field title on account registration page. -#, fuzzy msgid "Used only for updates, announcements, and password recovery." -msgstr "Usado apenas para atualizações, anúncios e recuperações de senha" +msgstr "Usado apenas para atualizações, anúncios e recuperações de senha." #. TRANS: Field title on account registration page. -#, fuzzy msgid "Longer name, preferably your \"real\" name." -msgstr "Nome completo, de preferência seu nome \"real\"" +msgstr "Nome completo, de preferência seu nome \"real\"." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -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: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Descreva a si mesmo e os seus interesses" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Onde você está, ex: \"cidade, estado (ou região), país\"" - -#. TRANS: Field label on account registration page. -#, fuzzy +#. TRANS: Button text to register a user on account registration page. msgctxt "BUTTON" msgid "Register" -msgstr "Registrar-se" +msgstr "Registrar" #. TRANS: Copyright checkbox label in registration dialog, for private sites. #. TRANS: %1$s is the StatusNet sitename. @@ -4595,29 +4606,27 @@ msgid "User nickname" msgstr "Identificação do usuário" #. TRANS: Field title on page for remote subscribe. -#, fuzzy msgid "Nickname of the user you want to follow." -msgstr "Identificação do usuário que você quer seguir" +msgstr "Identificação do usuário que você quer acompanhar." #. TRANS: Field label on page for remote subscribe. msgid "Profile URL" msgstr "URL do perfil" #. TRANS: Field title on page for remote subscribe. -#, fuzzy msgid "URL of your profile on another compatible microblogging service." -msgstr "URL do seu perfil em outro serviço de microblog compatível" +msgstr "URL do seu perfil em outro serviço de microblog compatível." #. TRANS: Button text on page for remote subscribe. -#, fuzzy +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. msgctxt "BUTTON" msgid "Subscribe" msgstr "Assinar" #. TRANS: Form validation error on page for remote subscribe when an invalid profile URL was provided. -#, fuzzy msgid "Invalid profile URL (bad format)." -msgstr "A URL do perfil é inválida (formato inválido)" +msgstr "A URL do perfil é inválida (formato inválido)." #. TRANS: Form validation error on page for remote subscribe when no the provided profile URL #. TRANS: does not contain expected data. @@ -4626,12 +4635,10 @@ msgstr "" "Não é uma URL de perfil válida (nenhum documento YADIS ou XRDS inválido)." #. TRANS: Form validation error on page for remote subscribe. -#, fuzzy msgid "That is a local profile! Login to subscribe." -msgstr "Esse é um perfil local! Autentique-se para assinar." +msgstr "Esse é um perfil local! Entre para assinar." #. TRANS: Form validation error on page for remote subscribe when the remote service is not providing a request token. -#, fuzzy msgid "Could not get a request token." msgstr "Não foi possível obter um token de requisição." @@ -4644,16 +4651,8 @@ msgstr "Apenas usuários autenticados podem repetir mensagens." msgid "No notice specified." msgstr "Não foi especificada nenhuma mensagem." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Você não pode repetir sua própria mensagem." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Você já repetiu essa mensagem." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Repetida" @@ -4664,6 +4663,8 @@ msgstr "Repetida!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Respostas para %s" @@ -4724,25 +4725,22 @@ msgstr "" #. TRANS: RSS reply feed description. #. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name. -#, fuzzy, php-format +#, php-format msgid "Replies to %1$s on %2$s." -msgstr "Respostas para %1$s no %2$s" +msgstr "Respostas para %1$s no %2$s." #. TRANS: Client exception displayed when trying to restore an account while not logged in. -#, fuzzy msgid "Only logged-in users can restore their account." -msgstr "Apenas usuários autenticados podem repetir mensagens." +msgstr "Apenas usuários autenticados podem restaurar suas contas." #. TRANS: Client exception displayed when trying to restore an account without having restore rights. -#, fuzzy msgid "You may not restore your account." -msgstr "Você ainda não registrou nenhuma aplicação." +msgstr "Você não pode restaurar a sua conta." #. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file. #. TRANS: Client exception. No file; probably just a non-AJAX submission. -#, fuzzy msgid "No uploaded file." -msgstr "Enviar arquivo" +msgstr "Nenhum arquivo enviado." #. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." @@ -4781,37 +4779,41 @@ msgid "System error uploading file." msgstr "Erro no sistema durante o envio do arquivo." #. TRANS: Client exception thrown when a feed is not an Atom feed. -#, fuzzy +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." -msgstr "Todos os membros" +msgstr "Não é uma fonte Atom." #. TRANS: Success message when a feed has been restored. msgid "" "Feed has been restored. Your old posts should now appear in search and your " "profile page." msgstr "" +"A fonte foi restaurada. Agora suas publicações anteriores devem aparecer na " +"pesquisa e na sua página de perfil." #. TRANS: Message when a feed restore is in progress. msgid "Feed will be restored. Please wait a few minutes for results." msgstr "" +"A fonte será restaurada. Por favor, aguarde alguns minutos para os " +"resultados." #. TRANS: Form instructions for feed restore. msgid "" "You can upload a backed-up stream in Activity Streams format." msgstr "" +"Você pode enviar um backup de fluxo no formato Fluxo de Atividades." #. TRANS: Title for submit button to confirm upload of a user backup file for account restore. -#, fuzzy msgid "Upload the file" -msgstr "Enviar arquivo" +msgstr "Enviar o arquivo" #. TRANS: Client error displayed when trying to revoke a role without having the right to do that. msgid "You cannot revoke user roles on this site." msgstr "Não é possível revogar os papéis dos usuários neste site." #. TRANS: Client error displayed when trying to revoke a role that is not set. -#, fuzzy msgid "User does not have this role." msgstr "O usuário não possui este papel." @@ -4821,6 +4823,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Você não pode colocar usuários deste site em isolamento." @@ -4829,7 +4832,6 @@ msgid "User is already sandboxed." msgstr "O usuário já está em isolamento." #. TRANS: Title for the sessions administration panel. -#, fuzzy msgctxt "TITLE" msgid "Sessions" msgstr "Sessões" @@ -4839,7 +4841,6 @@ msgid "Session settings for this StatusNet site" msgstr "Configurações de sessão para este site StatusNet" #. TRANS: Fieldset legend on the sessions administration panel. -#, fuzzy msgctxt "LEGEND" msgid "Sessions" msgstr "Sessões" @@ -4851,9 +4852,8 @@ msgstr "Gerenciar sessões" #. TRANS: Checkbox title on the sessions administration panel. #. TRANS: Indicates if StatusNet should handle session administration. -#, fuzzy msgid "Handle sessions ourselves." -msgstr "Define se as sessões terão gerenciamento próprio." +msgstr "Administração própria das sessões." #. TRANS: Checkbox label on the sessions administration panel. #. TRANS: Indicates if StatusNet should write session debugging output. @@ -4861,14 +4861,12 @@ msgid "Session debugging" msgstr "Depuração da sessão" #. TRANS: Checkbox title on the sessions administration panel. -#, fuzzy msgid "Enable debugging output for sessions." msgstr "Ativa a saída de depuração para as sessões." #. TRANS: Title for submit button on the sessions administration panel. -#, fuzzy msgid "Save session settings" -msgstr "Salvar as configurações de acesso" +msgstr "Salvar as configurações de sessão" #. TRANS: Client error displayed trying to display an OAuth application while not logged in. msgid "You must be logged in to view an application." @@ -4881,10 +4879,10 @@ msgstr "Perfil da aplicação" #. TRANS: Information output on an OAuth application page. #. TRANS: %1$s is the application creator, %2$s is "read-only" or "read-write", #. TRANS: %3$d is the number of users using the OAuth application. -#, fuzzy, php-format +#, php-format msgid "Created by %1$s - %2$s access by default - %3$d user" msgid_plural "Created by %1$s - %2$s access by default - %3$d users" -msgstr[0] "Criado por %1$s - acesso %2$s por padrão - %3$d usuários" +msgstr[0] "Criado por %1$s - acesso %2$s por padrão - %3$d usuário" msgstr[1] "Criado por %1$s - acesso %2$s por padrão - %3$d usuários" #. TRANS: Header on the OAuth application page. @@ -4892,7 +4890,6 @@ msgid "Application actions" msgstr "Ações da aplicação" #. TRANS: Link text to edit application on the OAuth application page. -#, fuzzy msgctxt "EDITAPP" msgid "Edit" msgstr "Editar" @@ -4907,13 +4904,12 @@ msgid "Application info" msgstr "Informação da aplicação" #. TRANS: Note on the OAuth application page about signature support. -#, fuzzy msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " "not supported." msgstr "" -"Nota: Nós suportamos assinaturas HMAC-SHA1. Nós não suportamos o método de " -"assinatura em texto plano." +"Nota: assinaturas HMAC-SHA1 são suportadas. O método de assinatura em texto " +"plano não é suportado." #. TRANS: Text in confirmation dialog to reset consumer key and secret for an OAuth application. msgid "Are you sure you want to reset your consumer key and secret?" @@ -5018,6 +5014,8 @@ msgstr "Membros" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Nenhum)" @@ -5075,7 +5073,6 @@ msgstr "" "sobre suas vidas e interesses. " #. TRANS: Title for list of group administrators on a group page. -#, fuzzy msgctxt "TITLE" msgid "Admins" msgstr "Administradores" @@ -5100,6 +5097,10 @@ msgstr "Mensagem para %1$s no %2$s" msgid "Message from %1$s on %2$s" msgstr "Mensagem de %1$s no %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +msgid "Not available." +msgstr "Não está disponível." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "A mensagem excluída." @@ -5107,20 +5108,20 @@ msgstr "A mensagem excluída." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %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, %3$d is the page number. #, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Mensagens de %1$s etiquetadas como %2$s, pág. %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. #, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, pág. %2$d" +msgid "Notices by %1$s, page %2$d" +msgstr "Mensagens de %1$s, pág. %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5210,6 +5211,7 @@ msgid "Repeat of %s" msgstr "Repetição de %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Você não pode silenciar os usuários neste site." @@ -5218,7 +5220,6 @@ msgid "User is already silenced." msgstr "O usuário já está silenciado." #. TRANS: Title for site administration panel. -#, fuzzy msgctxt "TITLE" msgid "Site" msgstr "Site" @@ -5250,51 +5251,44 @@ msgid "Dupe limit must be one or more seconds." msgstr "O limite de duplicatas deve ser de um ou mais segundos." #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "General" msgstr "Geral" #. TRANS: Field label on site settings panel. -#, fuzzy msgctxt "LABEL" msgid "Site name" msgstr "Nome do site" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "The name of your site, like \"Yourcompany Microblog\"." -msgstr "O nome do seu site, por exemplo \"Microblog da Sua Empresa\"" +msgstr "O nome do seu site, por exemplo, \"Microblog da Sua Empresa\"" #. TRANS: Field label on site settings panel. msgid "Brought by" msgstr "Disponibilizado por" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "Text used for credits link in footer of each page." -msgstr "Texto utilizado para o link de créditos no rodapé de cada página" +msgstr "Texto utilizado para o link de créditos no rodapé de cada página." #. TRANS: Field label on site settings panel. msgid "Brought by URL" msgstr "URL do disponibilizado por" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "URL used for credits link in footer of each page." -msgstr "URL utilizada para o link de créditos no rodapé de cada página" +msgstr "URL utilizada para o link de créditos no rodapé de cada página." #. TRANS: Field label on site settings panel. msgid "Email" msgstr "E-mail" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "Contact email address for your site." -msgstr "Endereço de e-mail para contatos do seu site" +msgstr "Endereço de e-mail para contatos do seu site." #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Local" msgstr "Local" @@ -5318,7 +5312,6 @@ msgstr "" "não estiverem disponíveis" #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Limits" msgstr "Limites" @@ -5371,9 +5364,8 @@ msgstr "" "Texto dos aviso do site (no máximo 255 caracteres; é permitido o uso de HTML)" #. TRANS: Title for button to save site notice in admin panel. -#, fuzzy msgid "Save site notice." -msgstr "Salvar os avisos do site" +msgstr "Salvar as mensagens do site." #. TRANS: Title for SMS settings. msgid "SMS settings" @@ -5419,9 +5411,8 @@ msgid "SMS phone number" msgstr "Telefone para SMS" #. TRANS: SMS phone number input field instructions in SMS settings form. -#, 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" +msgstr "Número de telefone, sem pontuações ou espaços, com código de área." #. TRANS: Form legend for SMS preferences form. msgid "SMS preferences" @@ -5468,9 +5459,8 @@ msgid "That is the wrong confirmation number." msgstr "Isso é um número de confirmação errado." #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#, fuzzy msgid "Could not delete SMS confirmation." -msgstr "Não foi possível excluir a confirmação do mensageiro instantâneo." +msgstr "Não foi possível excluir a confirmação do SMS." #. TRANS: Message given after successfully canceling SMS phone number confirmation. msgid "SMS confirmation cancelled." @@ -5504,55 +5494,72 @@ msgstr "" "e-mail que não está listada aqui, informe-nos enviando uma mensagem para %s." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#, fuzzy msgid "No code entered." -msgstr "Não foi digitado nenhum código" +msgstr "Não foi digitado nenhum código." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" msgid "Snapshots" msgstr "Estatísticas" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Gerenciar as configurações das estatísticas" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "O valor de execução da obtenção das estatísticas é inválido." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "A frequência de geração de estatísticas deve ser um número." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "A URL para o envio das estatísticas é inválida." +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Estatísticas" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Aleatoriamente durante as visitas ao site" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "Em horários pré-definidos" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Estatísticas dos dados" -msgid "When to send statistical data to status.net servers" -msgstr "Quando enviar dados estatísticos para os servidores status.net" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." +msgstr "Quando enviar dados estatísticos para os servidores status.net." +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frequentemente" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "As estatísticas serão enviadas uma vez a cada N usos da web" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL para envio" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "As estatísticas serão enviadas para esta URL" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Salvar" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Salvar as configurações de estatísticas" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5564,6 +5571,27 @@ msgstr "Você não está assinando esse perfil." msgid "Could not save subscription." msgstr "Não foi possível salvar a assinatura." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "Membros do grupo %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Membros do grupo %1$s, pág. %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Uma lista dos usuários deste grupo." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "Não é possível assinar um perfil OMB 0.1 remoto com essa ação." @@ -5685,31 +5713,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Mensagens etiquetadas com %1$s, pág. %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Fonte de mensagens de %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Fonte de mensagens de %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Fonte de mensagens de %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Nenhum argumento de ID." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Etiqueta %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Perfil do usuário" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Etiquetar o usuário" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5718,15 +5758,24 @@ msgstr "" "Etiquetas para este usuário (letras, números, -, ., e _), separadas por " "vírgulas ou espaços" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "Você só pode etiquetar pessoas às quais assina ou que assinam você." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Etiquetas" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Use esse formulário para adicionar etiquetas aos seus assinantes ou " "assinados." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Esta etiqueta não existe." @@ -5734,25 +5783,31 @@ msgstr "Esta etiqueta não existe." msgid "You haven't blocked that user." msgstr "Você não bloqueou esse usuário." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "O usuário não está em isolamento." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "O usuário não está silenciado." -msgid "No profile ID in request." -msgstr "A requisição não possui nenhuma ID de perfil." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Cancelado" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "A licença '%1$s' do fluxo do usuário não é compatível com a licença '%2$s' " "do site." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Configurações do MI" @@ -5767,10 +5822,12 @@ msgstr "Gerencia várias outras opções." msgid " (free service)" msgstr " (serviço livre)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Nenhuma" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5782,15 +5839,19 @@ msgstr "Encolher URLs com" msgid "Automatic shortening service to use." msgstr "Serviço de encolhimento automático a ser utilizado." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5799,17 +5860,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "O serviço de encolhimento de URL é muito extenso (máx. 50 caracteres)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "O conteúdo da mensagem é inválido." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "O conteúdo da mensagem é inválido." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Usuário" @@ -5833,6 +5898,9 @@ msgstr "" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Assinatura padrão inválida: '%1$s' não é um usuário." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Perfil" @@ -5885,7 +5953,7 @@ msgstr "Salvar as configurações de usuário" msgid "Authorize subscription" msgstr "Autorizar a assinatura" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5898,18 +5966,21 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" msgstr "Aceitar" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Assinar este usuário" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5928,9 +5999,10 @@ msgstr "Nenhum pedido de autorização!" msgid "Subscription authorized" msgstr "A assinatura foi autorizada" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "A assinatura foi autorizada, mas não foi informada nenhuma URL de retorno. " @@ -5941,9 +6013,10 @@ msgstr "" msgid "Subscription rejected" msgstr "A assinatura foi recusada" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "A assinatura foi rejeitada, mas não foi informada nenhuma URL de retorno. " @@ -5974,16 +6047,6 @@ msgstr "A URI ‘%s’ é de um usuário local." msgid "Profile URL \"%s\" is for a local user." msgstr "A URL ‘%s’ do perfil é de um usuário local." -#. 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. -#, 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. #, fuzzy, php-format @@ -6091,7 +6154,6 @@ msgid "Contributors" msgstr "Colaboradores" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licença" @@ -6130,7 +6192,6 @@ msgstr "" "este programa. Caso contrário, veja %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Plugins" @@ -6214,18 +6275,6 @@ msgstr[1] "Um arquivo deste tamanho excederá a sua conta mensal de %d bytes." msgid "Invalid filename." msgstr "Nome de arquivo inválido." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Não foi possível se unir ao grupo." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Não é parte de um grupo." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Não foi possível deixar o grupo." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6238,6 +6287,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "Erro ao salvar usuário; inválido." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Não foi possível se unir ao grupo." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Não é parte de um grupo." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Não foi possível deixar o grupo." + #. TRANS: Activity title. msgid "Join" msgstr "Entrar" @@ -6312,6 +6373,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Você está proibido de publicar mensagens neste site." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Você não pode repetir a sua própria mensagem." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Você não pode repetir sua própria mensagem." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Você não pode repetir a sua própria mensagem." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Você não pode repetir a sua própria mensagem." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Você já repetiu essa mensagem." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "O usuário não tem nenhuma \"última mensagem\"." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6338,16 +6429,13 @@ msgstr "Não foi possível salvar a informação do grupo local." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6371,6 +6459,7 @@ msgid "Unable to save tag." msgstr "Não foi salvar gravar a categoria." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Você está proibido de assinar." @@ -6398,9 +6487,11 @@ msgstr "Não foi possível salvar a assinatura." msgid "Could not delete subscription." msgstr "Não foi possível salvar a assinatura." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "Permitir" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6466,18 +6557,24 @@ msgid "User deletion in progress..." msgstr "Exclusão do usuário em andamento..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Editar as configurações do perfil" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Editar" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Enviar uma mensagem para este usuário." #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Mensagem" @@ -6499,10 +6596,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderador" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Assinar" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6528,7 +6621,9 @@ msgstr "Responder" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6651,8 +6746,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Encontre conteúdo de mensagens" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "Este usuário não existe." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6699,76 +6795,129 @@ msgstr "saveSettings() não implementado." msgid "Unable to delete design setting." msgstr "Não foi possível excluir as configurações da aparência." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Site" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Site" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Admin" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Configuração básica do site" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Site" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Configuração da aparência" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Aparência" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Configuração do usuário" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Usuário" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Configuração do acesso" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Acesso" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Configuração dos caminhos" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Caminhos" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Configuração das sessões" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Sessões" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Editar os avisos do site" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Avisos do site" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Configurações das estatísticas" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Snapshots" +msgstr "Estatísticas" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licença" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Configuração dos caminhos" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Plugins" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6779,6 +6928,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "Não foi encontrado nenhuma aplicação para essa chave de consumidor." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6815,10 +6965,12 @@ msgstr "" msgid "Could not issue access token." msgstr "Não foi possível inserir a mensagem." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "" "Erro no banco de dados durante a inserção do usuário da aplicativo OAuth." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "" @@ -6914,6 +7066,17 @@ msgstr "" msgid "Cancel" msgstr "Cancelar" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Salvar" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Ação desconhecida" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -6936,11 +7099,12 @@ msgstr "Aprovado em %1$s - acesso \"%2$s\"." msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Revogar" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -6980,6 +7144,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Todas as assinaturas" + #. TRANS: Title for command results. msgid "Command results" msgstr "Resultados do comando" @@ -6990,6 +7160,7 @@ msgid "AJAX error" msgstr "Erro no Ajax" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "O comando foi completado" @@ -7111,6 +7282,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7133,10 +7306,6 @@ msgstr "Ocorreu um erro durante o envio da mensagem direta." msgid "Notice from %s repeated." msgstr "A mensagem de %s foi repetida." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Erro na repetição da mensagem." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7445,13 +7614,19 @@ msgstr "Você pode querer executar o instalador para corrigir isto." msgid "Go to the installer." msgstr "Ir para o instalador." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Erro no banco de dados" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Público" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Excluir" @@ -7459,6 +7634,7 @@ msgstr "Excluir" msgid "Delete this user" msgstr "Excluir este usuário" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Salvar a aparência" @@ -7471,23 +7647,14 @@ 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. -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. -msgid "Reset back to default" -msgstr "Restaura de volta ao padrão" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "Enviar arquivo" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Você pode enviar sua imagem de fundo. O tamanho máximo do arquivo é de 2Mb." @@ -7503,15 +7670,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Desativado" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "Não foi possível atualizar a aparência." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "A aparência padrão foi restaurada." @@ -7543,47 +7701,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Tornar favorita" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -#, fuzzy -msgid "Not an atom feed." -msgstr "Todos os membros" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Todas" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Selecione a etiqueta para filtrar" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Etiqueta" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Selecione uma etiqueta para reduzir a lista" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Ir" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Associa o papel \"%s\" a este usuário" @@ -7647,9 +7819,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Membro desde" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7716,6 +7890,7 @@ msgid "%s blocked users" msgstr "Usuários bloqueados de %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Administrar" @@ -7816,23 +7991,46 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Fonte da caixa de entrada desconhecida %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Entrar" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Sair" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Entrar" @@ -7893,6 +8091,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s agora está acompanhando suas mensagens no %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s agora está acompanhando suas mensagens no %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8187,9 +8399,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "As caixas postais são legíveis somente pelo seu próprio usuário." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8198,32 +8412,48 @@ msgstr "" "privadas para envolver outras pessoas em uma conversa. Você também pode " "receber mensagens privadas." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Recebidas" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Suas mensagens recebidas" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Enviadas" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Suas mensagens enviadas" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Não foi possível analisar a mensagem." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Não é um usuário registrado." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Desculpe-me, mas este não é seu endereço de e-mail para recebimento." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Desculpe-me, mas não é permitido o recebimento de e-mails." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Tipo de mensagem não suportado: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8277,10 +8507,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "\"%s\" não é um tipo de arquivo suportado neste servidor." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Enviar uma mensagem direta" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Selecione uma operadora" @@ -8290,32 +8523,68 @@ msgstr "Selecione uma operadora" msgid "No mutual subscribers." msgstr "Não assinado!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Para" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Enviar" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Mensagem" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "de" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "E-mail" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Você não tem permissão para excluir este grupo." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Não excluir este grupo" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8363,68 +8632,95 @@ msgstr "" "Desculpe, mas recuperar a sua geolocalização está demorando mais que o " "esperado. Por favor, tente novamente mais tarde." -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Mensagens" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "L" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "O" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "em" -msgid "web" -msgstr "web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "no contexto" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Repetida por" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Responder a esta mensagem" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Responder" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Excluir esta mensagem" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Mensagem repetida" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Chamar a atenção deste usuário" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Chamar a atenção" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Chame a atenção deste usuário" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Erro ao inserir perfil novo." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Erro ao inserir avatar." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Erro ao inserir perfil remoto." @@ -8432,18 +8728,51 @@ msgstr "Erro ao inserir perfil remoto." msgid "Duplicate notice." msgstr "Nota duplicada." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Não foi possível inserir a nova assinatura." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Perfil" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Perfil do grupo" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Respostas" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Favoritos" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Usuário" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Mensagem" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Suas mensagens recebidas" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8467,31 +8796,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Configuração do SMS" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Alterar as suas configurações de perfil" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Configuração do usuário" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "Sair" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Sai do site" -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "Autentique-se no site" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "Pesquisar" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Procurar no site" #. TRANS: H2 text for user subscription statistics. @@ -8538,30 +8881,53 @@ msgstr "Todos os grupos" msgid "Unimplemented method." msgstr "Método não implementado." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grupos" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Grupos de usuário" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Etiquetas recentes" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Etiquetas recentes" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Em destaque" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Popular" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Sem argumentos return-to." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Repetir esta mensagem?" -msgid "Yes" -msgstr "Sim" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Repetir esta mensagem" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Revoga o papel \"%s\" deste usuário" @@ -8571,9 +8937,13 @@ msgstr "Revoga o papel \"%s\" deste usuário" msgid "Page not found." msgstr "O método da API não foi encontrado!" +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Isolamento" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Colocar este usuário em isolamento" @@ -8591,128 +8961,276 @@ msgctxt "BUTTON" msgid "Search" msgstr "Pesquisar" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Pessoas" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Encontre pessoas neste site" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Mensagens" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Encontre conteúdo de mensagens" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Encontre grupos neste site" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "Ajuda" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Sobre" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "FAQ" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "Termos de uso" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Privacidade" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Fonte" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Versão" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Contato" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Mini-aplicativo" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Seção sem título" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Mais..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Configuração do SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Alterar as suas configurações de perfil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Enviar um avatar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Senha" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Alterar a sua senha" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "E-mail" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Configurações de uso do e-mail" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Mude a aparência do seu perfil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "Site" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "MI" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Atualizações via mensageiro instantâneo (MI)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Atualizações via SMS" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Conexões" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Aplicações autorizadas conectadas" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Silenciar" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Silenciar este usuário" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Assinaturas" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Assinaturas de %s" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Assinantes" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Assinantes de %s" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Grupos dos quais %s é membro" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "Convidar" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Convide seus amigos e colegas para unir-se a você no %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Assinar este usuário" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Nuvem de etiquetas pessoais definidas pelas próprios usuários" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Nuvem de etiquetas pessoais definidas pelos outros usuário" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Nenhuma" @@ -8721,19 +9239,27 @@ msgstr "Nenhuma" msgid "Invalid theme name." msgstr "Nome de arquivo inválido." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" "Este servidor não pode processar o envio de temas sem suporte ao formato ZIP." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "O arquivo do tema não foi localizado ou ocorreu uma erro no envio." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Não foi possível salvar o tema." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Tema inválido: estrutura de diretórios incorreta." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, fuzzy, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8743,9 +9269,12 @@ msgstr[0] "" msgstr[1] "" "O tema enviado é muito grande; ele deve ter menos de %d bytes descomprimido." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Arquivo de tema inválido: está faltando o arquivo css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -8753,22 +9282,20 @@ msgstr "" "O tema contém um nome de arquivo ou de diretório inválido. Use somente " "caracteres ASCII, números e os sinais de sublinhado e hífen." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "O tema contém extensões de arquivo inseguras; pode não ser seguro." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "O tema contém um arquivo do tipo '.%s', que não é permitido." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Ocorreu um erro ao abrir o arquivo do tema." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Mensagens" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -8799,8 +9326,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Acrescentar às favoritas" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Excluir das favoritas" @@ -8812,8 +9340,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Você já repetiu essa mensagem." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Você já repetiu essa mensagem." @@ -8823,6 +9352,28 @@ msgstr[1] "Você já repetiu essa mensagem." msgid "Top posters" msgstr "Quem mais publica" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Para" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Idioma \"%s\" desconhecido." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8941,7 +9492,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "" -#~ "A mensagem é muito extensa - o máximo são %1$d caracteres e você enviou %2" -#~ "$d." +#~ msgid "Couldn't update your design." +#~ msgstr "Não foi possível atualizar a aparência." diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index a208159af4..b4c4aef9c4 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -18,21 +18,55 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:10+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:16+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Неизвестно" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Неизвестное действие" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Доступ" @@ -85,7 +119,9 @@ msgstr "Сохранить настройки доступа" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -97,6 +133,7 @@ msgstr "Сохранить" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Нет такой страницы." @@ -115,6 +152,7 @@ msgstr "Нет такой страницы." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -139,8 +177,11 @@ msgstr "Нет такой страницы." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Нет такого пользователя." @@ -153,7 +194,15 @@ msgstr "%1$s и друзья, страница %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s и друзья" @@ -223,28 +272,14 @@ msgstr "Вы и друзья" msgid "Updates from %1$s and friends on %2$s!" msgstr "Обновлено от %1$s и его друзей на %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "Метод API не найден." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -280,6 +315,7 @@ msgstr "Не удаётся обновить пользователя." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "У пользователя нет профиля." @@ -322,6 +358,8 @@ msgstr "Не удаётся сохранить ваши настройки оф #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Не удаётся обновить ваше оформление." @@ -697,9 +735,12 @@ msgstr "Ключ запроса уже авторизован." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Проблема с вашим ключом сессии. Пожалуйста, попробуйте ещё раз." @@ -854,16 +895,6 @@ msgstr "Вы не можете удалять статус других поль msgid "No such notice." msgstr "Нет такой записи." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Невозможно повторить собственную запись." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Запись уже повторена." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -905,8 +936,11 @@ msgstr "Запись %d удалена" msgid "Client must provide a 'status' parameter with a value." msgstr "Клиент должен предоставить параметр «status» со значением." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -920,6 +954,8 @@ msgstr "Родительская запись не найдена." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -990,6 +1026,8 @@ msgstr "Записи %1$s, повторённые для %2$s / %3$s." msgid "Repeats of %s" msgstr "Повторы за %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "Записи %1$s, повторённые %2$s / %3$s." @@ -1004,6 +1042,8 @@ msgstr "Записи с тегом %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Обновления с тегом %1$s на %2$s!" @@ -1118,11 +1158,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Отсутствующий профиль." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1130,10 +1172,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Список пользователей, являющихся членами этой группы." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1158,6 +1202,32 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Список пользователей, являющихся членами этой группы." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Не удаётся присоединить пользователя %1$s к группе %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Статус %1$s на %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +msgid "Subscription approved." +msgstr "Подписка авторизована." + +#. TRANS: Message on page for user after rejecting a subscription request. +msgid "Subscription canceled." +msgstr "Подписка отменена." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1194,8 +1264,8 @@ msgstr "Запись уже в числе любимых." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, php-format -msgid "%s group memberships" -msgstr "Участники группы %s" +msgid "Group memberships of %s" +msgstr "Участия в группах для %s" #. TRANS: Subtitle for group membership feed. #. TRANS: %1$s is a username, %2$s is the StatusNet sitename. @@ -1207,8 +1277,7 @@ msgstr "Группы, в которых состоит %1$s на %2$s" msgid "Cannot add someone else's membership." msgstr "Не удаётся добавить пользователя в группу." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "Возможна обработка только запросов на присоединение." @@ -1321,6 +1390,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Пользователь без соответствующего профиля." @@ -1347,6 +1417,7 @@ msgstr "Просмотр" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Удалить" @@ -1466,6 +1537,7 @@ msgstr "Не блокировать этого пользователя." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Да" @@ -1522,6 +1594,31 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s покинул группу %2$s" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Не авторизован." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Нет ID профиля в запросе." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Нет профиля с таким ID." + +#. TRANS: Title after unsubscribing from a group. +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Отписано" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Нет кода подтверждения." @@ -1661,6 +1758,7 @@ msgstr "Приложение не найдено." msgid "You are not the owner of this application." msgstr "Вы не являетесь владельцем этого приложения." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Проблема с вашим ключом сессии." @@ -1731,24 +1829,6 @@ msgstr "Не удалять эту группу." msgid "Delete this group." msgstr "Удалить эту группу." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Не авторизован." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1937,14 +2017,17 @@ msgid "Use defaults" msgstr "Использовать значения по умолчанию" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." msgstr "Восстановить оформление по умолчанию." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "Восстановить значения по умолчанию." #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." msgstr "Сохранить оформление." @@ -2283,6 +2366,7 @@ msgstr "Удаление записи из числа любимых." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Популярные записи" @@ -2324,6 +2408,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Любимые записи %s" @@ -2336,6 +2422,7 @@ msgstr "Обновления, понравившиеся %1$s на %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Особые пользователи" @@ -2397,6 +2484,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Удалённый сервис использует неизвестную версию протокола OMB." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Ошибка обновления удалённого профиля." @@ -2434,14 +2522,6 @@ msgstr "Пользователь уже имеет эту роль." msgid "No profile specified." msgstr "Профиль не определен." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Нет профиля с таким ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2571,13 +2651,13 @@ msgstr "Список пользователей, являющихся члена #. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. msgid "Only the group admin may approve users." -msgstr "" +msgstr "Только администратор группы может подтверждать пользователей." #. TRANS: Title of the first page showing pending group members still awaiting approval to join the group. #. TRANS: %s is the name of the group. -#, fuzzy, php-format +#, php-format msgid "%s group members awaiting approval" -msgstr "Участники группы %s" +msgstr "%s участников группы ожидают подтверждения" #. TRANS: Title of all but the first page showing pending group members still awaiting approval to join the group. #. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. @@ -3056,6 +3136,7 @@ msgid "License selection" msgstr "Выбор лицензии" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Личное" @@ -3288,6 +3369,9 @@ msgid "Ajax Error" msgstr "Ошибка AJAX" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Новая запись" @@ -3590,7 +3674,6 @@ msgid "Password saved." msgstr "Пароль сохранён." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Пути" @@ -3782,6 +3865,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Никогда" @@ -3937,18 +4021,22 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" -msgstr[0] "Опишите себя и свои увлечения при помощи %d символа" -msgstr[1] "Опишите себя и свои увлечения при помощи %d символов" -msgstr[2] "Опишите себя и свои увлечения при помощи %d символов" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." +msgstr[0] "Опишите себя и свои увлечения при помощи %d символа." +msgstr[1] "Опишите себя и свои увлечения при помощи %d символов." +msgstr[2] "Опишите себя и свои увлечения при помощи %d символов." #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" -msgstr "Опишите себя и свои интересы" +#. TRANS: Text area title on account registration page. +msgid "Describe yourself and your interests." +msgstr "Опишите себя и свои интересы." -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3961,14 +4049,18 @@ msgid "Location" msgstr "Местоположение" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Где вы находитесь, например «Город, область, страна»" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Где вы находитесь, например «Город, область (или регион), страна»." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" msgstr "Делиться своим текущим местоположением при отправке записей" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Теги" @@ -4002,6 +4094,28 @@ msgstr "" "Автоматически подписываться на всех, кто подписался на меня (идеально для " "людей-машин)." +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Подписки" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "Можно следить только за людьми." + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4033,7 +4147,8 @@ msgstr "Неверный тег «%s»." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -msgid "Could not update user for autosubscribe." +#, fuzzy +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Не удаётся обновить пользователя для автоподписки." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4041,6 +4156,7 @@ msgid "Could not save location prefs." msgstr "Не удаётся сохранить настройки местоположения." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Не удаётся сохранить теги." @@ -4071,6 +4187,7 @@ msgid "Public timeline, page %d" msgstr "Общая лента, страница %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Общая лента" @@ -4250,10 +4367,6 @@ msgstr "Запрошено восстановление пароля" msgid "Password saved" msgstr "Пароль сохранён" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Неизвестное действие" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "6 или более символов, и не забывайте его!" @@ -4345,6 +4458,7 @@ msgid "You cannot register if you do not agree to the license." msgstr "" "Вы не можете зарегистрироваться без подтверждения лицензионного соглашения." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Такой электронный адрес уже задействован." @@ -4379,25 +4493,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "Полное имя, предпочтительно ваше настоящее имя." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Опишите себя и свои увлечения при помощи %d символа." -msgstr[1] "Опишите себя и свои увлечения при помощи %d символов." -msgstr[2] "Опишите себя и свои увлечения при помощи %d символов." - -#. TRANS: Text area title on account registration page. -msgid "Describe yourself and your interests." -msgstr "Опишите себя и свои интересы." - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Где вы находитесь, например «Город, область (или регион), страна»." - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. msgctxt "BUTTON" msgid "Register" msgstr "Регистрация" @@ -4515,6 +4611,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "URL-адрес вашего профиля на другом совместимом сервисе микроблогинга." #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. msgctxt "BUTTON" msgid "Subscribe" msgstr "Подписаться" @@ -4545,15 +4643,8 @@ msgstr "Повторять записи могут только вошедшие msgid "No notice specified." msgstr "Не указана запись." -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "Вы не можете повторить собственную запись." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Вы уже повторили эту запись." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Повторено" @@ -4564,6 +4655,8 @@ msgstr "Повторено!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Ответы для %s" @@ -4675,6 +4768,7 @@ msgid "System error uploading file." msgstr "Системная ошибка при загрузке файла." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." msgstr "Не является каналом Atom." @@ -4716,6 +4810,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "" "Вы не можете устанавливать режим песочницы для пользователей этого сайта." @@ -4725,7 +4820,6 @@ msgid "User is already sandboxed." msgstr "Пользователь уже в режиме песочницы." #. TRANS: Title for the sessions administration panel. -#, fuzzy msgctxt "TITLE" msgid "Sessions" msgstr "Сессии" @@ -4735,7 +4829,6 @@ msgid "Session settings for this StatusNet site" msgstr "Настройки сессии для этого сайта StatusNet" #. TRANS: Fieldset legend on the sessions administration panel. -#, fuzzy msgctxt "LEGEND" msgid "Sessions" msgstr "Сессии" @@ -4747,9 +4840,8 @@ msgstr "Управление сессиями" #. TRANS: Checkbox title on the sessions administration panel. #. TRANS: Indicates if StatusNet should handle session administration. -#, fuzzy msgid "Handle sessions ourselves." -msgstr "Управлять ли сессиями самостоятельно." +msgstr "Управлять сессиями самостоятельно." #. TRANS: Checkbox label on the sessions administration panel. #. TRANS: Indicates if StatusNet should write session debugging output. @@ -4757,14 +4849,12 @@ msgid "Session debugging" msgstr "Отладка сессий" #. TRANS: Checkbox title on the sessions administration panel. -#, fuzzy msgid "Enable debugging output for sessions." msgstr "Включить отладочный вывод для сессий." #. TRANS: Title for submit button on the sessions administration panel. -#, fuzzy msgid "Save session settings" -msgstr "Сохранить настройки доступа" +msgstr "Сохранить настройки сессий" #. TRANS: Client error displayed trying to display an OAuth application while not logged in. msgid "You must be logged in to view an application." @@ -4777,12 +4867,12 @@ msgstr "Профиль приложения" #. TRANS: Information output on an OAuth application page. #. TRANS: %1$s is the application creator, %2$s is "read-only" or "read-write", #. TRANS: %3$d is the number of users using the OAuth application. -#, fuzzy, php-format +#, php-format msgid "Created by %1$s - %2$s access by default - %3$d user" msgid_plural "Created by %1$s - %2$s access by default - %3$d users" -msgstr[0] "Создано %1$s — доступ по умолчанию: %2$s — %3$d польз." -msgstr[1] "Создано %1$s — доступ по умолчанию: %2$s — %3$d польз." -msgstr[2] "Создано %1$s — доступ по умолчанию: %2$s — %3$d польз." +msgstr[0] "Создатель: %1$s — доступ по умолчанию: %2$s — %3$d пользователь" +msgstr[1] "Создатель: %1$s — доступ по умолчанию: %2$s — %3$d пользователя" +msgstr[2] "Создатель: %1$s — доступ по умолчанию: %2$s — %3$d пользователей" #. TRANS: Header on the OAuth application page. msgid "Application actions" @@ -4916,6 +5006,8 @@ msgstr "Участники" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(пока ничего нет)" @@ -4973,7 +5065,6 @@ msgstr "" "короткими сообщениями о своей жизни и интересах. " #. TRANS: Title for list of group administrators on a group page. -#, fuzzy msgctxt "TITLE" msgid "Admins" msgstr "Администраторы" @@ -4998,27 +5089,31 @@ msgstr "Сообщение для %1$s на %2$s" msgid "Message from %1$s on %2$s" msgstr "Сообщение от %1$s на %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +msgid "Not available." +msgstr "Не доступно." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Запись удалена." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" +#, fuzzy, php-format +msgid "Notices by %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, %3$d is the page number. -#, php-format -msgid "%1$s tagged %2$s, page %3$d" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%1$s с тегом %2$s, страница %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, страница %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Записи с тегом %1$s, страница %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5108,6 +5203,7 @@ msgid "Repeat of %s" msgstr "Повтор за %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Вы не можете заглушать пользователей на этом сайте." @@ -5116,7 +5212,6 @@ msgid "User is already silenced." msgstr "Пользователь уже заглушён." #. TRANS: Title for site administration panel. -#, fuzzy msgctxt "TITLE" msgid "Site" msgstr "Сайт" @@ -5148,53 +5243,46 @@ msgid "Dupe limit must be one or more seconds." msgstr "Ограничение дублирования должно составлять одну или более секунд." #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "General" -msgstr "Базовые" +msgstr "Основные" #. TRANS: Field label on site settings panel. -#, fuzzy msgctxt "LABEL" msgid "Site name" msgstr "Имя сайта" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "The name of your site, like \"Yourcompany Microblog\"." -msgstr "Имя вашего сайта, например, «Yourcompany Microblog»" +msgstr "Имя вашего сайта, например, «Yourcompany Microblog»." #. TRANS: Field label on site settings panel. msgid "Brought by" msgstr "Предоставлено" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "Text used for credits link in footer of each page." msgstr "" -"Текст, используемый для указания авторов в нижнем колонтитуле каждой страницы" +"Текст, используемый для указания авторов в нижнем колонтитуле каждой " +"страницы." #. TRANS: Field label on site settings panel. msgid "Brought by URL" msgstr "URL-адрес поставщика услуг" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "URL used for credits link in footer of each page." -msgstr "" -"URL, используемый для ссылки на авторов в нижнем колонтитуле каждой страницы" +msgstr "URL ссылки на авторов в нижнем колонтитуле каждой страницы." #. TRANS: Field label on site settings panel. msgid "Email" msgstr "Email" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "Contact email address for your site." -msgstr "Контактный email-адрес для вашего сайта" +msgstr "Контактный email-адрес для вашего сайта." #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Local" msgstr "Внутренние настройки" @@ -5217,10 +5305,9 @@ msgstr "" "Язык сайта в случае, если автоопределение из настроек браузера не сработало" #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Limits" -msgstr "Границы" +msgstr "Ограничения" #. TRANS: Field label on site settings panel. msgid "Text limit" @@ -5404,52 +5491,67 @@ msgstr "" msgid "No code entered." msgstr "Код не введён." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" msgid "Snapshots" msgstr "Снимки" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Управление снимками конфигурации" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Неверное значение запуска снимка." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "Частота снимков должна быть числом." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "Неверный URL отчёта снимка." +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Снимки" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "При случайном веб-обращении" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "По заданному графику" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Снимки данных" -msgid "When to send statistical data to status.net servers" -msgstr "Когда отправлять статистические данные на сервера status.net" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." +msgstr "Когда отправлять статистические данные на сервера status.net." +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Частота" -msgid "Snapshots will be sent once every N web hits" -msgstr "Снимки будут отправляться каждые N посещений" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." +msgstr "Снимки будут отправляться каждые N посещений." +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL отчёта" -msgid "Snapshots will be sent to this URL" -msgstr "Снимки будут отправляться по этому URL-адресу" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." +msgstr "Снимки будут отправляться по этому URL-адресу." -#. TRANS: Submit button title. -msgid "Save" -msgstr "Сохранить" - -msgid "Save snapshot settings" -msgstr "Сохранить настройки снимка" +#. TRANS: Title for button to save snapshot settings. +msgid "Save snapshot settings." +msgstr "Сохранить настройки снимка." #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. msgid "You are not subscribed to that profile." @@ -5460,6 +5562,27 @@ msgstr "Вы не подписаны на этот профиль." msgid "Could not save subscription." msgstr "Не удаётся сохранить подписку." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "Участники группы %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Участники группы %1$s, страница %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Список пользователей, являющихся членами этой группы." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5583,31 +5706,43 @@ msgstr "СМС" msgid "Notices tagged with %1$s, page %2$d" msgstr "Записи с тегом %1$s, страница %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Лента записей для тега %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Лента записей для тега %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Лента записей для тега %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Нет аргумента ID." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Теги %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Профиль пользователя" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Теги для пользователя" +#. TRANS: Title for input field for inputting tags on "tag other users" page. msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " "spaces." @@ -5615,16 +5750,25 @@ msgstr "" "Теги для этого пользователя (буквы, цифры, -, ., и _), разделённые запятыми " "или пробелами." +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Вы можете помечать тегами только пользователей, на которых подписаны или " "которые подписаны на Вас." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Теги" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Используйте эту форму для добавления тегов Вашим подписчикам или подписантам." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Нет такого тега." @@ -5632,24 +5776,30 @@ msgstr "Нет такого тега." msgid "You haven't blocked that user." msgstr "Вы не заблокировали этого пользователя." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Для пользователя не установлен режим песочницы." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Пользователь не заглушён." -msgid "No profile ID in request." -msgstr "Нет ID профиля в запросе." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Отписано" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "Лицензия просматриваемого потока «%1$s» несовместима с лицензией сайта «%2$s»." +#. TRANS: Title of URL settings tab in profile settings. msgid "URL settings" msgstr "Настройки URL-адреса" @@ -5663,9 +5813,11 @@ msgstr "Управление другими опциями." msgid " (free service)" msgstr " (свободный сервис)" +#. TRANS: Default value for URL shortening settings. msgid "[none]" msgstr "[нет]" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "[внутренний]" @@ -5677,16 +5829,20 @@ msgstr "Сокращать URL с помощью" msgid "Automatic shortening service to use." msgstr "Автоматически использовать выбранный сервис" +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "URL-адрес длиной более" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" "URL-адреса, длиннее этого значения, будут сокращены (0 — всегда сокращать)." +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "Текст больше, чем" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5697,16 +5853,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Сервис сокращения URL слишком длинный (максимум 50 символов)." -msgid "Invalid number for max url length." +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum URL length." msgstr "Неверное значение параметра максимальной длины URL-адреса." -msgid "Invalid number for max notice length." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." msgstr "Неверное значение параметра максимальной длины сообщения." +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "Ошибка при сохранении настроек сервиса сокращения URL." -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Пользователь" @@ -5730,6 +5891,9 @@ msgstr "" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Неверная подписка по умолчанию: «%1$s» не является пользователем." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Профиль" @@ -5781,7 +5945,7 @@ msgstr "Сохранить пользовательские настройки." msgid "Authorize subscription" msgstr "Авторизовать подписку" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5793,16 +5957,19 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "Принять" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. msgid "Subscribe to this user." msgstr "Подписаться на этого пользователя." #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "Отказаться" @@ -5819,9 +5986,10 @@ msgstr "Не авторизованный запрос!" msgid "Subscription authorized" msgstr "Подписка авторизована" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "Подписка авторизована, но нет обратного URL. Посмотрите инструкции на сайте " @@ -5831,9 +5999,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Подписка отменена" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "Подписка отвергнута, но не бы передан URL обратного вызова. Проверьте " @@ -5863,15 +6032,6 @@ msgstr "Просматривающий URI «%s» является локаль msgid "Profile URL \"%s\" is for a local user." msgstr "URL профиля «%s» предназначен только для локального пользователя." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"Лицензия просматриваемого потока «%1$s» несовместима с лицензией сайта «%2$s»." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, php-format @@ -5976,7 +6136,6 @@ msgid "Contributors" msgstr "Разработчики" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Лицензия" @@ -6015,7 +6174,6 @@ msgstr "" "этой программой. Если нет, см. %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Плагины" @@ -6101,18 +6259,6 @@ msgstr[2] "Файл такого размера превысит вашу мес msgid "Invalid filename." msgstr "Неверное имя файла." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Не удаётся присоединиться к группе." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Не является частью группы." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Не удаётся покинуть группу." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6125,6 +6271,18 @@ msgstr "Неверный идентификатор профиля %s." msgid "Group ID %s is invalid." msgstr "Неверный идентификатор группы %s." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Не удаётся присоединиться к группе." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Не является частью группы." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Не удаётся покинуть группу." + #. TRANS: Activity title. msgid "Join" msgstr "Присоединиться" @@ -6199,6 +6357,35 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Вам запрещено поститься на этом сайте (бан)" +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Невозможно повторить собственную запись." + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "Вы не можете повторить собственную запись." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Невозможно повторить собственную запись." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Невозможно повторить собственную запись." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Вы уже повторили эту запись." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "У пользователя нет последней записи." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6224,16 +6411,13 @@ msgstr "Не удаётся сохранить ответ для %1$d, %2$d." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6258,6 +6442,7 @@ msgid "Unable to save tag." msgstr "Не удаётся сохранить тег." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Вы заблокированы от подписки." @@ -6285,7 +6470,9 @@ msgstr "Не удаётся удалить подписочный жетон OMB msgid "Could not delete subscription." msgstr "Не удаётся удалить подписку." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Следить" @@ -6353,18 +6540,24 @@ msgid "User deletion in progress..." msgstr "Идёт удаление пользователя…" #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Изменение настроек профиля" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Редактировать" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Послать приватное сообщение этому пользователю." #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Сообщение" @@ -6386,10 +6579,6 @@ msgctxt "role" msgid "Moderator" msgstr "Модератор" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Подписаться" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6414,6 +6603,9 @@ msgstr "Ответить" msgid "Write a reply..." msgstr "Напишите ответ…" +#. TRANS: Tab on the notice form. +#, fuzzy +msgctxt "TAB" msgid "Status" msgstr "Состояние" @@ -6534,8 +6726,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Нет содержания для записи %s." -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "Нет такого пользователя %s." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6582,75 +6775,124 @@ msgstr "saveSettings() не реализована." msgid "Unable to delete design setting." msgstr "Не удаётся удалить настройки оформления." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Главная" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Главная" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Администрирование" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Основная конфигурация сайта" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Сайт" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Конфигурация оформления" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Оформление" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Конфигурация пользователя" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "User" msgstr "Пользователь" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Конфигурация доступа" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Access" +msgstr "Доступ" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Конфигурация путей" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Paths" +msgstr "Пути" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Конфигурация сессий" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "Sessions" msgstr "Сессии" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Изменить уведомление сайта" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Уведомление сайта" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Конфигурация снимков" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Snapshots" +msgstr "Снимки" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Установить лицензию сайта" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Лицензия" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Plugins configuration" msgstr "Конфигурация расширений" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Плагины" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6661,6 +6903,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "Нет приложения для этого пользовательского ключа." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "Не разрешается использовать API." @@ -6694,9 +6937,11 @@ msgstr "Не удаётся найти профиль и приложение, msgid "Could not issue access token." msgstr "Ошибка выдачи ключа доступа." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Ошибка базы данных при добавлении пользователя приложения OAuth." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "Ошибка базы данных при обновлении пользователя приложения OAuth." @@ -6791,6 +7036,17 @@ msgstr "" msgid "Cancel" msgstr "Отменить" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Сохранить" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Неизвестное действие" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr " от " @@ -6813,11 +7069,12 @@ msgstr "Подтверждён доступ %1$s — «%2$s»." msgid "Access token starting with: %s" msgstr "Ключ доступа, начинающийся на %s" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Отозвать" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "Элемент author должен содержать элемент name." @@ -6852,7 +7109,13 @@ msgstr "Заблокировать пользователя." #. TRANS: Submit button text on form to cancel group join request. msgctxt "BUTTON" msgid "Cancel join request" -msgstr "" +msgstr "Отменить запрос на вступление" + +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Отменить запрос на вступление" #. TRANS: Title for command results. msgid "Command results" @@ -6863,6 +7126,7 @@ msgid "AJAX error" msgstr "Ошибка AJAX" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Команда завершена" @@ -6982,6 +7246,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7006,10 +7272,6 @@ msgstr "Ошибка при отправке прямого сообщения." msgid "Notice from %s repeated." msgstr "Запись %s повторена." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Ошибка при повторении записи." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7308,13 +7570,19 @@ msgstr "Возможно, вы решите запустить установщ msgid "Go to the installer." msgstr "Перейти к установщику" +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Ошибка базы данных" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Общее" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Удалить" @@ -7322,6 +7590,7 @@ msgstr "Удалить" msgid "Delete this user" msgstr "Удалить этого пользователя" +#. TRANS: Form legend of form for changing the page design. msgid "Change design" msgstr "Изменение оформления" @@ -7333,14 +7602,6 @@ msgstr "Изменение цветовой гаммы" msgid "Use defaults" msgstr "Использовать значения по умолчанию" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Восстановить оформление по умолчанию" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Восстановить значения по умолчанию" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7348,10 +7609,10 @@ msgstr "Загрузить файл" #. TRANS: Instructions for form on profile design page. msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Вы можете загрузить собственное фоновое изображение. Максимальный размер " -"файла составляет 2Mb." +"файла составляет 2МБ." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. msgctxt "RADIO" @@ -7363,15 +7624,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Выключено" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "Не удаётся обновить ваше оформление." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Оформление по умолчанию восстановлено." @@ -7401,46 +7653,62 @@ msgctxt "BUTTON" msgid "Favor" msgstr "В любимые" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -msgid "Not an atom feed." -msgstr "Не является лентой Atom." - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "Не указан автор в ленте." -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +#, fuzzy +msgid "Cannot import without a user." msgstr "Невозможно импортировать без пользователя." #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Каналы" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Все" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Выберите тег для фильтрации" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Теги" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Выберите тег из выпадающего списка" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Перейти" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Назначить этому пользователю роль «%s»" @@ -7460,18 +7728,17 @@ msgid "URL of the homepage or blog of the group or topic." msgstr "Адрес домашней страницы или блога группы или темы." #. TRANS: Text area title for group description when there is no text limit. -#, fuzzy msgid "Describe the group or topic." -msgstr "Опишите группу или тему" +msgstr "Опишите группу или тему." #. TRANS: Text area title for group description. #. TRANS: %d is the number of characters available for the description. -#, 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[1] "Опишите группу или тему, используя до %d символов" -msgstr[2] "Опишите группу или тему, используя до %d символов" +msgstr[0] "Опишите группу или тему, используя до %d символа." +msgstr[1] "Опишите группу или тему, используя до %d символов." +msgstr[2] "Опишите группу или тему, используя до %d символов." #. TRANS: Field title on group edit form. msgid "" @@ -7504,25 +7771,25 @@ msgstr[2] "" "d имён." #. TRANS: Dropdown fieldd label on group edit form. -#, fuzzy msgid "Membership policy" -msgstr "Регистрация" +msgstr "Политика принятия" +#. TRANS: Group membership policy option. msgid "Open to all" -msgstr "" +msgstr "Открыта для всех" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" -msgstr "" +msgstr "Администратор должен подтверждать всех участников" #. TRANS: Dropdown field title on group edit form. msgid "Whether admin approval is required to join this group." -msgstr "" +msgstr "Нужно ли подтверждение администратора для присоединения к группе." #. TRANS: Indicator in group members list that this user is a group administrator. -#, fuzzy msgctxt "GROUPADMIN" msgid "Admin" -msgstr "Настройки" +msgstr "Администратор" #. TRANS: Menu item in the group navigation page. msgctxt "MENU" @@ -7578,6 +7845,7 @@ msgid "%s blocked users" msgstr "Заблокированные пользователи %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Настройки" @@ -7681,13 +7949,16 @@ msgstr[0] "%dБ" msgstr[1] "%dБ" msgstr[2] "%dБ" -#, php-format +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. +#, fuzzy, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" "Пользователь «%s» на сайте %s сообщил, что псевдоним %s принадлежит ему. Если " "это действительно так, вы можете подтвердить это, нажав на следующую ссылку: " @@ -7695,14 +7966,34 @@ msgstr "" "браузера.) Если вы не являетесь упомянутым пользователем или не запрашивали " "это подтверждение, просто проигнорируйте это сообщение." +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Неизвестный источник входящих сообщений %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Присоединиться" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Покинуть" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Вход" @@ -7764,6 +8055,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s теперь следит за вашими записями на %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s теперь следит за вашими записями на %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -7788,9 +8093,9 @@ msgstr "" #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Profile: %s" -msgstr "Профиль" +msgstr "Профиль: %s" #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is biographical information. @@ -7987,7 +8292,7 @@ msgstr "%1$s (@%2$s) отправил запись для вашего вним #. TRANS: %3$s is a URL to the notice, %4$s is the notice text, #. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty), #. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replies for the addressed user, -#, fuzzy, php-format +#, php-format msgid "" "%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" "\n" @@ -8007,7 +8312,7 @@ msgid "" "\n" "%7$s" msgstr "" -"%1$s (@%9$s) отправил вам сообщение («@-ответ») на %2$s.\n" +"%1$s отправил вам сообщение («@-ответ») на %2$s.\n" "\n" "Сообщение находится здесь:\n" "\n" @@ -8023,12 +8328,7 @@ msgstr "" "\n" "Список всех @-ответов для вас находится здесь:\n" "\n" -"%7$s\n" -"\n" -"С уважением,\n" -"%2$s\n" -"\n" -"PS Вы можете отключить эти уведомления по электронной почте здесь: %8$s\n" +"%7$s" #. TRANS: Subject of group join notification e-mail. #. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. @@ -8055,9 +8355,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Только сам пользователь может читать собственный почтовый ящик." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8066,32 +8368,48 @@ msgstr "" "вовлечения других пользователей в разговор. Сообщения, получаемые от других " "людей, видите только вы." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Входящие" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Ваши входящие сообщения" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Исходящие" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Ваши исходящие сообщения" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Сообщение не удаётся разобрать." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Незарегистрированный пользователь." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Простите, это не Ваш входящий электронный адрес." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Простите, входящих писем нет." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Неподдерживаемый формат файла изображения: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8145,10 +8463,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "Тип файла «%s» не поддерживается не этом сервере." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Послать прямую запись" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "Выберите получателя:" @@ -8156,29 +8477,67 @@ msgstr "Выберите получателя:" msgid "No mutual subscribers." msgstr "Нет взаимных подписчиков." +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Для" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "↵" +#. TRANS: Header in message list. msgid "Messages" msgstr "Сообщения" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "от" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Email" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +#, fuzzy +msgid "Cannot get author for activity." msgstr "Не удаётся получить автора действий." +#. TRANS: Client exception. msgid "Bookmark not posted to this group." msgstr "Закладки не была добавлена в эту группу." +#. TRANS: Client exception. msgid "Object not posted to this user." msgstr "Объект не добавлен для этого пользователя." -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +#, fuzzy +msgid "Do not know how to handle this kind of target." msgstr "Способ обработки цели такого типа неизвестен." #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8226,68 +8585,93 @@ msgstr "" "К сожалению, получение информации о вашем местонахождении заняло больше " "времени, чем ожидалось; повторите попытку позже" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +msgctxt "HEADER" +msgid "Notices" +msgstr "Записи" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "с. ш." -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "ю. ш." -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "в. д." -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "з. д." +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\" %4$s %5$u°%6$u'%7$u\" %8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "из" -msgid "web" -msgstr "web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "переписка" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Повторено" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Ответить на эту запись" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Ответить" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Удалить эту запись" -msgid "Notice repeated" -msgstr "Запись повторена" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +msgid "Notice repeated." +msgstr "Запись повторена." +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "Обновите свой статус…" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "«Подтолкнуть» этого пользователя" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "«Подтолкнуть»" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "«Подтолкнуть» этого пользователя" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Ошибка размещения нового профиля." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Ошибка размещения аватара." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Ошибка размещения удалённого профиля." @@ -8295,18 +8679,49 @@ msgstr "Ошибка размещения удалённого профиля." msgid "Duplicate notice." msgstr "Дублирующаяся запись." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Не удаётся вставить новую подписку." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Profile" +msgstr "Профиль" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Ваш профиль" +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" msgid "Replies" msgstr "Ответы" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Любимое" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Пользователь" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Сообщения" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Ваши входящие сообщения" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8330,28 +8745,44 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "(Описание отключённых расширений недоступно.)" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Settings" -msgstr "Установки СМС" +msgstr "Настройки" -msgid "Change your personal settings" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Change your personal settings." msgstr "Изменение персональных настроек" -msgid "Site configuration" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Site configuration." msgstr "Конфигурация сайта" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "Выход" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Выйти" -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "Войти" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "Поиск" -msgid "Search the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Search the site." msgstr "Поиск по сайту" #. TRANS: H2 text for user subscription statistics. @@ -8398,30 +8829,52 @@ msgstr "Все группы" msgid "Unimplemented method." msgstr "Нереализованный метод." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Группы" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Группы" +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" +msgid "Recent tags" +msgstr "Последние теги" + +#. TRANS: Menu item title in search group navigation panel. msgid "Recent tags" msgstr "Облако тегов" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Особые" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Популярное" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Нет аргумента return-to." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Повторить эту запись?" -msgid "Yes" -msgstr "Да" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Повторить эту запись" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Отозвать у этого пользователя роль «%s»" @@ -8430,9 +8883,13 @@ msgstr "Отозвать у этого пользователя роль «%s»" msgid "Page not found." msgstr "Страница не найдена." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Песочница" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Установить режим песочницы для этого пользователя" @@ -8450,128 +8907,273 @@ msgctxt "BUTTON" msgid "Search" msgstr "Найти" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Люди" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Найти человека на этом сайте" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Записи" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Найти запись по содержимому" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Найти группы на этом сайте" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "Помощь" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "О проекте" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "ЧаВо" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "TOS" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Пользовательское соглашение" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Исходный код" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Версия" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Контактная информация" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Бедж" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Секция без названия" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Далее…" +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Установки СМС" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Изменить ваши настройки профиля" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Аватар" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Загрузить аватару" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Пароль" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Измените свой пароль" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Email" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Изменить электронный адрес" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Оформить ваш профиль" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "Сокращатели ссылок" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Обновлено по IM" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Обновления по СМС" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" msgid "Connections" msgstr "Соединения" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Авторизованные соединённые приложения" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Заглушить" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Заглушить этого пользователя." -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Подписки" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Люди на которых подписан %s" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Подписчики" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Люди подписанные на %s" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Группы, в которых состоит %s" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "Пригласить" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Пригласите друзей и коллег стать такими же как вы участниками %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Подписаться на этого пользователя" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Облако собственных тегов людей" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Облако тегов людей" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Нет тегов" @@ -8579,18 +9181,26 @@ msgstr "Нет тегов" msgid "Invalid theme name." msgstr "Неверное имя темы оформления." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "Этот сервер не может обработать загруженные темы без поддержки ZIP." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Файл темы отсутствует или произошёл сбой при загрузке." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Ошибка при сохранении темы." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Ошибочная тема. Плохая структура директорий." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8605,9 +9215,12 @@ msgstr[2] "" "Размер загруженной темы слишком велик, в распакованном виде она должна " "занимать не более %d байт." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Недопустимый архив: темы. Отсутствует файл css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -8615,21 +9228,20 @@ msgstr "" "Тема содержит недопустимое имя файла или папки. Допустимы буквы ASCII, " "цифры, подчеркивание и знак минуса." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "Тема содержит файлы с опасным расширением; это может быть небезопасно." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Тема содержит файл недопустимого типа «.%s»." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Ошибка открытия архива темы." -#. TRANS: Header for Notices section. -msgctxt "HEADER" -msgid "Notices" -msgstr "Записи" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -8660,8 +9272,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Мне нравится эта запись." -#, php-format -msgctxt "FAVELIST" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. +#, fuzzy, php-format msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Эта запись понравилась %d пользователю." @@ -8673,8 +9286,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Вы уже повторили эту запись." -#, php-format -msgctxt "REPEATLIST" +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. +#, fuzzy, php-format msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Запись повторена %d пользователем." @@ -8685,6 +9299,28 @@ msgstr[2] "Запись повторена %d пользователями." msgid "Top posters" msgstr "Самые активные" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Для" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Неизвестное действие «%s»." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8804,6 +9440,5 @@ msgstr "Неверный XML, отсутствует корень XRD." msgid "Getting backup from file '%s'." msgstr "Получение резервной копии из файла «%s»." -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "" -#~ "Сообщение слишком длинное — не больше %1$d символов, вы отправили %2$d." +#~ msgid "Couldn't update your design." +#~ msgstr "Не удаётся обновить ваше оформление." diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 47d27a9fe0..5847bda11c 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-03-26 11:02+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,9 +17,48 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" +#. TRANS: Database error message. +#: index.php:110 +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +#: index.php:121 +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +#: index.php:131 +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#: index.php:255 +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#: index.php:286 +msgid "Unknown page" +msgstr "" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +#: index.php:341 actions/recoverpassword.php:232 +msgid "Unknown action" +msgstr "" + #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:53 lib/adminpanelnav.php:110 +#: actions/accessadminpanel.php:53 msgid "Access" msgstr "" @@ -80,7 +119,9 @@ msgstr "" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -89,19 +130,21 @@ msgstr "" #: actions/accessadminpanel.php:193 actions/designadminpanel.php:732 #: actions/emailsettings.php:251 actions/imsettings.php:201 #: actions/licenseadminpanel.php:335 actions/pathsadminpanel.php:517 -#: actions/profilesettings.php:198 actions/sessionsadminpanel.php:202 +#: actions/profilesettings.php:215 actions/sessionsadminpanel.php:202 #: actions/siteadminpanel.php:319 actions/sitenoticeadminpanel.php:197 -#: actions/smssettings.php:204 actions/subscriptions.php:261 -#: actions/tagother.php:134 actions/urlsettings.php:152 -#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 -#: lib/designform.php:320 lib/groupeditform.php:228 +#: actions/smssettings.php:204 actions/snapshotadminpanel.php:252 +#: actions/subscriptions.php:261 actions/tagother.php:144 +#: actions/urlsettings.php:152 actions/useradminpanel.php:300 +#: lib/applicationeditform.php:355 lib/designform.php:315 +#: lib/groupeditform.php:230 msgctxt "BUTTON" msgid "Save" msgstr "" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) -#: actions/all.php:68 actions/public.php:99 actions/replies.php:93 +#. TRANS: Server error when page not found (404). +#: actions/all.php:68 actions/public.php:102 actions/replies.php:93 #: actions/showfavorites.php:140 actions/tag.php:52 msgid "No such page." msgstr "" @@ -121,6 +164,7 @@ msgstr "" #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -145,8 +189,11 @@ msgstr "" #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. #: actions/all.php:80 actions/allrss.php:69 #: actions/apiaccountupdatedeliverydevice.php:110 @@ -157,19 +204,19 @@ msgstr "" #: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72 #: actions/apigroupcreate.php:111 actions/apigroupismember.php:89 #: actions/apigroupjoin.php:98 actions/apigroupleave.php:98 -#: actions/apigrouplist.php:70 actions/apigroupprofileupdate.php:106 +#: actions/apigrouplist.php:71 actions/apigroupprofileupdate.php:107 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 #: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:72 actions/foaf.php:42 actions/foaf.php:61 #: actions/hcard.php:67 actions/microsummary.php:63 actions/newmessage.php:119 -#: actions/otp.php:78 actions/remotesubscribe.php:155 -#: actions/remotesubscribe.php:165 actions/replies.php:72 +#: actions/otp.php:78 actions/remotesubscribe.php:156 +#: actions/remotesubscribe.php:166 actions/replies.php:72 #: actions/repliesrss.php:38 actions/rsd.php:114 actions/showfavorites.php:106 -#: actions/userbyid.php:75 actions/usergroups.php:95 actions/userrss.php:40 -#: actions/userxrd.php:59 actions/xrds.php:71 lib/command.php:503 -#: lib/galleryaction.php:59 lib/mailbox.php:80 lib/profileaction.php:77 +#: actions/userbyid.php:75 actions/usergroups.php:95 actions/userrss.php:41 +#: actions/userxrd.php:60 actions/xrds.php:71 lib/command.php:503 +#: lib/galleryaction.php:61 lib/mailbox.php:79 lib/profileaction.php:77 msgid "No such user." msgstr "" @@ -182,10 +229,18 @@ msgstr "" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #: actions/all.php:94 actions/all.php:185 actions/allrss.php:117 -#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 -#: lib/adminpanelnav.php:70 lib/personalgroupnav.php:75 lib/settingsnav.php:71 +#: actions/apitimelinefriends.php:209 actions/apitimelinehome.php:113 +#: lib/adminpanelnav.php:73 lib/personalgroupnav.php:77 lib/settingsnav.php:73 #, php-format msgid "%s and friends" msgstr "" @@ -253,32 +308,16 @@ msgstr "" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. #. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/allrss.php:122 actions/apitimelinefriends.php:213 +#: actions/allrss.php:122 actions/apitimelinefriends.php:215 #: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" -#. TRANS: Client error displayed handling a non-existing API method. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#: actions/apiaccountratelimitstatus.php:69 +#. TRANS: Client error displayed when coming across a non-supported API method. +#: actions/apiaccountratelimitstatus.php:70 #: actions/apiaccountupdatedeliverydevice.php:92 #: actions/apiaccountupdateprofile.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:92 @@ -288,22 +327,24 @@ msgstr "" #: actions/apifriendshipscreate.php:99 actions/apifriendshipsdestroy.php:99 #: actions/apifriendshipsshow.php:124 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:115 actions/apigroupjoin.php:148 -#: actions/apigroupleave.php:138 actions/apigrouplist.php:134 +#: actions/apigroupleave.php:138 actions/apigrouplist.php:135 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:105 -#: actions/apigroupprofileupdate.php:97 actions/apigroupprofileupdate.php:215 +#: actions/apigroupprofileupdate.php:98 actions/apigroupprofileupdate.php:216 #: actions/apigroupshow.php:114 actions/apihelptest.php:84 #: actions/apistatusesdestroy.php:101 actions/apistatusesretweets.php:110 #: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:139 #: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109 -#: actions/apitimelinefavorites.php:182 actions/apitimelinefriends.php:276 +#: actions/apitimelinefavorites.php:182 actions/apitimelinefriends.php:278 #: actions/apitimelinegroup.php:148 actions/apitimelinehome.php:181 #: actions/apitimelinementions.php:182 actions/apitimelinepublic.php:247 #: actions/apitimelineretweetedtome.php:150 -#: actions/apitimelineretweetsofme.php:147 actions/apitimelinetag.php:165 +#: actions/apitimelineretweetsofme.php:149 actions/apitimelinetag.php:165 #: actions/apitimelineuser.php:217 actions/apiusershow.php:100 msgid "API method not found." msgstr "" +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. #: actions/apiaccountupdatedeliverydevice.php:83 @@ -315,7 +356,7 @@ msgstr "" #: actions/apifavoritecreate.php:88 actions/apifavoritedestroy.php:88 #: actions/apifriendshipscreate.php:89 actions/apifriendshipsdestroy.php:89 #: actions/apigroupcreate.php:102 actions/apigroupjoin.php:89 -#: actions/apigroupleave.php:89 actions/apigroupprofileupdate.php:88 +#: actions/apigroupleave.php:89 actions/apigroupprofileupdate.php:89 #: actions/apimediaupload.php:66 actions/apistatusesretweet.php:63 #: actions/apistatusesupdate.php:194 msgid "This method requires a POST." @@ -339,9 +380,9 @@ msgstr "" #. TRANS: Server exception thrown on Profile design page when updating design settings fails. #: actions/apiaccountupdatedeliverydevice.php:136 #: actions/confirmaddress.php:122 actions/emailsettings.php:353 -#: actions/emailsettings.php:499 actions/profilesettings.php:323 -#: actions/smssettings.php:300 actions/smssettings.php:453 -#: actions/urlsettings.php:211 actions/userdesignsettings.php:315 +#: actions/emailsettings.php:499 actions/profilesettings.php:342 +#: actions/smssettings.php:301 actions/smssettings.php:454 +#: actions/urlsettings.php:213 actions/userdesignsettings.php:315 msgid "Could not update user." msgstr "" @@ -355,6 +396,7 @@ msgstr "" #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 @@ -362,14 +404,14 @@ msgstr "" #: actions/apiaccountupdateprofileimage.php:131 #: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108 #: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75 -#: actions/replies.php:80 actions/usergroups.php:103 lib/galleryaction.php:66 +#: actions/replies.php:80 actions/usergroups.php:103 lib/galleryaction.php:69 #: lib/profileaction.php:85 msgid "User has no profile." msgstr "" #. TRANS: Server error displayed if a user profile could not be saved. #. TRANS: Server error thrown when user profile settings could not be saved. -#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:419 +#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:442 msgid "Could not save profile." msgstr "" @@ -412,9 +454,12 @@ msgstr "" #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: actions/apiaccountupdateprofilebackgroundimage.php:191 #: actions/apiaccountupdateprofilecolors.php:139 -#: actions/userdesignsettings.php:199 +#: actions/userdesignsettings.php:199 lib/designsettings.php:217 +#: lib/designsettings.php:239 msgid "Could not update your design." msgstr "" @@ -429,7 +474,7 @@ msgstr "" #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/apiatomservice.php:93 actions/grouprss.php:138 -#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:63 #: lib/atomusernoticefeed.php:88 #, php-format msgid "%s timeline" @@ -508,7 +553,7 @@ msgstr "" #. TRANS: %d is the maximum number of characters for a message. #. TRANS: Form validation error displayed when message content is too long. #. TRANS: %d is the maximum number of characters for a message. -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:158 +#: actions/apidirectmessagenew.php:127 actions/newmessage.php:159 #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." @@ -547,7 +592,7 @@ msgstr "" #. TRANS: Client error displayed when marking a notice as favourite fails. #. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database. #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:306 +#: actions/apifavoritecreate.php:132 actions/favor.php:87 lib/command.php:306 msgid "Could not create favorite." msgstr "" @@ -605,9 +650,9 @@ msgstr "" #. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #. TRANS: Form validation error displayed when trying to register with an existing nickname. -#: actions/apigroupcreate.php:156 actions/apigroupprofileupdate.php:256 +#: actions/apigroupcreate.php:156 actions/apigroupprofileupdate.php:257 #: actions/editgroup.php:192 actions/newgroup.php:138 -#: actions/profilesettings.php:274 actions/register.php:209 +#: actions/profilesettings.php:293 actions/register.php:210 msgid "Nickname already in use. Try another one." msgstr "" @@ -617,9 +662,9 @@ msgstr "" #. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #. TRANS: Form validation error displayed when trying to register with an invalid nickname. -#: actions/apigroupcreate.php:164 actions/apigroupprofileupdate.php:261 +#: actions/apigroupcreate.php:164 actions/apigroupprofileupdate.php:262 #: actions/editgroup.php:196 actions/newgroup.php:142 -#: actions/profilesettings.php:244 actions/register.php:212 +#: actions/profilesettings.php:263 actions/register.php:213 msgid "Not a valid nickname." msgstr "" @@ -631,10 +676,10 @@ msgstr "" #. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #. TRANS: Form validation error displayed when trying to register with an invalid homepage URL. -#: actions/apigroupcreate.php:181 actions/apigroupprofileupdate.php:280 -#: actions/editapplication.php:235 actions/editgroup.php:203 -#: actions/newapplication.php:221 actions/newgroup.php:149 -#: actions/profilesettings.php:249 actions/register.php:220 +#: actions/apigroupcreate.php:181 actions/apigroupprofileupdate.php:281 +#: actions/editapplication.php:236 actions/editgroup.php:203 +#: actions/newapplication.php:222 actions/newgroup.php:149 +#: actions/profilesettings.php:268 actions/register.php:222 msgid "Homepage is not a valid URL." msgstr "" @@ -644,9 +689,9 @@ msgstr "" #. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #. TRANS: Form validation error displayed when trying to register with a too long full name. -#: actions/apigroupcreate.php:191 actions/apigroupprofileupdate.php:290 +#: actions/apigroupcreate.php:191 actions/apigroupprofileupdate.php:291 #: actions/editgroup.php:207 actions/newgroup.php:153 -#: actions/profilesettings.php:253 actions/register.php:224 +#: actions/profilesettings.php:272 actions/register.php:226 msgid "Full name is too long (maximum 255 characters)." msgstr "" @@ -661,9 +706,9 @@ msgstr "" #. TRANS: %d is the maximum number of characters for the description. #. TRANS: Group create form validation error. #. TRANS: %d is the maximum number of allowed characters. -#: actions/apigroupcreate.php:201 actions/apigroupprofileupdate.php:300 -#: actions/editapplication.php:202 actions/editgroup.php:212 -#: actions/newapplication.php:182 actions/newgroup.php:158 +#: actions/apigroupcreate.php:201 actions/apigroupprofileupdate.php:301 +#: actions/editapplication.php:203 actions/editgroup.php:212 +#: actions/newapplication.php:183 actions/newgroup.php:158 #, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -676,9 +721,9 @@ msgstr[1] "" #. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #. TRANS: Form validation error displayed when trying to register with a too long location. -#: actions/apigroupcreate.php:215 actions/apigroupprofileupdate.php:312 +#: actions/apigroupcreate.php:215 actions/apigroupprofileupdate.php:313 #: actions/editgroup.php:219 actions/newgroup.php:165 -#: actions/profilesettings.php:266 actions/register.php:236 +#: actions/profilesettings.php:285 actions/register.php:238 msgid "Location is too long (maximum 255 characters)." msgstr "" @@ -690,7 +735,7 @@ msgstr "" #. TRANS: %d is the maximum number of allowed aliases. #. TRANS: Group create form validation error. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:236 actions/apigroupprofileupdate.php:331 +#: actions/apigroupcreate.php:236 actions/apigroupprofileupdate.php:332 #: actions/editgroup.php:232 actions/newgroup.php:178 #, php-format msgid "Too many aliases! Maximum %d allowed." @@ -702,7 +747,7 @@ msgstr[1] "" #. TRANS: %s is the invalid alias. #. TRANS: API validation exception thrown when aliases does not validate. #. TRANS: %s is the invalid alias. -#: actions/apigroupcreate.php:253 actions/apigroupprofileupdate.php:349 +#: actions/apigroupcreate.php:253 actions/apigroupprofileupdate.php:350 #, php-format msgid "Invalid alias: \"%s\"." msgstr "" @@ -713,7 +758,7 @@ msgstr "" #. TRANS: %s is the already used alias. #. TRANS: Group edit form validation error. #. TRANS: Group create form validation error. %s is the already used alias. -#: actions/apigroupcreate.php:264 actions/apigroupprofileupdate.php:360 +#: actions/apigroupcreate.php:264 actions/apigroupprofileupdate.php:361 #: actions/editgroup.php:247 actions/newgroup.php:194 #, php-format msgid "Alias \"%s\" already in use. Try another one." @@ -734,7 +779,7 @@ msgstr "" #. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group. #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:71 -#: actions/apigroupprofileupdate.php:112 actions/apigroupshow.php:81 +#: actions/apigroupprofileupdate.php:113 actions/apigroupshow.php:81 #: actions/apitimelinegroup.php:89 msgid "Group not found." msgstr "" @@ -778,13 +823,13 @@ msgid "Could not remove user %1$s from group %2$s." msgstr "" #. TRANS: Used as title in check for group membership. %s is a user name. -#: actions/apigrouplist.php:94 +#: actions/apigrouplist.php:95 #, php-format msgid "%s's groups" msgstr "" #. TRANS: Used as subtitle in check for group membership. %1$s is the site name, %2$s is a user name. -#: actions/apigrouplist.php:104 +#: actions/apigrouplist.php:105 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "" @@ -807,7 +852,7 @@ msgstr "" #. TRANS: Client error displayed trying to edit a group while not being a group admin. #. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. -#: actions/apigroupprofileupdate.php:118 actions/editgroup.php:110 +#: actions/apigroupprofileupdate.php:119 actions/editgroup.php:110 #: actions/editgroup.php:176 actions/groupdesignsettings.php:109 #: actions/grouplogo.php:111 msgid "You must be an admin to edit the group." @@ -815,27 +860,27 @@ msgstr "" #. TRANS: Server error displayed when group update fails. #. TRANS: Server error displayed when editing a group fails. -#: actions/apigroupprofileupdate.php:172 actions/editgroup.php:276 +#: actions/apigroupprofileupdate.php:173 actions/editgroup.php:276 msgid "Could not update group." msgstr "" #. TRANS: Server error displayed when adding group aliases fails. #. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/apigroupprofileupdate.php:195 actions/editgroup.php:283 +#: actions/apigroupprofileupdate.php:196 actions/editgroup.php:283 #: classes/User_group.php:548 msgid "Could not create aliases." msgstr "" #. TRANS: API validation exception thrown when nickname does not validate. #. TRANS: Validation error in form for registration, profile and group settings, etc. -#: actions/apigroupprofileupdate.php:251 lib/nickname.php:165 +#: actions/apigroupprofileupdate.php:252 lib/nickname.php:165 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" #. TRANS: API validation exception thrown when alias is the same as nickname. #. TRANS: Group create form validation error. -#: actions/apigroupprofileupdate.php:369 actions/newgroup.php:201 +#: actions/apigroupprofileupdate.php:370 actions/newgroup.php:201 msgid "Alias cannot be the same as nickname." msgstr "" @@ -867,24 +912,27 @@ msgstr "" #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:75 -#: actions/emailsettings.php:292 actions/favor.php:75 actions/geocode.php:55 -#: actions/groupblock.php:65 actions/grouplogo.php:321 -#: actions/groupunblock.php:65 actions/imsettings.php:243 -#: actions/invite.php:60 actions/makeadmin.php:67 actions/newmessage.php:140 -#: actions/newnotice.php:104 actions/nudge.php:81 -#: actions/oauthappssettings.php:162 actions/oauthconnectionssettings.php:135 -#: actions/passwordsettings.php:146 actions/pluginenable.php:87 -#: actions/profilesettings.php:218 actions/recoverpassword.php:387 -#: actions/register.php:163 actions/remotesubscribe.php:77 -#: actions/repeat.php:85 actions/smssettings.php:249 actions/subedit.php:40 -#: actions/subscribe.php:87 actions/tagother.php:146 -#: actions/unsubscribe.php:69 actions/urlsettings.php:171 -#: actions/userauthorization.php:53 lib/designsettings.php:122 +#. TRANS: Client error displayed when the session token does not match or is not given. +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:281 +#: actions/cancelsubscription.php:75 actions/deletenotice.php:178 +#: actions/disfavor.php:75 actions/emailsettings.php:293 actions/favor.php:76 +#: actions/geocode.php:56 actions/groupblock.php:66 actions/grouplogo.php:321 +#: actions/groupunblock.php:66 actions/imsettings.php:244 +#: actions/invite.php:61 actions/makeadmin.php:68 actions/newmessage.php:141 +#: actions/newnotice.php:105 actions/nudge.php:82 +#: actions/oauthappssettings.php:162 actions/oauthconnectionssettings.php:136 +#: actions/passwordsettings.php:147 actions/pluginenable.php:88 +#: actions/profilesettings.php:235 actions/recoverpassword.php:387 +#: actions/register.php:164 actions/remotesubscribe.php:78 +#: actions/repeat.php:80 actions/smssettings.php:250 actions/subedit.php:41 +#: actions/subscribe.php:87 actions/tagother.php:157 +#: actions/unsubscribe.php:70 actions/urlsettings.php:171 +#: actions/userauthorization.php:54 lib/designsettings.php:123 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -910,12 +958,12 @@ msgstr "" #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. #. TRANS: Unknown form validation error in design settings form. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 -#: actions/designadminpanel.php:100 actions/editapplication.php:144 -#: actions/emailsettings.php:311 actions/grouplogo.php:332 -#: actions/imsettings.php:258 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:144 actions/recoverpassword.php:46 -#: actions/smssettings.php:270 lib/designsettings.php:133 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:295 +#: actions/designadminpanel.php:100 actions/editapplication.php:145 +#: actions/emailsettings.php:312 actions/grouplogo.php:332 +#: actions/imsettings.php:259 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:134 msgid "Unexpected form submission." msgstr "" @@ -963,8 +1011,8 @@ msgstr "" #. TRANS: Label for nickname on user authorisation page. #. TRANS: Field label on group edit form. #: actions/apioauthauthorize.php:459 actions/login.php:231 -#: actions/profilesettings.php:107 actions/register.php:436 -#: actions/userauthorization.php:146 lib/groupeditform.php:147 +#: actions/profilesettings.php:104 actions/register.php:438 +#: actions/userauthorization.php:147 lib/groupeditform.php:147 msgid "Nickname" msgstr "" @@ -972,7 +1020,7 @@ msgstr "" #. TRANS: Field label on login page. #. TRANS: Field label on account registration page. #: actions/apioauthauthorize.php:463 actions/login.php:235 -#: actions/register.php:442 lib/settingsnav.php:93 +#: actions/register.php:444 msgid "Password" msgstr "" @@ -1058,22 +1106,10 @@ msgstr "" #. TRANS: Client error displayed trying to show a non-existing notice. #: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61 -#: actions/shownotice.php:92 +#: actions/shownotice.php:130 msgid "No such notice." msgstr "" -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:543 -msgid "Cannot repeat your own notice." -msgstr "" - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:549 -msgid "Already repeated that notice." -msgstr "" - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -1127,10 +1163,13 @@ msgstr "" msgid "Client must provide a 'status' parameter with a value." msgstr "" +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:244 actions/newnotice.php:160 -#: lib/mailhandler.php:60 +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. +#: actions/apistatusesupdate.php:244 actions/newnotice.php:161 +#: lib/mailhandler.php:65 #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1144,7 +1183,9 @@ msgstr "" #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. -#: actions/apistatusesupdate.php:308 actions/newnotice.php:183 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. +#: actions/apistatusesupdate.php:308 actions/newnotice.php:186 #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -1225,7 +1266,9 @@ msgstr "" msgid "Repeats of %s" msgstr "" -#: actions/apitimelineretweetsofme.php:104 +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. +#: actions/apitimelineretweetsofme.php:106 #, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "" @@ -1241,7 +1284,9 @@ msgstr "" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. -#: actions/apitimelinetag.php:105 actions/tagrss.php:65 +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. +#: actions/apitimelinetag.php:105 actions/tagrss.php:67 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "" @@ -1354,13 +1399,13 @@ msgstr "" #: actions/cancelgroup.php:94 actions/deletegroup.php:87 #: actions/deletegroup.php:100 actions/editgroup.php:102 #: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73 -#: actions/groupblock.php:89 actions/groupbyid.php:83 +#: actions/groupblock.php:90 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:101 actions/grouplogo.php:103 #: actions/groupmembers.php:84 actions/groupmembers.php:92 #: actions/groupqueue.php:85 actions/groupqueue.php:93 actions/grouprss.php:97 -#: actions/grouprss.php:105 actions/groupunblock.php:89 +#: actions/grouprss.php:105 actions/groupunblock.php:90 #: actions/joingroup.php:82 actions/joingroup.php:95 actions/leavegroup.php:82 -#: actions/leavegroup.php:95 actions/makeadmin.php:91 +#: actions/leavegroup.php:95 actions/makeadmin.php:92 #: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168 #: lib/command.php:389 msgid "No such group." @@ -1378,7 +1423,8 @@ msgstr "" #. TRANS: Client error displayed trying to approve group membership while not logged in. #. TRANS: Client error displayed when trying to leave a group while not logged in. -#: actions/approvegroup.php:102 actions/cancelgroup.php:101 +#: actions/approvegroup.php:102 actions/approvesub.php:60 +#: actions/cancelgroup.php:101 msgid "Must be logged in." msgstr "" @@ -1390,53 +1436,89 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. -#: actions/approvegroup.php:115 +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. +#: actions/approvegroup.php:115 actions/approvesub.php:67 msgid "Must specify a profile." msgstr "" #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. -#: actions/approvegroup.php:124 actions/cancelgroup.php:123 +#: actions/approvegroup.php:125 actions/cancelgroup.php:123 +#: actions/cancelsubscription.php:102 #, php-format msgid "%s is not in the moderation queue for this group." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. -#: actions/approvegroup.php:131 +#. TRANS: Client error displayed trying to approve/deny subscription. +#: actions/approvegroup.php:132 actions/approvesub.php:83 msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. -#: actions/approvegroup.php:135 +#. TRANS: Client error displayed trying to approve/deny subscription +#: actions/approvegroup.php:136 actions/approvesub.php:87 msgid "Internal error: received both cancel and abort." msgstr "" #. TRANS: Server error displayed when cancelling a queued group join request fails. #. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed. -#: actions/approvegroup.php:163 actions/cancelgroup.php:147 +#: actions/approvegroup.php:164 actions/cancelgroup.php:147 #, php-format msgid "Could not cancel request for user %1$s to join group %2$s." msgstr "" #. TRANS: Title for leave group page after group join request is approved/disapproved. #. TRANS: %1$s is the user nickname, %2$s is the group nickname. -#: actions/approvegroup.php:173 +#: actions/approvegroup.php:174 #, php-format msgctxt "TITLE" msgid "%1$s's request for %2$s" msgstr "" #. TRANS: Message on page for group admin after approving a join request. -#: actions/approvegroup.php:180 +#: actions/approvegroup.php:181 msgid "Join request approved." msgstr "" #. TRANS: Message on page for group admin after rejecting a join request. -#: actions/approvegroup.php:183 +#: actions/approvegroup.php:184 msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#: actions/approvesub.php:76 +#, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "" + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#: actions/approvesub.php:116 +#, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "" + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#: actions/approvesub.php:126 +#, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "" + +#. TRANS: Message on page for user after approving a subscription request. +#: actions/approvesub.php:132 +msgid "Subscription approved." +msgstr "" + +#. TRANS: Message on page for user after rejecting a subscription request. +#: actions/approvesub.php:135 +msgid "Subscription canceled." +msgstr "" + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1465,7 +1547,7 @@ msgid "Can only handle favorite activities." msgstr "" #. TRANS: Client exception thrown when trying favorite an object that is not a notice. -#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250 +#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:249 msgid "Can only fave notices." msgstr "" @@ -1483,7 +1565,7 @@ msgstr "" #. TRANS: %s is a username. #: actions/atompubmembershipfeed.php:144 #, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "" #. TRANS: Subtitle for group membership feed. @@ -1498,24 +1580,23 @@ msgstr "" msgid "Cannot add someone else's membership." msgstr "" -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. -#: actions/atompubmembershipfeed.php:242 +#. TRANS: Client error displayed when not using the join verb. +#: actions/atompubmembershipfeed.php:241 msgid "Can only handle join activities." msgstr "" #. TRANS: Client exception thrown when trying to subscribe to a non-existing group. -#: actions/atompubmembershipfeed.php:259 +#: actions/atompubmembershipfeed.php:258 msgid "Unknown group." msgstr "" #. TRANS: Client exception thrown when trying to subscribe to an already subscribed group. -#: actions/atompubmembershipfeed.php:267 +#: actions/atompubmembershipfeed.php:266 msgid "Already a member." msgstr "" #. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group. -#: actions/atompubmembershipfeed.php:275 +#: actions/atompubmembershipfeed.php:274 msgid "Blocked by admin." msgstr "" @@ -1622,7 +1703,7 @@ msgid "Invalid size." msgstr "" #. TRANS: Title for avatar upload page. -#: actions/avatarsettings.php:66 lib/settingsnav.php:88 +#: actions/avatarsettings.php:66 msgid "Avatar" msgstr "" @@ -1638,9 +1719,10 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:184 actions/remotesubscribe.php:208 -#: actions/userauthorization.php:75 actions/userrss.php:108 +#: actions/grouplogo.php:184 actions/remotesubscribe.php:209 +#: actions/userauthorization.php:76 actions/userrss.php:110 msgid "User without matching profile." msgstr "" @@ -1673,8 +1755,9 @@ msgstr "" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. #: actions/avatarsettings.php:155 actions/deleteaccount.php:319 -#: actions/showapplication.php:242 +#: actions/showapplication.php:243 lib/deletegroupform.php:115 msgctxt "BUTTON" msgid "Delete" msgstr "" @@ -1693,39 +1776,39 @@ msgid "Crop" msgstr "" #. TRANS: Validation error on avatar upload form when no file was uploaded. -#: actions/avatarsettings.php:318 +#: actions/avatarsettings.php:319 msgid "No file uploaded." msgstr "" #. TRANS: Avatar upload form instruction after uploading a file. -#: actions/avatarsettings.php:345 +#: actions/avatarsettings.php:346 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. -#: actions/avatarsettings.php:360 actions/grouplogo.php:391 +#: actions/avatarsettings.php:361 actions/grouplogo.php:391 msgid "Lost our file data." msgstr "" #. TRANS: Success message for having updated a user avatar. -#: actions/avatarsettings.php:384 +#: actions/avatarsettings.php:385 msgid "Avatar updated." msgstr "" #. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. -#: actions/avatarsettings.php:388 +#: actions/avatarsettings.php:389 msgid "Failed updating avatar." msgstr "" #. TRANS: Success message for deleting a user avatar. -#: actions/avatarsettings.php:412 +#: actions/avatarsettings.php:413 msgid "Avatar deleted." msgstr "" #. TRANS: Title for backup account page. #. TRANS: Option in profile settings to create a backup of the account of the currently logged in user. -#: actions/backupaccount.php:61 actions/profilesettings.php:468 +#: actions/backupaccount.php:61 actions/profilesettings.php:491 msgid "Backup account" msgstr "" @@ -1768,7 +1851,7 @@ msgstr "" #. TRANS: Title for block user page. #. TRANS: Legend for block user form. #. TRANS: Fieldset legend for block user from group form. -#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165 +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:166 msgid "Block user" msgstr "" @@ -1786,9 +1869,9 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:154 actions/deleteapplication.php:157 +#: actions/block.php:154 actions/deleteapplication.php:158 #: actions/deletegroup.php:220 actions/deletenotice.php:155 -#: actions/deleteuser.php:154 actions/groupblock.php:187 +#: actions/deleteuser.php:154 actions/groupblock.php:188 msgctxt "BUTTON" msgid "No" msgstr "" @@ -1804,9 +1887,11 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:161 actions/deleteapplication.php:164 +#. TRANS: Button text to repeat a notice on notice repeat form. +#: actions/block.php:161 actions/deleteapplication.php:165 #: actions/deletegroup.php:227 actions/deletenotice.php:162 -#: actions/deleteuser.php:161 actions/groupblock.php:194 +#: actions/deleteuser.php:161 actions/groupblock.php:195 +#: lib/repeatform.php:126 msgctxt "BUTTON" msgid "Yes" msgstr "" @@ -1873,6 +1958,45 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +#: actions/cancelsubscription.php:57 actions/deletenotice.php:52 +#: actions/disfavor.php:61 actions/favor.php:62 actions/groupblock.php:60 +#: actions/groupunblock.php:60 actions/logout.php:69 actions/makeadmin.php:62 +#: actions/newmessage.php:89 actions/newnotice.php:87 actions/nudge.php:64 +#: actions/pluginenable.php:99 actions/subedit.php:33 actions/subscribe.php:98 +#: actions/tagother.php:35 actions/unsubscribe.php:52 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:63 +#: lib/settingsaction.php:73 +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +#: actions/cancelsubscription.php:84 actions/unsubscribe.php:79 +msgid "No profile ID in request." +msgstr "" + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +#: actions/cancelsubscription.php:92 actions/groupblock.php:78 +#: actions/groupunblock.php:78 actions/makeadmin.php:80 actions/subedit.php:58 +#: actions/tagother.php:50 actions/unsubscribe.php:87 +#: lib/profileformaction.php:87 +msgid "No profile with that ID." +msgstr "" + +#. TRANS: Title after unsubscribing from a group. +#: actions/cancelsubscription.php:111 +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:74 msgid "No confirmation code." @@ -1902,7 +2026,7 @@ msgstr "" #. TRANS: Server error displayed when updating IM preferences fails. #. TRANS: Server error thrown on database error removing a registered IM address. -#: actions/confirmaddress.php:147 actions/imsettings.php:446 +#: actions/confirmaddress.php:147 actions/imsettings.php:447 msgid "Could not update user IM preferences." msgstr "" @@ -1936,14 +2060,13 @@ msgstr "" #. TRANS: Header on conversation page. Hidden by default (h2). #. TRANS: Label for user statistics. -#: actions/conversation.php:149 lib/noticelist.php:87 -#: lib/profileaction.php:246 lib/searchgroupnav.php:78 +#: actions/conversation.php:149 lib/profileaction.php:246 msgid "Notices" msgstr "" #. TRANS: Title for conversation page. #. TRANS: Title for page that shows a notice. -#: actions/conversationreplies.php:83 actions/shownotice.php:242 +#: actions/conversationreplies.php:83 actions/shownotice.php:267 msgctxt "TITLE" msgid "Notice" msgstr "" @@ -1977,7 +2100,7 @@ msgstr "" #. TRANS: Page title for page on which a user account can be deleted. #. TRANS: Option in profile settings to delete the account of the currently logged in user. -#: actions/deleteaccount.php:228 actions/profilesettings.php:476 +#: actions/deleteaccount.php:228 actions/profilesettings.php:499 msgid "Delete account" msgstr "" @@ -2033,21 +2156,22 @@ msgstr "" msgid "You are not the owner of this application." msgstr "" +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. -#: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:116 -#: lib/action.php:1456 +#: actions/deleteapplication.php:103 actions/editapplication.php:132 +#: actions/newapplication.php:113 actions/showapplication.php:117 +#: lib/action.php:1460 msgid "There was a problem with your session token." msgstr "" #. TRANS: Title for delete application page. #. TRANS: Fieldset legend on delete application page. -#: actions/deleteapplication.php:124 actions/deleteapplication.php:149 +#: actions/deleteapplication.php:125 actions/deleteapplication.php:150 msgid "Delete application" msgstr "" #. TRANS: Confirmation text on delete application page. -#: actions/deleteapplication.php:152 +#: actions/deleteapplication.php:153 msgid "" "Are you sure you want to delete this application? This will clear all data " "about the application from the database, including all existing user " @@ -2055,12 +2179,12 @@ msgid "" msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. -#: actions/deleteapplication.php:161 +#: actions/deleteapplication.php:162 msgid "Do not delete this application." msgstr "" #. TRANS: Submit button title for 'Yes' when deleting an application. -#: actions/deleteapplication.php:167 +#: actions/deleteapplication.php:168 msgid "Delete this application." msgstr "" @@ -2112,31 +2236,6 @@ msgstr "" msgid "Delete this group." msgstr "" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:69 -#: actions/makeadmin.php:62 actions/newmessage.php:89 actions/newnotice.php:87 -#: actions/nudge.php:64 actions/pluginenable.php:98 actions/subedit.php:33 -#: actions/subscribe.php:98 actions/tagother.php:34 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:71 lib/profileformaction.php:63 -#: lib/settingsaction.php:72 -msgid "Not logged in." -msgstr "" - #. TRANS: Instructions for deleting a notice. #: actions/deletenotice.php:110 msgid "" @@ -2204,7 +2303,7 @@ msgid "Delete this user." msgstr "" #. TRANS: Message used as title for design settings for the site. -#: actions/designadminpanel.php:60 lib/settingsnav.php:103 +#: actions/designadminpanel.php:60 msgid "Design" msgstr "" @@ -2279,7 +2378,7 @@ msgstr "" #. TRANS: Field label for background color selector. #. TRANS: Label on profile design page for setting a profile page background colour. #: actions/designadminpanel.php:525 actions/designadminpanel.php:609 -#: lib/designform.php:238 +#: lib/designform.php:233 msgid "Background" msgstr "" @@ -2304,13 +2403,13 @@ msgstr "" #. TRANS: Form guide for turning background image on or off on theme designer page. #. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable #. TRANS: use of the uploaded profile image. -#: actions/designadminpanel.php:577 lib/designform.php:214 +#: actions/designadminpanel.php:577 lib/designform.php:209 msgid "Turn background image on or off." msgstr "" #. TRANS: Checkbox label to title background image on theme designer page. #. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -#: actions/designadminpanel.php:583 lib/designform.php:220 +#: actions/designadminpanel.php:583 lib/designform.php:215 msgid "Tile background image" msgstr "" @@ -2321,25 +2420,25 @@ msgstr "" #. TRANS: Field label for content color selector. #. TRANS: Label on profile design page for setting a profile page content colour. -#: actions/designadminpanel.php:623 lib/designform.php:252 +#: actions/designadminpanel.php:623 lib/designform.php:247 msgid "Content" msgstr "" #. TRANS: Field label for sidebar color selector. #. TRANS: Label on profile design page for setting a profile page sidebar colour. -#: actions/designadminpanel.php:637 lib/designform.php:266 +#: actions/designadminpanel.php:637 lib/designform.php:261 msgid "Sidebar" msgstr "" #. TRANS: Field label for text color selector. #. TRANS: Label on profile design page for setting a profile page text colour. -#: actions/designadminpanel.php:651 lib/designform.php:280 +#: actions/designadminpanel.php:651 lib/designform.php:275 msgid "Text" msgstr "" #. TRANS: Field label for link color selector. #. TRANS: Label on profile design page for setting a profile page links colour. -#: actions/designadminpanel.php:665 lib/designform.php:294 +#: actions/designadminpanel.php:665 lib/designform.php:289 msgid "Links" msgstr "" @@ -2360,17 +2459,20 @@ msgid "Use defaults" msgstr "" #. TRANS: Title for button for resetting theme settings. -#: actions/designadminpanel.php:720 +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: actions/designadminpanel.php:720 lib/designform.php:135 msgid "Restore default designs." msgstr "" #. TRANS: Title for button for resetting theme settings. -#: actions/designadminpanel.php:728 +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: actions/designadminpanel.php:728 lib/designform.php:143 msgid "Reset back to default." msgstr "" #. TRANS: Title for button for saving theme settings. -#: actions/designadminpanel.php:736 +#. TRANS: Title for button on profile design page to save settings. +#: actions/designadminpanel.php:736 lib/designform.php:317 msgid "Save design." msgstr "" @@ -2409,76 +2511,76 @@ msgid "No such application." msgstr "" #. TRANS: Instructions for "Edit application" form. -#: actions/editapplication.php:167 +#: actions/editapplication.php:168 msgid "Use this form to edit your application." msgstr "" #. TRANS: Validation error shown when not providing a name in the "Edit application" form. #. TRANS: Validation error shown when not providing a name in the "New application" form. -#: actions/editapplication.php:184 actions/newapplication.php:164 +#: actions/editapplication.php:185 actions/newapplication.php:165 msgid "Name is required." msgstr "" #. TRANS: Validation error shown when providing too long a name in the "Edit application" form. #. TRANS: Validation error shown when providing too long a name in the "New application" form. -#: actions/editapplication.php:188 actions/newapplication.php:172 +#: actions/editapplication.php:189 actions/newapplication.php:173 msgid "Name is too long (maximum 255 characters)." msgstr "" #. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form. #. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form. -#: actions/editapplication.php:192 actions/newapplication.php:168 +#: actions/editapplication.php:193 actions/newapplication.php:169 msgid "Name already in use. Try another one." msgstr "" #. TRANS: Validation error shown when not providing a description in the "Edit application" form. #. TRANS: Validation error shown when not providing a description in the "New application" form. -#: actions/editapplication.php:196 actions/newapplication.php:176 +#: actions/editapplication.php:197 actions/newapplication.php:177 msgid "Description is required." msgstr "" #. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form. -#: actions/editapplication.php:209 +#: actions/editapplication.php:210 msgid "Source URL is too long." msgstr "" #. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form. #. TRANS: Validation error shown when providing an invalid source URL in the "New application" form. -#: actions/editapplication.php:216 actions/newapplication.php:199 +#: actions/editapplication.php:217 actions/newapplication.php:200 msgid "Source URL is not valid." msgstr "" #. TRANS: Validation error shown when not providing an organisation in the "Edit application" form. #. TRANS: Validation error shown when not providing an organisation in the "New application" form. -#: actions/editapplication.php:220 actions/newapplication.php:203 +#: actions/editapplication.php:221 actions/newapplication.php:204 msgid "Organization is required." msgstr "" #. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form. -#: actions/editapplication.php:224 actions/newapplication.php:207 +#: actions/editapplication.php:225 actions/newapplication.php:208 msgid "Organization is too long (maximum 255 characters)." msgstr "" #. TRANS: Form validation error show when an organisation name has not been provided in the edit application form. #. TRANS: Form validation error show when an organisation name has not been provided in the new application form. -#: actions/editapplication.php:228 actions/newapplication.php:211 +#: actions/editapplication.php:229 actions/newapplication.php:212 msgid "Organization homepage is required." msgstr "" #. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form. #. TRANS: Validation error shown when providing too long a callback URL in the "New application" form. -#: actions/editapplication.php:239 actions/newapplication.php:225 +#: actions/editapplication.php:240 actions/newapplication.php:226 msgid "Callback is too long." msgstr "" #. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form. #. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form. -#: actions/editapplication.php:247 actions/newapplication.php:235 +#: actions/editapplication.php:248 actions/newapplication.php:236 msgid "Callback URL is not valid." msgstr "" #. TRANS: Server error occuring when an application could not be updated from the "Edit application" form. -#: actions/editapplication.php:284 +#: actions/editapplication.php:285 msgid "Could not update application." msgstr "" @@ -2663,7 +2765,7 @@ msgstr "" #. TRANS: Message given saving e-mail address that not valid. #. TRANS: Form validation error displayed when trying to register without a valid e-mail address. #. TRANS: Client error displayed trying to save site settings without a valid contact address. -#: actions/emailsettings.php:394 actions/register.php:206 +#: actions/emailsettings.php:394 actions/register.php:207 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "" @@ -2681,8 +2783,8 @@ msgstr "" #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding Instant Messaging confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:419 actions/imsettings.php:365 -#: actions/smssettings.php:364 +#: actions/emailsettings.php:419 actions/imsettings.php:366 +#: actions/smssettings.php:365 msgid "Could not insert confirmation code." msgstr "" @@ -2696,8 +2798,8 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling Instant Messaging address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:446 actions/imsettings.php:394 -#: actions/smssettings.php:398 +#: actions/emailsettings.php:446 actions/imsettings.php:395 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "" @@ -2728,7 +2830,7 @@ msgid "The email address was removed." msgstr "" #. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set. -#: actions/emailsettings.php:519 actions/smssettings.php:554 +#: actions/emailsettings.php:519 actions/smssettings.php:555 msgid "No incoming email address." msgstr "" @@ -2736,36 +2838,37 @@ msgstr "" #. 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:531 actions/emailsettings.php:555 -#: actions/smssettings.php:565 actions/smssettings.php:590 +#: 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. #. TRANS: Confirmation text after updating SMS settings. -#: actions/emailsettings.php:535 actions/smssettings.php:569 +#: actions/emailsettings.php:535 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "" #. TRANS: Message given after successfully adding an incoming e-mail address. #. TRANS: Confirmation text after updating SMS settings. -#: actions/emailsettings.php:559 actions/smssettings.php:594 +#: actions/emailsettings.php:559 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "" #. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite. -#: actions/favor.php:80 +#: actions/favor.php:81 msgid "This notice is already a favorite!" msgstr "" #. TRANS: Page title for page on which favorite notices can be unfavourited. -#: actions/favor.php:95 +#: actions/favor.php:96 msgid "Disfavor favorite." msgstr "" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. #: actions/favorited.php:65 lib/popularnoticesection.php:62 -#: lib/publicgroupnav.php:79 +#: lib/publicgroupnav.php:87 msgid "Popular notices" msgstr "" @@ -2806,8 +2909,10 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #: actions/favoritesrss.php:111 actions/showfavorites.php:76 -#: lib/personalgroupnav.php:91 +#: lib/personalgroupnav.php:102 #, php-format msgid "%s's favorite notices" msgstr "" @@ -2821,8 +2926,9 @@ msgstr "" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. #: actions/featured.php:69 lib/featureduserssection.php:87 -#: lib/publicgroupnav.php:75 +#: lib/publicgroupnav.php:81 msgid "Featured users" msgstr "" @@ -2897,7 +3003,8 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "" #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. -#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317 +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. +#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:316 msgid "Error updating remote profile." msgstr "" @@ -2938,55 +3045,44 @@ msgstr "" #. TRANS: Client error displayed when not providing a profile ID on the Make Admin page. #. TRANS: Client error displayed trying a change a subscription without providing a profile. #. TRANS: Client error displayed when trying to change user options without specifying a user to work on. -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:73 actions/subedit.php:49 +#: actions/groupblock.php:72 actions/groupunblock.php:72 +#: actions/makeadmin.php:74 actions/subedit.php:50 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "" -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -#: actions/groupblock.php:77 actions/groupunblock.php:77 -#: actions/makeadmin.php:79 actions/subedit.php:57 actions/tagother.php:47 -#: actions/unsubscribe.php:84 lib/profileformaction.php:87 -msgid "No profile with that ID." -msgstr "" - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. -#: actions/groupblock.php:83 actions/groupunblock.php:83 -#: actions/makeadmin.php:85 +#: actions/groupblock.php:84 actions/groupunblock.php:84 +#: actions/makeadmin.php:86 msgid "No group specified." msgstr "" #. TRANS: Client error displayed trying to block a user from a group while not being an admin user. -#: actions/groupblock.php:95 +#: actions/groupblock.php:96 msgid "Only an admin can block group members." msgstr "" #. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group. -#: actions/groupblock.php:100 +#: actions/groupblock.php:101 msgid "User is already blocked from group." msgstr "" #. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group. -#: actions/groupblock.php:106 +#: actions/groupblock.php:107 msgid "User is not a member of group." msgstr "" #. TRANS: Title for block user from group page. #. TRANS: Form legend for form to block user from a group. -#: actions/groupblock.php:141 lib/groupblockform.php:91 +#: actions/groupblock.php:142 lib/groupblockform.php:91 msgid "Block user from group" msgstr "" #. TRANS: Explanatory text for block user from group form before setting the block. #. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from. -#: actions/groupblock.php:169 +#: actions/groupblock.php:170 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -2995,17 +3091,17 @@ msgid "" msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. -#: actions/groupblock.php:191 +#: actions/groupblock.php:192 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 +#: actions/groupblock.php:199 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. -#: actions/groupblock.php:215 +#: actions/groupblock.php:216 msgid "Database error blocking user from group." msgstr "" @@ -3205,18 +3301,18 @@ msgid "" msgstr "" #. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. -#: actions/groupunblock.php:95 +#: actions/groupunblock.php:96 msgid "Only an admin can unblock group members." msgstr "" #. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. -#: actions/groupunblock.php:100 +#: actions/groupunblock.php:101 msgid "User is not blocked from group." msgstr "" #. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. #. TRANS: Server error displayed when removing a user block. -#: actions/groupunblock.php:132 actions/unblock.php:86 +#: actions/groupunblock.php:133 actions/unblock.php:86 msgid "Error removing the block." msgstr "" @@ -3292,69 +3388,69 @@ msgid "Publish a MicroID" msgstr "" #. TRANS: Server error thrown on database error updating IM preferences. -#: actions/imsettings.php:293 +#: actions/imsettings.php:294 msgid "Could not update IM preferences." msgstr "" #. TRANS: Confirmation message for successful IM preferences save. #. TRANS: Confirmation message after saving preferences. -#: actions/imsettings.php:300 actions/urlsettings.php:244 +#: actions/imsettings.php:301 actions/urlsettings.php:247 msgid "Preferences saved." msgstr "" #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:322 +#: actions/imsettings.php:323 msgid "No screenname." msgstr "" #. TRANS: Form validation error when no transport is available setting an IM address. -#: actions/imsettings.php:328 +#: actions/imsettings.php:329 msgid "No transport." msgstr "" #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:336 +#: actions/imsettings.php:337 msgid "Cannot normalize that screenname." msgstr "" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:343 +#: actions/imsettings.php:344 msgid "Not a valid screenname." msgstr "" #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:347 +#: actions/imsettings.php:348 msgid "Screenname already belongs to another user." msgstr "" #. TRANS: Message given saving valid IM address that is to be confirmed. -#: actions/imsettings.php:372 +#: actions/imsettings.php:373 msgid "A confirmation code was sent to the IM address you added." msgstr "" #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:399 +#: actions/imsettings.php:400 msgid "That is the wrong IM address." msgstr "" #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:408 +#: actions/imsettings.php:409 msgid "Could not delete confirmation." msgstr "" #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:413 +#: actions/imsettings.php:414 msgid "IM confirmation cancelled." msgstr "" #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:437 +#: actions/imsettings.php:438 msgid "That is not your screenname." msgstr "" #. TRANS: Message given after successfully removing a registered Instant Messaging address. -#: actions/imsettings.php:453 +#: actions/imsettings.php:454 msgid "The IM address was removed." msgstr "" @@ -3391,18 +3487,18 @@ msgstr "" #. TRANS: Form validation message when providing an e-mail address that does not validate. #. TRANS: %s is an invalid e-mail address. -#: actions/invite.php:78 +#: actions/invite.php:79 #, php-format msgid "Invalid email address: %s." msgstr "" #. TRANS: Page title when invitations have been sent. -#: actions/invite.php:117 +#: actions/invite.php:118 msgid "Invitations sent" msgstr "" #. TRANS: Page title when inviting potential users. -#: actions/invite.php:120 +#: actions/invite.php:121 msgid "Invite new users" msgstr "" @@ -3410,7 +3506,7 @@ msgstr "" #. TRANS: is already subscribed to one or more users with the given e-mail address(es). #. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses. #. TRANS: Followed by a bullet list. -#: actions/invite.php:140 +#: actions/invite.php:141 msgid "You are already subscribed to this user:" msgid_plural "You are already subscribed to these users:" msgstr[0] "" @@ -3418,7 +3514,7 @@ msgstr[1] "" #. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address). #. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address). -#: actions/invite.php:146 actions/invite.php:160 +#: actions/invite.php:147 actions/invite.php:161 #, php-format msgctxt "INVITE" msgid "%1$s (%2$s)" @@ -3427,7 +3523,7 @@ msgstr "" #. TRANS: Message displayed inviting users to use a StatusNet site while the invited user #. TRANS: already uses a this StatusNet site. Plural form is based on the number of #. TRANS: reported already present people. Followed by a bullet list. -#: actions/invite.php:154 +#: actions/invite.php:155 msgid "This person is already a user and you were automatically subscribed:" msgid_plural "" "These people are already users and you were automatically subscribed to them:" @@ -3437,7 +3533,7 @@ msgstr[1] "" #. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is #. TRANS: based on the number of invitations sent. Followed by a bullet list of #. TRANS: e-mail addresses to which invitations were sent. -#: actions/invite.php:168 +#: actions/invite.php:169 msgid "Invitation sent to the following person:" msgid_plural "Invitations sent to the following people:" msgstr[0] "" @@ -3445,41 +3541,41 @@ msgstr[1] "" #. TRANS: Generic message displayed after sending out one or more invitations to #. TRANS: people to join a StatusNet site. -#: actions/invite.php:178 +#: actions/invite.php:179 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" #. TRANS: Form instructions. -#: actions/invite.php:191 +#: actions/invite.php:192 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" #. TRANS: Field label for a list of e-mail addresses. -#: actions/invite.php:218 +#: actions/invite.php:219 msgid "Email addresses" msgstr "" #. TRANS: Tooltip for field label for a list of e-mail addresses. -#: actions/invite.php:221 +#: actions/invite.php:222 msgid "Addresses of friends to invite (one per line)." msgstr "" #. TRANS: Field label for a personal message to send to invitees. -#: actions/invite.php:225 +#: actions/invite.php:226 msgid "Personal message" msgstr "" #. TRANS: Tooltip for field label for a personal message to send to invitees. -#: actions/invite.php:228 +#: actions/invite.php:229 msgid "Optionally add a personal message to the invitation." msgstr "" #. TRANS: Send button for inviting friends #. TRANS: Button text for sending notice. -#: actions/invite.php:232 lib/noticeform.php:256 +#: actions/invite.php:233 lib/noticeform.php:302 msgctxt "BUTTON" msgid "Send" msgstr "" @@ -3487,7 +3583,7 @@ msgstr "" #. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral #. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is #. TRANS: the StatusNet sitename. -#: actions/invite.php:264 +#: actions/invite.php:265 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" @@ -3497,7 +3593,7 @@ msgstr "" #. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the #. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link #. TRANS: to register with the StatusNet site. -#: actions/invite.php:271 +#: actions/invite.php:272 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -3605,7 +3701,8 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. -#: actions/licenseadminpanel.php:247 +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. +#: actions/licenseadminpanel.php:247 lib/toselector.php:123 msgid "Private" msgstr "" @@ -3698,7 +3795,7 @@ msgid "Error setting user. You are probably not authorized." msgstr "" #. TRANS: Page title for login page. -#: actions/login.php:189 lib/primarynav.php:75 +#: actions/login.php:189 msgid "Login" msgstr "" @@ -3709,13 +3806,13 @@ msgstr "" #. TRANS: Checkbox label label on login page. #. TRANS: Checkbox label on account registration page. -#: actions/login.php:239 actions/register.php:512 +#: actions/login.php:239 actions/register.php:514 msgid "Remember me" msgstr "" #. TRANS: Checkbox title on login page. #. TRANS: Checkbox title on account registration page. -#: actions/login.php:241 actions/register.php:515 +#: actions/login.php:241 actions/register.php:517 msgid "Automatically login in the future; not for shared computers!" msgstr "" @@ -3751,13 +3848,13 @@ msgid "" msgstr "" #. TRANS: Client error displayed when trying to make another user admin on the Make Admin page while not an admin. -#: actions/makeadmin.php:98 +#: actions/makeadmin.php:99 msgid "Only an admin can make another user an admin." msgstr "" #. TRANS: Client error displayed when trying to make another user admin on the Make Admin page who already is admin. #. TRANS: %1$s is the user that is already admin, %2$s is the group user is already admin for. -#: actions/makeadmin.php:104 +#: actions/makeadmin.php:105 #, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "" @@ -3765,7 +3862,7 @@ msgstr "" #. TRANS: Server error displayed when trying to make another user admin on the Make Admin page fails #. TRANS: because the group membership record could not be gotten. #. TRANS: %1$s is the to be admin user, %2$s is the group user should be admin for. -#: actions/makeadmin.php:144 +#: actions/makeadmin.php:145 #, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "" @@ -3773,7 +3870,7 @@ msgstr "" #. TRANS: Server error displayed when trying to make another user admin on the Make Admin page fails #. TRANS: because the group adminship record coud not be saved properly. #. TRANS: %1$s is the to be admin user, %2$s is the group user is already admin for. -#: actions/makeadmin.php:160 +#: actions/makeadmin.php:161 #, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "" @@ -3794,22 +3891,22 @@ msgid "You must be logged in to register an application." msgstr "" #. TRANS: Form instructions for registering a new application. -#: actions/newapplication.php:147 +#: actions/newapplication.php:148 msgid "Use this form to register a new application." msgstr "" #. TRANS: Validation error shown when not providing a source URL in the "New application" form. -#: actions/newapplication.php:189 +#: actions/newapplication.php:190 msgid "Source URL is required." msgstr "" #. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form. -#: actions/newapplication.php:279 actions/newapplication.php:289 +#: actions/newapplication.php:280 actions/newapplication.php:290 msgid "Could not create application." msgstr "" #. TRANS: Form validation error on New application page when providing an invalid image upload. -#: actions/newapplication.php:298 +#: actions/newapplication.php:299 msgid "Invalid image." msgstr "" @@ -3830,13 +3927,13 @@ msgstr "" #. TRANS: Page title for new direct message page. #. TRANS: Page title on page for sending a direct message. -#: actions/newmessage.php:72 actions/newmessage.php:249 +#: actions/newmessage.php:72 actions/newmessage.php:250 msgid "New message" msgstr "" #. TRANS: Client error displayed trying to send a direct message to a user while sender and #. TRANS: receiver are not subscribed to each other. -#: actions/newmessage.php:126 actions/newmessage.php:173 +#: actions/newmessage.php:126 actions/newmessage.php:174 msgid "You cannot send a message to this user." msgstr "" @@ -3844,25 +3941,25 @@ msgstr "" #. TRANS: Client error displayed trying to send a notice without content. #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:150 actions/newnotice.php:139 lib/command.php:484 -#: lib/command.php:587 +#: actions/newmessage.php:151 actions/newnotice.php:140 lib/command.php:484 +#: lib/command.php:573 msgid "No content!" msgstr "" #. TRANS: Form validation error displayed trying to send a direct message without specifying a recipient. -#: actions/newmessage.php:168 +#: actions/newmessage.php:169 msgid "No recipient specified." msgstr "" #. TRANS: Client error displayed trying to send a direct message to self. #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:177 lib/command.php:511 +#: actions/newmessage.php:178 lib/command.php:511 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #. TRANS: Page title after sending a direct message. -#: actions/newmessage.php:195 +#: actions/newmessage.php:196 msgid "Message sent" msgstr "" @@ -3870,24 +3967,26 @@ msgstr "" #. TRANS: %s is the direct message recipient. #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:201 lib/command.php:519 +#: actions/newmessage.php:202 lib/command.php:519 #, php-format msgid "Direct message to %s sent." msgstr "" #. TRANS: Page title after an AJAX error occurred on the "send direct message" page. #. TRANS: Page title after an AJAX error occurs on the send notice page. -#: actions/newmessage.php:227 actions/newnotice.php:264 lib/error.php:117 +#: actions/newmessage.php:228 actions/newnotice.php:271 lib/error.php:117 msgid "Ajax Error" msgstr "" #. TRANS: Page title for sending a new notice. -#: actions/newnotice.php:67 actions/newnotice.php:285 +#. TRANS: Title for form to send a new notice. +#: actions/newnotice.php:67 actions/newnotice.php:293 +msgctxt "TITLE" msgid "New notice" msgstr "" #. TRANS: Page title after sending a notice. -#: actions/newnotice.php:230 +#: actions/newnotice.php:237 msgid "Notice posted" msgstr "" @@ -3944,19 +4043,19 @@ msgid "Updates matching search term \"%1$s\" on %2$s." msgstr "" #. TRANS: Client error displayed trying to nudge a user that cannot be nudged. -#: actions/nudge.php:87 +#: actions/nudge.php:88 msgid "" "This user doesn't allow nudges or hasn't confirmed or set their email " "address yet." msgstr "" #. TRANS: Page title after sending a nudge. -#: actions/nudge.php:97 +#: actions/nudge.php:98 msgid "Nudge sent" msgstr "" #. TRANS: Confirmation text after sending a nudge. -#: actions/nudge.php:101 +#: actions/nudge.php:102 msgid "Nudge sent!" msgstr "" @@ -3992,20 +4091,20 @@ 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:165 +#: 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:180 +#: 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:199 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -4013,14 +4112,14 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:210 +#: 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:230 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " @@ -4043,14 +4142,14 @@ msgstr "" #. TRANS: Server error displayed in oEmbed action when notice has not profile. #. TRANS: Server error displayed trying to show a notice without a connected profile. -#: actions/oembed.php:85 actions/shownotice.php:101 +#: actions/oembed.php:85 actions/shownotice.php:99 msgid "Notice has no profile." msgstr "" #. TRANS: oEmbed title. %1$s is the author name, %2$s is the creation date. #. TRANS: Title of the page that shows a notice. #. TRANS: %1$s is a user name, %2$s is the notice creation date/time. -#: actions/oembed.php:89 actions/shownotice.php:171 +#: actions/oembed.php:89 actions/shownotice.php:196 #, php-format msgid "%1$s's status on %2$s" msgstr "" @@ -4171,7 +4270,7 @@ msgstr "" #. TRANS: Field title on page where to change password. #. TRANS: Field title on account registration page. -#: actions/passwordsettings.php:115 actions/register.php:444 +#: actions/passwordsettings.php:115 actions/register.php:446 msgid "6 or more characters." msgstr "" @@ -4185,7 +4284,7 @@ msgstr "" #. TRANS: Ttile for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. #: actions/passwordsettings.php:121 actions/recoverpassword.php:264 -#: actions/register.php:450 +#: actions/register.php:452 msgid "Same as password above." msgstr "" @@ -4197,41 +4296,40 @@ msgstr "" #. TRANS: Form validation error on page where to change password. #. TRANS: Form validation error displayed when trying to register with too short a password. -#: actions/passwordsettings.php:163 actions/register.php:240 +#: actions/passwordsettings.php:164 actions/register.php:242 msgid "Password must be 6 or more characters." msgstr "" #. TRANS: Form validation error on password change when password confirmation does not match. #. TRANS: Form validation error displayed when trying to register with non-matching passwords. -#: actions/passwordsettings.php:167 actions/register.php:244 +#: actions/passwordsettings.php:168 actions/register.php:246 msgid "Passwords do not match." msgstr "" #. TRANS: Form validation error on page where to change password. -#: actions/passwordsettings.php:176 +#: actions/passwordsettings.php:177 msgid "Incorrect old password." msgstr "" #. TRANS: Form validation error on page where to change password. -#: actions/passwordsettings.php:193 +#: actions/passwordsettings.php:194 msgid "Error saving user; invalid." msgstr "" #. TRANS: Server error displayed on page where to change password when password change #. TRANS: could not be made because of a server error. #. TRANS: Reset password form validation error message. -#: actions/passwordsettings.php:200 actions/recoverpassword.php:422 +#: actions/passwordsettings.php:201 actions/recoverpassword.php:422 msgid "Cannot save new password." msgstr "" #. TRANS: Form validation notice on page where to change password. -#: actions/passwordsettings.php:207 +#: actions/passwordsettings.php:208 msgid "Password saved." msgstr "" #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:58 lib/adminpanelnav.php:118 +#: actions/pathsadminpanel.php:58 msgid "Paths" msgstr "" @@ -4472,7 +4570,8 @@ msgid "SSL" msgstr "" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). -#: actions/pathsadminpanel.php:482 actions/snapshotadminpanel.php:202 +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. +#: actions/pathsadminpanel.php:482 actions/snapshotadminpanel.php:203 msgid "Never" msgstr "" @@ -4549,17 +4648,17 @@ msgid "This action only accepts POST requests." msgstr "" #. TRANS: Client error displayed when trying to enable or disable a plugin without access rights. -#: actions/pluginenable.php:104 +#: actions/pluginenable.php:105 msgid "You cannot administer plugins." msgstr "" #. TRANS: Client error displayed when trying to enable or disable a non-existing plugin. -#: actions/pluginenable.php:112 +#: actions/pluginenable.php:113 msgid "No such plugin." msgstr "" #. TRANS: Page title for AJAX form return when enabling a plugin. -#: actions/pluginenable.php:161 +#: actions/pluginenable.php:162 msgctxt "plugin" msgid "Enabled" msgstr "" @@ -4602,25 +4701,25 @@ msgid "Notice license \"%1$s\" is not compatible with site license \"%2$s\"." msgstr "" #. TRANS: Page title for profile settings. -#: actions/profilesettings.php:60 +#: actions/profilesettings.php:57 msgid "Profile settings" msgstr "" #. TRANS: Usage instructions for profile settings. -#: actions/profilesettings.php:71 +#: actions/profilesettings.php:68 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" #. TRANS: Profile settings form legend. -#: actions/profilesettings.php:99 +#: actions/profilesettings.php:96 msgid "Profile information" msgstr "" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Field title on account registration page. #. TRANS: Field title on group edit form. -#: actions/profilesettings.php:110 actions/register.php:438 +#: actions/profilesettings.php:107 actions/register.php:440 #: lib/groupeditform.php:150 msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" @@ -4628,7 +4727,7 @@ msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Field label on account registration page. #. TRANS: Field label on group edit form. -#: actions/profilesettings.php:114 actions/register.php:469 +#: actions/profilesettings.php:111 actions/register.php:471 #: lib/groupeditform.php:154 msgid "Full name" msgstr "" @@ -4637,103 +4736,135 @@ msgstr "" #. TRANS: Field label on account registration page. #. TRANS: Form input field label. #. TRANS: Field label on group edit form; points to "more info" for a group. -#: actions/profilesettings.php:119 actions/register.php:476 +#: actions/profilesettings.php:116 actions/register.php:478 #: lib/applicationeditform.php:236 lib/groupeditform.php:159 msgid "Homepage" msgstr "" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Field title on account registration page. -#: actions/profilesettings.php:122 actions/register.php:479 +#: actions/profilesettings.php:119 actions/register.php:481 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:130 +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). +#: actions/profilesettings.php:127 actions/register.php:490 #, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "" msgstr[1] "" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:136 -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#: actions/profilesettings.php:133 actions/register.php:496 +msgid "Describe yourself and your interests." msgstr "" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. -#: actions/profilesettings.php:140 actions/register.php:497 +#: actions/profilesettings.php:137 actions/register.php:499 msgid "Bio" msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Field label on account registration page. #. TRANS: Field label on group edit form. -#: actions/profilesettings.php:146 actions/register.php:503 +#: actions/profilesettings.php:143 actions/register.php:505 #: lib/groupeditform.php:184 msgid "Location" msgstr "" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:149 -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#: actions/profilesettings.php:146 actions/register.php:508 +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "" #. TRANS: Checkbox label in form for profile settings. -#: actions/profilesettings.php:154 +#: actions/profilesettings.php:151 msgid "Share my current location when posting notices" msgstr "" #. TRANS: Field label in form for profile settings. -#: actions/profilesettings.php:162 actions/tagother.php:129 -#: actions/tagother.php:191 lib/subscriptionlist.php:104 -#: lib/subscriptionlist.php:106 +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. +#: actions/profilesettings.php:159 actions/tagother.php:137 +#: lib/subscriptionlist.php:104 lib/subscriptionlist.php:107 msgid "Tags" msgstr "" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:165 +#: actions/profilesettings.php:162 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" #. TRANS: Dropdownlist label in form for profile settings. -#: actions/profilesettings.php:170 +#: actions/profilesettings.php:167 msgid "Language" msgstr "" #. TRANS: Tooltip for dropdown list label in form for profile settings. -#: actions/profilesettings.php:172 +#: actions/profilesettings.php:169 msgid "Preferred language." msgstr "" #. TRANS: Dropdownlist label in form for profile settings. -#: actions/profilesettings.php:182 +#: actions/profilesettings.php:179 msgid "Timezone" msgstr "" #. TRANS: Tooltip for dropdown list label in form for profile settings. -#: actions/profilesettings.php:184 +#: actions/profilesettings.php:181 msgid "What timezone are you normally in?" msgstr "" #. TRANS: Checkbox label in form for profile settings. -#: actions/profilesettings.php:190 +#: actions/profilesettings.php:187 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#: actions/profilesettings.php:195 +msgid "Subscription policy" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +#: actions/profilesettings.php:197 +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +#: actions/profilesettings.php:199 +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +#: actions/profilesettings.php:201 +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +#: actions/profilesettings.php:209 +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). #. TRANS: Form validation error on registration page when providing too long a bio text. #. TRANS: %d is the maximum number of characters for bio; used for plural. -#: actions/profilesettings.php:259 actions/register.php:229 +#: actions/profilesettings.php:278 actions/register.php:231 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4742,12 +4873,12 @@ msgstr[1] "" #. TRANS: Validation error in form for profile settings. #. TRANS: Client error displayed trying to save site settings without a timezone. -#: actions/profilesettings.php:270 actions/siteadminpanel.php:152 +#: actions/profilesettings.php:289 actions/siteadminpanel.php:152 msgid "Timezone not selected." msgstr "" #. TRANS: Validation error in form for profile settings. -#: actions/profilesettings.php:278 +#: actions/profilesettings.php:297 msgid "Language is too long (maximum 50 characters)." msgstr "" @@ -4755,36 +4886,37 @@ msgstr "" #. TRANS: %s is an invalid tag. #. TRANS: Form validation error when entering an invalid tag. #. TRANS: %s is the invalid tag. -#: actions/profilesettings.php:292 actions/tagother.php:160 +#: actions/profilesettings.php:311 actions/tagother.php:171 #, php-format msgid "Invalid tag: \"%s\"." msgstr "" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -#: actions/profilesettings.php:348 -msgid "Could not update user for autosubscribe." +#: actions/profilesettings.php:371 +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "" #. TRANS: Server error thrown when user profile location preference settings could not be updated. -#: actions/profilesettings.php:406 +#: actions/profilesettings.php:429 msgid "Could not save location prefs." msgstr "" #. TRANS: Server error thrown when user profile settings tags could not be saved. -#: actions/profilesettings.php:428 actions/tagother.php:182 +#. TRANS: Client error on "tag other users" page when saving tags fails server side. +#: actions/profilesettings.php:451 actions/tagother.php:195 msgid "Could not save tags." msgstr "" #. TRANS: Confirmation shown when user profile settings are saved. #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:437 lib/adminpanelaction.php:138 +#: actions/profilesettings.php:460 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "" #. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup. #. TRANS: Page title for page where a user account can be restored from backup. -#: actions/profilesettings.php:484 actions/restoreaccount.php:60 +#: actions/profilesettings.php:507 actions/restoreaccount.php:60 msgid "Restore account" msgstr "" @@ -4796,39 +4928,40 @@ msgid "Beyond the page limit (%s)." msgstr "" #. TRANS: Server error displayed when a public timeline cannot be retrieved. -#: actions/public.php:93 +#: actions/public.php:96 msgid "Could not retrieve public stream." msgstr "" #. TRANS: Title for all public timeline pages but the first. #. TRANS: %d is the page number. -#: actions/public.php:131 +#: actions/public.php:134 #, php-format msgid "Public timeline, page %d" msgstr "" #. TRANS: Title for the first public timeline page. -#: actions/public.php:134 lib/publicgroupnav.php:65 +#. TRANS: Menu item title in search group navigation panel. +#: actions/public.php:137 lib/publicgroupnav.php:65 msgid "Public timeline" msgstr "" #. TRANS: Link description for public timeline feed. -#: actions/public.php:162 +#: actions/public.php:165 msgid "Public Stream Feed (RSS 1.0)" msgstr "" #. TRANS: Link description for public timeline feed. -#: actions/public.php:167 +#: actions/public.php:170 msgid "Public Stream Feed (RSS 2.0)" msgstr "" #. TRANS: Link description for public timeline feed. -#: actions/public.php:172 +#: actions/public.php:175 msgid "Public Stream Feed (Atom)" msgstr "" #. TRANS: Text displayed for public feed when there are no public notices. -#: actions/public.php:178 +#: actions/public.php:181 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -4836,12 +4969,12 @@ msgid "" msgstr "" #. TRANS: Additional text displayed for public feed when there are no public notices for a logged in user. -#: actions/public.php:182 +#: actions/public.php:185 msgid "Be the first to post!" msgstr "" #. TRANS: Additional text displayed for public feed when there are no public notices for a not logged in user. -#: actions/public.php:187 +#: actions/public.php:190 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -4849,7 +4982,7 @@ msgstr "" #. TRANS: Message for not logged in users at an invite-only site trying to view the public feed of notices. #. TRANS: This message contains Markdown links. Please mind the formatting. -#: actions/public.php:235 +#: actions/public.php:238 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -4860,7 +4993,7 @@ msgstr "" #. TRANS: Message for not logged in users at a closed site trying to view the public feed of notices. #. TRANS: This message contains Markdown links. Please mind the formatting. -#: actions/public.php:242 +#: actions/public.php:245 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -5006,11 +5139,6 @@ msgstr "" msgid "Password saved" msgstr "" -#. TRANS: Title for password recovery page when an unknown action has been specified. -#: actions/recoverpassword.php:232 -msgid "Unknown action" -msgstr "" - #. TRANS: Title for field label for password reset form. #: actions/recoverpassword.php:258 msgid "6 or more characters, and do not forget it!" @@ -5018,7 +5146,7 @@ msgstr "" #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. -#: actions/recoverpassword.php:268 lib/designform.php:145 +#: actions/recoverpassword.php:268 lib/designform.php:140 msgctxt "BUTTON" msgid "Reset" msgstr "" @@ -5067,7 +5195,7 @@ msgstr "" #. TRANS: Server error displayed when something does wrong with the user object during password reset. #. TRANS: Server error displayed when saving fails during user registration. -#: actions/recoverpassword.php:430 actions/register.php:261 +#: actions/recoverpassword.php:430 actions/register.php:263 msgid "Error setting user." msgstr "" @@ -5089,7 +5217,7 @@ msgid "No such file \"%d\"." msgstr "" #. TRANS: Client error displayed when trying to register to an invite-only site without an invitation. -#: actions/register.php:81 actions/register.php:188 actions/register.php:415 +#: actions/register.php:81 actions/register.php:189 actions/register.php:417 msgid "Sorry, only invited people can register." msgstr "" @@ -5115,77 +5243,58 @@ msgid "Registration not allowed." msgstr "" #. TRANS: Form validation error displayed when trying to register without agreeing to the site license. -#: actions/register.php:202 +#: actions/register.php:203 msgid "You cannot register if you do not agree to the license." msgstr "" -#: actions/register.php:214 +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. +#: actions/register.php:216 msgid "Email address already exists." msgstr "" #. TRANS: Form validation error displayed when trying to register with an invalid username or password. -#: actions/register.php:255 actions/register.php:279 +#: actions/register.php:257 actions/register.php:281 msgid "Invalid username or password." msgstr "" #. TRANS: Page notice on registration page. -#: actions/register.php:355 +#: actions/register.php:357 msgid "" "With this form you can create a new account. You can then post notices and " "link up to friends and colleagues." msgstr "" #. TRANS: Field label on account registration page. In this field the password has to be entered a second time. -#: actions/register.php:448 +#: actions/register.php:450 msgctxt "PASSWORD" msgid "Confirm" msgstr "" #. TRANS: Field label on account registration page. -#: actions/register.php:455 actions/register.php:461 +#: actions/register.php:457 actions/register.php:463 msgctxt "LABEL" msgid "Email" msgstr "" #. TRANS: Field title on account registration page. -#: actions/register.php:457 actions/register.php:463 +#: actions/register.php:459 actions/register.php:465 msgid "Used only for updates, announcements, and password recovery." msgstr "" #. TRANS: Field title on account registration page. -#: actions/register.php:472 +#: actions/register.php:474 msgid "Longer name, preferably your \"real\" name." msgstr "" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#: actions/register.php:488 -#, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "" -msgstr[1] "" - -#. TRANS: Text area title on account registration page. -#: actions/register.php:494 -msgid "Describe yourself and your interests." -msgstr "" - -#. TRANS: Field title on account registration page. -#: actions/register.php:506 -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "" - -#. TRANS: Field label on account registration page. -#: actions/register.php:535 +#. TRANS: Button text to register a user on account registration page. +#: actions/register.php:537 msgctxt "BUTTON" msgid "Register" msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for private sites. #. TRANS: %1$s is the StatusNet sitename. -#: actions/register.php:548 +#: actions/register.php:550 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." @@ -5193,23 +5302,23 @@ msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with a specified copyright owner. #. TRANS: %1$s is the license owner. -#: actions/register.php:559 +#: actions/register.php:561 #, 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:563 +#: actions/register.php:565 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:566 +#: actions/register.php:568 msgid "All rights reserved." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:571 +#: actions/register.php:573 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -5220,7 +5329,7 @@ msgstr "" #. TRANS: %1$s is the registered nickname, %2$s is the profile URL. #. TRANS: This message contains Markdown links in the form [link text](link) #. TRANS: and variables in the form %%%%variable%%%%. Please mind the syntax. -#: actions/register.php:616 +#: actions/register.php:618 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5240,7 +5349,7 @@ msgid "" msgstr "" #. TRANS: Instruction text on how to deal with the e-mail address confirmation e-mail. -#: actions/register.php:641 +#: actions/register.php:643 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5248,7 +5357,7 @@ msgstr "" #. TRANS: Page notice for remote subscribe. This message contains Markdown links. #. TRANS: Ensure to keep the correct markup of [link description](link). -#: actions/remotesubscribe.php:100 +#: actions/remotesubscribe.php:101 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -5257,59 +5366,62 @@ msgid "" msgstr "" #. TRANS: Page title for Remote subscribe. -#: actions/remotesubscribe.php:115 +#: actions/remotesubscribe.php:116 msgid "Remote subscribe" msgstr "" #. TRANS: Field legend on page for remote subscribe. -#: actions/remotesubscribe.php:128 +#: actions/remotesubscribe.php:129 msgid "Subscribe to a remote user" msgstr "" #. TRANS: Field label on page for remote subscribe. -#: actions/remotesubscribe.php:134 +#: actions/remotesubscribe.php:135 msgid "User nickname" msgstr "" #. TRANS: Field title on page for remote subscribe. -#: actions/remotesubscribe.php:136 +#: actions/remotesubscribe.php:137 msgid "Nickname of the user you want to follow." msgstr "" #. TRANS: Field label on page for remote subscribe. -#: actions/remotesubscribe.php:140 +#: actions/remotesubscribe.php:141 msgid "Profile URL" msgstr "" #. TRANS: Field title on page for remote subscribe. -#: actions/remotesubscribe.php:142 +#: actions/remotesubscribe.php:143 msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Button text on page for remote subscribe. -#: actions/remotesubscribe.php:146 +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. +#: actions/remotesubscribe.php:147 lib/accountprofileblock.php:290 +#: lib/subscribeform.php:130 msgctxt "BUTTON" msgid "Subscribe" msgstr "" #. TRANS: Form validation error on page for remote subscribe when an invalid profile URL was provided. -#: actions/remotesubscribe.php:171 +#: actions/remotesubscribe.php:172 msgid "Invalid profile URL (bad format)." msgstr "" #. TRANS: Form validation error on page for remote subscribe when no the provided profile URL #. TRANS: does not contain expected data. -#: actions/remotesubscribe.php:182 +#: actions/remotesubscribe.php:183 msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." msgstr "" #. TRANS: Form validation error on page for remote subscribe. -#: actions/remotesubscribe.php:191 +#: actions/remotesubscribe.php:192 msgid "That is a local profile! Login to subscribe." msgstr "" #. TRANS: Form validation error on page for remote subscribe when the remote service is not providing a request token. -#: actions/remotesubscribe.php:199 +#: actions/remotesubscribe.php:200 msgid "Could not get a request token." msgstr "" @@ -5324,31 +5436,24 @@ msgstr "" msgid "No notice specified." msgstr "" -#. TRANS: Client error displayed when trying to repeat an own notice. -#: actions/repeat.php:78 -msgid "You cannot repeat your own notice." -msgstr "" - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -#: actions/repeat.php:93 -msgid "You already repeated that notice." -msgstr "" - #. TRANS: Title after repeating a notice. -#: actions/repeat.php:115 lib/noticelistitem.php:602 +#. TRANS: Repeat form status in notice list when a notice has been repeated. +#: actions/repeat.php:102 lib/noticelistitem.php:605 msgid "Repeated" msgstr "" #. TRANS: Confirmation text after repeating a notice. -#: actions/repeat.php:121 +#: actions/repeat.php:108 msgid "Repeated!" msgstr "" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #: actions/replies.php:126 actions/repliesrss.php:68 -#: lib/personalgroupnav.php:86 +#: lib/personalgroupnav.php:93 #, php-format msgid "Replies to %s" msgstr "" @@ -5471,7 +5576,8 @@ msgid "System error uploading file." msgstr "" #. TRANS: Client exception thrown when a feed is not an Atom feed. -#: actions/restoreaccount.php:207 +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. +#: actions/restoreaccount.php:207 lib/feedimporter.php:74 msgid "Not an Atom feed." msgstr "" @@ -5516,7 +5622,8 @@ msgid "StatusNet" msgstr "" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. -#: actions/sandbox.php:64 actions/unsandbox.php:65 +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. +#: actions/sandbox.php:64 actions/unsandbox.php:64 msgid "You cannot sandbox users on this site." msgstr "" @@ -5576,14 +5683,14 @@ msgid "You must be logged in to view an application." msgstr "" #. TRANS: Header on the OAuth application page. -#: actions/showapplication.php:155 +#: actions/showapplication.php:156 msgid "Application profile" msgstr "" #. TRANS: Information output on an OAuth application page. #. TRANS: %1$s is the application creator, %2$s is "read-only" or "read-write", #. TRANS: %3$d is the number of users using the OAuth application. -#: actions/showapplication.php:186 +#: actions/showapplication.php:187 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d user" msgid_plural "Created by %1$s - %2$s access by default - %3$d users" @@ -5591,36 +5698,36 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Header on the OAuth application page. -#: actions/showapplication.php:199 +#: actions/showapplication.php:200 msgid "Application actions" msgstr "" #. TRANS: Link text to edit application on the OAuth application page. -#: actions/showapplication.php:206 +#: actions/showapplication.php:207 msgctxt "EDITAPP" msgid "Edit" msgstr "" #. TRANS: Button text on the OAuth application page. #. TRANS: Resets the OAuth consumer key and secret. -#: actions/showapplication.php:225 +#: actions/showapplication.php:226 msgid "Reset key & secret" msgstr "" #. TRANS: Header on the OAuth application page. -#: actions/showapplication.php:252 +#: actions/showapplication.php:253 msgid "Application info" msgstr "" #. TRANS: Note on the OAuth application page about signature support. -#: actions/showapplication.php:271 +#: actions/showapplication.php:272 msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " "not supported." msgstr "" #. TRANS: Text in confirmation dialog to reset consumer key and secret for an OAuth application. -#: actions/showapplication.php:292 +#: actions/showapplication.php:293 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "" @@ -5732,9 +5839,11 @@ msgstr "" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. #: actions/showgroup.php:284 lib/profileaction.php:137 #: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95 -#: lib/subscriptionlist.php:123 lib/tagcloudsection.php:71 +#: lib/subscriptionlist.php:125 msgid "(None)" msgstr "" @@ -5788,7 +5897,7 @@ msgid "" msgstr "" #. TRANS: Title for list of group administrators on a group page. -#: actions/showgroup.php:388 +#: actions/showgroup.php:400 msgctxt "TITLE" msgid "Admins" msgstr "" @@ -5817,8 +5926,13 @@ msgstr "" msgid "Message from %1$s on %2$s" msgstr "" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#: actions/shownotice.php:92 +msgid "Not available." +msgstr "" + #. TRANS: Client error displayed trying to show a deleted notice. -#: actions/shownotice.php:89 +#: actions/shownotice.php:127 msgid "Notice deleted." msgstr "" @@ -5826,21 +5940,21 @@ msgstr "" #. TRANS: %1$s is the username, %2$s is the hash tag. #: actions/showstream.php:70 #, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %1$s tagged %2$s" msgstr "" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. #: actions/showstream.php:82 #, php-format -msgid "%1$s, page %2$d" +msgid "Notices by %1$s, page %2$d" msgstr "" #. TRANS: Title for link to notice feed. @@ -5922,13 +6036,14 @@ msgid "" msgstr "" #. TRANS: Link to the author of a repeated notice. %s is a linked nickname. -#: actions/showstream.php:330 +#: actions/showstream.php:342 #, php-format msgid "Repeat of %s" msgstr "" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. -#: actions/silence.php:64 actions/unsilence.php:65 +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. +#: actions/silence.php:64 actions/unsilence.php:64 msgid "You cannot silence users on this site." msgstr "" @@ -6013,7 +6128,7 @@ msgid "URL used for credits link in footer of each page." msgstr "" #. TRANS: Field label on site settings panel. -#: actions/siteadminpanel.php:247 lib/settingsnav.php:98 +#: actions/siteadminpanel.php:247 msgid "Email" msgstr "" @@ -6185,76 +6300,76 @@ msgid "" msgstr "" #. TRANS: Confirmation message for successful SMS preferences save. -#: actions/smssettings.php:307 +#: actions/smssettings.php:308 msgid "SMS preferences saved." msgstr "" #. TRANS: Message given saving SMS phone number without having provided one. -#: actions/smssettings.php:329 +#: actions/smssettings.php:330 msgid "No phone number." msgstr "" #. TRANS: Message given saving SMS phone number without having selected a carrier. -#: actions/smssettings.php:335 +#: actions/smssettings.php:336 msgid "No carrier selected." msgstr "" #. TRANS: Message given saving SMS phone number that is already set. -#: actions/smssettings.php:343 +#: actions/smssettings.php:344 msgid "That is already your phone number." msgstr "" #. TRANS: Message given saving SMS phone number that is already set for another user. -#: actions/smssettings.php:347 +#: actions/smssettings.php:348 msgid "That phone number already belongs to another user." msgstr "" #. TRANS: Message given saving valid SMS phone number that is to be confirmed. -#: actions/smssettings.php:375 +#: actions/smssettings.php:376 msgid "" "A confirmation code was sent to the phone number you added. Check your phone " "for the code and instructions on how to use it." msgstr "" #. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. -#: actions/smssettings.php:403 +#: actions/smssettings.php:404 msgid "That is the wrong confirmation number." msgstr "" #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/smssettings.php:412 +#: actions/smssettings.php:413 msgid "Could not delete SMS confirmation." msgstr "" #. TRANS: Message given after successfully canceling SMS phone number confirmation. -#: actions/smssettings.php:417 +#: actions/smssettings.php:418 msgid "SMS confirmation cancelled." msgstr "" #. TRANS: Message given trying to remove an SMS phone number that is not #. TRANS: registered for the active user. -#: actions/smssettings.php:437 +#: actions/smssettings.php:438 msgid "That is not your phone number." msgstr "" #. TRANS: Message given after successfully removing a registered SMS phone number. -#: actions/smssettings.php:459 +#: actions/smssettings.php:460 msgid "The SMS phone number was removed." msgstr "" #. TRANS: Label for mobile carrier dropdown menu in SMS settings. -#: actions/smssettings.php:498 +#: actions/smssettings.php:499 msgid "Mobile carrier" msgstr "" #. TRANS: Default option for mobile carrier dropdown menu in SMS settings. -#: actions/smssettings.php:503 +#: actions/smssettings.php:504 msgid "Select a carrier" msgstr "" #. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. #. TRANS: %s is an administrative contact's e-mail address. -#: actions/smssettings.php:512 +#: actions/smssettings.php:513 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -6262,84 +6377,122 @@ msgid "" msgstr "" #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:534 +#: actions/smssettings.php:535 msgid "No code entered." msgstr "" -#. TRANS: Menu item for site administration -#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelnav.php:142 +#. TRANS: Title for admin panel to configure snapshots. +#: actions/snapshotadminpanel.php:53 +msgctxt "TITLE" msgid "Snapshots" msgstr "" -#: actions/snapshotadminpanel.php:65 +#. TRANS: Instructions for admin panel to configure snapshots. +#: actions/snapshotadminpanel.php:64 msgid "Manage snapshot configuration" msgstr "" -#: actions/snapshotadminpanel.php:127 +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. +#: actions/snapshotadminpanel.php:125 msgid "Invalid snapshot run value." msgstr "" -#: actions/snapshotadminpanel.php:133 +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. +#: actions/snapshotadminpanel.php:132 msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. #: actions/snapshotadminpanel.php:144 msgid "Invalid snapshot report URL." msgstr "" -#: actions/snapshotadminpanel.php:200 +#. TRANS: Fieldset legend on admin panel for snapshots. +#: actions/snapshotadminpanel.php:194 +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. +#: actions/snapshotadminpanel.php:199 msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. #: actions/snapshotadminpanel.php:201 msgid "In a scheduled job" msgstr "" -#: actions/snapshotadminpanel.php:206 +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. +#: actions/snapshotadminpanel.php:208 msgid "Data snapshots" msgstr "" -#: actions/snapshotadminpanel.php:208 -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#: actions/snapshotadminpanel.php:211 +msgid "When to send statistical data to status.net servers." msgstr "" -#: actions/snapshotadminpanel.php:217 +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. +#: actions/snapshotadminpanel.php:221 msgid "Frequency" msgstr "" -#: actions/snapshotadminpanel.php:218 -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#: actions/snapshotadminpanel.php:223 +msgid "Snapshots will be sent once every N web hits." msgstr "" -#: actions/snapshotadminpanel.php:226 +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. +#: actions/snapshotadminpanel.php:232 msgid "Report URL" msgstr "" -#: actions/snapshotadminpanel.php:227 -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#: actions/snapshotadminpanel.php:234 +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -#: actions/snapshotadminpanel.php:245 lib/applicationeditform.php:357 -msgid "Save" -msgstr "" - -#: actions/snapshotadminpanel.php:248 -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#: actions/snapshotadminpanel.php:256 +msgid "Save snapshot settings." msgstr "" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. -#: actions/subedit.php:75 +#: actions/subedit.php:76 msgid "You are not subscribed to that profile." msgstr "" #. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:89 classes/Subscription.php:141 +#: actions/subedit.php:90 classes/Subscription.php:147 msgid "Could not save subscription." msgstr "" +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +#: actions/subqueue.php:62 +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#: actions/subqueue.php:73 +#, php-format +msgid "%s subscribers awaiting approval" +msgstr "" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#: actions/subqueue.php:78 +#, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "" + +#. TRANS: Page notice for group members page. +#: actions/subqueue.php:88 +msgid "A list of users awaiting approval to subscribe to you." +msgstr "" + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. #: actions/subscribe.php:121 msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." @@ -6453,12 +6606,12 @@ msgid "Subscription feed for %s (Atom)" msgstr "" #. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list. -#: actions/subscriptions.php:241 lib/settingsnav.php:116 +#: actions/subscriptions.php:241 msgid "IM" msgstr "" #. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list. -#: actions/subscriptions.php:256 lib/settingsnav.php:123 +#: actions/subscriptions.php:256 msgid "SMS" msgstr "" @@ -6469,53 +6622,74 @@ msgstr "" msgid "Notices tagged with %1$s, page %2$d" msgstr "" -#: actions/tag.php:91 +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. +#: actions/tag.php:93 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" -#: actions/tag.php:97 +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. +#: actions/tag.php:101 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "" -#: actions/tag.php:103 +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. +#: actions/tag.php:109 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "" -#: actions/tagother.php:40 +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. +#: actions/tagother.php:42 msgid "No ID argument." msgstr "" -#: actions/tagother.php:66 +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. +#: actions/tagother.php:71 #, php-format msgid "Tag %s" msgstr "" -#: actions/tagother.php:78 +#. TRANS: Header for user details on "tag other users" page. +#: actions/tagother.php:84 msgid "User profile" msgstr "" -#: actions/tagother.php:121 +#. TRANS: Fieldset legend on "tag other users" page. +#: actions/tagother.php:128 msgid "Tag user" msgstr "" -#: actions/tagother.php:131 +#. TRANS: Title for input field for inputting tags on "tag other users" page. +#: actions/tagother.php:140 msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " "spaces." msgstr "" -#: actions/tagother.php:175 +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. +#: actions/tagother.php:187 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:218 +#. TRANS: Title of "tag other users" page. +#: actions/tagother.php:205 +msgctxt "TITLE" +msgid "Tags" +msgstr "" + +#. TRANS: Page notice on "tag other users" page. +#: actions/tagother.php:233 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" +#. TRANS: Client error when requesting a tag feed for a non-existing tag. #: actions/tagrss.php:35 msgid "No such tag." msgstr "" @@ -6525,74 +6699,85 @@ msgstr "" msgid "You haven't blocked that user." msgstr "" +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. #: actions/unsandbox.php:72 msgid "User is not sandboxed." msgstr "" +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. #: actions/unsilence.php:72 msgid "User is not silenced." msgstr "" -#: actions/unsubscribe.php:77 -msgid "No profile ID in request." -msgstr "" - -#: actions/unsubscribe.php:98 +#. TRANS: Page title for page to unsubscribe. +#: actions/unsubscribe.php:102 msgid "Unsubscribed" msgstr "" -#: actions/updateprofile.php:64 +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/updateprofile.php:65 actions/userauthorization.php:343 #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" -#: actions/urlsettings.php:60 +#. TRANS: Title of URL settings tab in profile settings. +#: actions/urlsettings.php:57 msgid "URL settings" msgstr "" #. TRANS: Instructions for tab "Other" in user profile settings. -#: actions/urlsettings.php:72 +#: actions/urlsettings.php:68 msgid "Manage various other options." msgstr "" #. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a #. TRANS: user's profile settings. This message has one space at the beginning. Use your #. TRANS: language's word separator here if it has one (most likely a single space). -#: actions/urlsettings.php:115 +#: actions/urlsettings.php:110 msgid " (free service)" msgstr "" -#: actions/urlsettings.php:121 +#. TRANS: Default value for URL shortening settings. +#: actions/urlsettings.php:117 msgid "[none]" msgstr "" -#: actions/urlsettings.php:122 +#. TRANS: Default value for URL shortening settings. +#: actions/urlsettings.php:119 msgid "[internal]" msgstr "" #. TRANS: Label for dropdown with URL shortener services. -#: actions/urlsettings.php:130 +#: actions/urlsettings.php:126 msgid "Shorten URLs with" msgstr "" #. TRANS: Tooltip for for dropdown with URL shortener services. -#: actions/urlsettings.php:132 +#: actions/urlsettings.php:128 msgid "Automatic shortening service to use." msgstr "" -#: actions/urlsettings.php:138 +#. TRANS: Field label in URL settings in profile. +#: actions/urlsettings.php:135 msgid "URL longer than" msgstr "" -#: actions/urlsettings.php:141 +#. TRANS: Field title in URL settings in profile. +#: actions/urlsettings.php:139 msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" -#: actions/urlsettings.php:145 +#. TRANS: Field label in URL settings in profile. +#: actions/urlsettings.php:144 msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. #: actions/urlsettings.php:148 msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." @@ -6603,19 +6788,22 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "" -#: actions/urlsettings.php:187 -msgid "Invalid number for max url length." +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. +#: actions/urlsettings.php:188 +msgid "Invalid number for maximum URL length." msgstr "" -#: actions/urlsettings.php:193 -msgid "Invalid number for max notice length." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#: actions/urlsettings.php:195 +msgid "Invalid number for maximum notice length." msgstr "" -#: actions/urlsettings.php:238 +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. +#: actions/urlsettings.php:241 msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. #: actions/useradminpanel.php:58 msgctxt "TITLE" msgid "User" @@ -6643,73 +6831,74 @@ msgstr "" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" -#: actions/useradminpanel.php:215 lib/personalgroupnav.php:79 -#: lib/settingsnav.php:83 lib/subgroupnav.php:79 +#. TRANS: Fieldset legend in user administration panel. +#: actions/useradminpanel.php:217 +msgctxt "LEGEND" msgid "Profile" msgstr "" #. TRANS: Field label in user admin panel for setting the character limit for the bio field. -#: actions/useradminpanel.php:220 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "" #. TRANS: Tooltip in user admin panel for setting the character limit for the bio field. -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "" #. TRANS: Form legend in user admin panel. -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:233 msgid "New users" msgstr "" #. TRANS: Field label in user admin panel for setting new user welcome text. -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:238 msgid "New user welcome" msgstr "" #. TRANS: Tooltip in user admin panel for setting new user welcome text. -#: actions/useradminpanel.php:238 +#: actions/useradminpanel.php:240 msgid "Welcome text for new users (maximum 255 characters)." msgstr "" #. TRANS: Field label in user admin panel for setting default subscription for new users. -#: actions/useradminpanel.php:244 +#: actions/useradminpanel.php:246 msgid "Default subscription" msgstr "" #. TRANS: Tooltip in user admin panel for setting default subscription for new users. -#: actions/useradminpanel.php:246 +#: actions/useradminpanel.php:248 msgid "Automatically subscribe new users to this user." msgstr "" #. TRANS: Form legend in user admin panel. -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:258 msgid "Invitations" msgstr "" #. TRANS: Field label for checkbox in user admin panel for allowing users to invite friend using site e-mail. -#: actions/useradminpanel.php:262 +#: actions/useradminpanel.php:264 msgid "Invitations enabled" msgstr "" #. TRANS: Tooltip for checkbox in user admin panel for allowing users to invite friend using site e-mail. -#: actions/useradminpanel.php:265 +#: actions/useradminpanel.php:267 msgid "Whether to allow users to invite new users." msgstr "" #. TRANS: Title for button to save user settings in user admin panel. -#: actions/useradminpanel.php:302 +#: actions/useradminpanel.php:304 msgid "Save user settings." msgstr "" #. TRANS: Page title. -#: actions/userauthorization.php:109 +#: actions/userauthorization.php:110 msgid "Authorize subscription" msgstr "" -#. TRANS: Page notice on "Auhtorize subscription" page. -#: actions/userauthorization.php:115 +#. TRANS: Page notice on "Authorize subscription" page. +#: actions/userauthorization.php:116 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, " @@ -6718,111 +6907,109 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. -#: actions/userauthorization.php:202 lib/approvegroupform.php:116 +#. TRANS: Submit button text to accept a subscription request on approve sub form. +#: actions/userauthorization.php:203 lib/approvegroupform.php:116 +#: lib/approvesubform.php:110 msgctxt "BUTTON" msgid "Accept" msgstr "" #. TRANS: Title for button on Authorise Subscription page. -#: actions/userauthorization.php:204 +#. TRANS: Button title to subscribe to a user. +#: actions/userauthorization.php:205 lib/subscribeform.php:132 msgid "Subscribe to this user." msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. -#: actions/userauthorization.php:207 lib/approvegroupform.php:118 +#. TRANS: Submit button text to reject a subscription request on approve sub form. +#: actions/userauthorization.php:208 lib/approvegroupform.php:118 +#: lib/approvesubform.php:112 msgctxt "BUTTON" msgid "Reject" msgstr "" #. TRANS: Title for button on Authorise Subscription page. -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:210 msgid "Reject this subscription." msgstr "" #. TRANS: Client error displayed for an empty authorisation request. -#: actions/userauthorization.php:222 +#: actions/userauthorization.php:223 msgid "No authorization request!" msgstr "" #. TRANS: Accept message header from Authorise subscription page. -#: actions/userauthorization.php:245 +#: actions/userauthorization.php:246 msgid "Subscription authorized" msgstr "" -#: actions/userauthorization.php:248 +#. TRANS: Accept message text from Authorise subscription page. +#: actions/userauthorization.php:249 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" #. TRANS: Reject message header from Authorise subscription page. -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:260 msgid "Subscription rejected" msgstr "" -#: actions/userauthorization.php:262 +#. TRANS: Reject message from Authorise subscription page. +#: actions/userauthorization.php:263 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" #. TRANS: Exception thrown when no valid user is found for an authorisation request. #. TRANS: %s is a listener URI. -#: actions/userauthorization.php:299 +#: actions/userauthorization.php:300 #, php-format msgid "Listener URI \"%s\" not found here." msgstr "" #. TRANS: Exception thrown when listenee URI is too long for an authorisation request. #. TRANS: %s is a listenee URI. -#: actions/userauthorization.php:306 +#: actions/userauthorization.php:307 #, 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:314 +#: actions/userauthorization.php:315 #, php-format msgid "Listenee URI \"%s\" is a local user." msgstr "" #. TRANS: Exception thrown when profile URL is a local user for an authorisation request. #. TRANS: %s is a profile URL. -#: actions/userauthorization.php:332 +#: actions/userauthorization.php:333 #, php-format 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:342 -#, php-format -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:352 +#: actions/userauthorization.php:353 #, php-format msgid "Avatar URL \"%s\" is not valid." msgstr "" #. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. #. TRANS: %s is an avatar URL. -#: actions/userauthorization.php:359 +#: actions/userauthorization.php:360 #, php-format msgid "Cannot read avatar URL \"%s\"." msgstr "" #. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. #. TRANS: %s is an avatar URL. -#: actions/userauthorization.php:366 +#: actions/userauthorization.php:367 #, php-format msgid "Wrong image type for avatar URL \"%s\"." msgstr "" @@ -6897,7 +7084,7 @@ msgstr "" #. TRANS: %1$s is a group name, %2$s is a site name. #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 +#: actions/userrss.php:98 lib/atomgroupnoticefeed.php:70 #: lib/atomusernoticefeed.php:95 #, php-format msgid "Updates from %1$s on %2$s!" @@ -6924,8 +7111,7 @@ msgid "Contributors" msgstr "" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration -#: actions/version.php:166 lib/adminpanelnav.php:150 +#: actions/version.php:166 msgid "License" msgstr "" @@ -6957,8 +7143,7 @@ msgid "" msgstr "" #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration -#: actions/version.php:195 lib/adminpanelnav.php:158 +#: actions/version.php:195 msgid "Plugins" msgstr "" @@ -7046,6 +7231,20 @@ msgstr[1] "" msgid "Invalid filename." msgstr "" +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_join_queue.php:66 classes/Group_member.php:86 +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#: classes/Group_join_queue.php:79 classes/Group_member.php:99 +#, php-format +msgid "Group ID %s is invalid." +msgstr "" + #. TRANS: Exception thrown when joining a group fails. #: classes/Group_member.php:52 msgid "Group join failed." @@ -7061,22 +7260,8 @@ msgstr "" msgid "Group leave failed." msgstr "" -#. TRANS: Exception thrown providing an invalid profile ID. -#. TRANS: %s is the invalid profile ID. -#: classes/Group_member.php:86 -#, php-format -msgid "Profile ID %s is invalid." -msgstr "" - -#. TRANS: Exception thrown providing an invalid group ID. -#. TRANS: %s is the invalid group ID. -#: classes/Group_member.php:99 -#, php-format -msgid "Group ID %s is invalid." -msgstr "" - #. TRANS: Activity title. -#: classes/Group_member.php:148 lib/joinform.php:114 +#: classes/Group_member.php:148 msgid "Join" msgstr "" @@ -7121,75 +7306,108 @@ msgstr "" #. TRANS: Server exception thrown when a user profile for a notice cannot be found. #. TRANS: %1$d is a profile ID (number), %2$d is a notice ID (number). -#: classes/Notice.php:99 +#: classes/Notice.php:106 #, php-format msgid "No such profile (%1$d) for notice (%2$d)." msgstr "" #. TRANS: Server exception. %s are the error details. -#: classes/Notice.php:200 +#: classes/Notice.php:207 #, php-format msgid "Database error inserting hashtag: %s" msgstr "" #. TRANS: Client exception thrown if a notice contains too many characters. -#: classes/Notice.php:281 +#: classes/Notice.php:290 msgid "Problem saving notice. Too long." msgstr "" #. TRANS: Client exception thrown when trying to save a notice for an unknown user. -#: classes/Notice.php:286 +#: classes/Notice.php:295 msgid "Problem saving notice. Unknown user." msgstr "" #. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame. -#: classes/Notice.php:292 +#: classes/Notice.php:301 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" #. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame. -#: classes/Notice.php:299 +#: classes/Notice.php:308 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" #. TRANS: Client exception thrown when a user tries to post while being banned. -#: classes/Notice.php:307 +#: classes/Notice.php:316 msgid "You are banned from posting notices on this site." msgstr "" +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#: classes/Notice.php:355 +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "" + +#. TRANS: Client error displayed when trying to repeat an own notice. +#: classes/Notice.php:360 +msgid "You cannot repeat your own notice." +msgstr "" + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#: classes/Notice.php:366 +msgid "Cannot repeat a private notice." +msgstr "" + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#: classes/Notice.php:372 +msgid "Cannot repeat a notice you cannot read." +msgstr "" + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +#: classes/Notice.php:377 +msgid "You already repeated that notice." +msgstr "" + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#: classes/Notice.php:390 +#, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. -#: classes/Notice.php:380 classes/Notice.php:407 +#: classes/Notice.php:445 classes/Notice.php:472 msgid "Problem saving notice." msgstr "" #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:865 +#: classes/Notice.php:930 msgid "Bad type provided to saveKnownGroups." msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:964 +#: classes/Notice.php:1029 msgid "Problem saving group inbox." msgstr "" #. TRANS: Server exception thrown when a reply cannot be saved. #. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. -#: classes/Notice.php:1080 +#: classes/Notice.php:1145 #, php-format msgid "Could not save reply for %1$d, %2$d." msgstr "" #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1544 +#: classes/Notice.php:1618 #, php-format msgid "RT @%1$s %2$s" msgstr "" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #: classes/Profile.php:172 classes/User_group.php:245 #, php-format @@ -7197,21 +7415,16 @@ msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -#: classes/Profile.php:335 -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:793 +#: classes/Profile.php:790 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:802 +#: classes/Profile.php:799 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -7227,66 +7440,68 @@ msgid "Unable to save tag." msgstr "" #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:77 lib/oauthstore.php:482 +#. TRANS: Error message displayed to a banned user when they try to subscribe. +#: classes/Subscription.php:79 lib/oauthstore.php:483 msgid "You have been banned from subscribing." msgstr "" #. TRANS: Exception thrown when trying to subscribe while already subscribed. -#: classes/Subscription.php:82 +#: classes/Subscription.php:84 msgid "Already subscribed!" msgstr "" #. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user. -#: classes/Subscription.php:87 +#: classes/Subscription.php:89 msgid "User has blocked you." msgstr "" #. TRANS: Exception thrown when trying to unsibscribe without a subscription. -#: classes/Subscription.php:176 +#: classes/Subscription.php:182 msgid "Not subscribed!" msgstr "" #. TRANS: Exception thrown when trying to unsubscribe a user from themselves. -#: classes/Subscription.php:183 +#: classes/Subscription.php:189 msgid "Could not delete self-subscription." msgstr "" #. TRANS: Exception thrown when the OMB token for a subscription could not deleted on the server. -#: classes/Subscription.php:211 +#: classes/Subscription.php:217 msgid "Could not delete subscription OMB token." msgstr "" #. TRANS: Exception thrown when a subscription could not be deleted on the server. -#: classes/Subscription.php:223 +#: classes/Subscription.php:229 msgid "Could not delete subscription." msgstr "" -#. TRANS: Activity tile when subscribing to another person. -#: classes/Subscription.php:265 +#. TRANS: Activity title when subscribing to another person. +#: classes/Subscription.php:271 +msgctxt "TITLE" msgid "Follow" msgstr "" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. -#: classes/Subscription.php:268 +#: classes/Subscription.php:274 #, php-format msgid "%1$s is now following %2$s." msgstr "" #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. -#: classes/User.php:393 +#: classes/User.php:404 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" #. TRANS: Server exception. -#: classes/User.php:871 +#: classes/User.php:882 msgid "No single user defined for single-user mode." msgstr "" #. TRANS: Server exception. -#: classes/User.php:875 +#: classes/User.php:886 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7333,60 +7548,57 @@ msgstr "" #. TRANS: H2 for user actions in a profile. #. TRANS: H2 for entity actions in a profile. -#: lib/accountprofileblock.php:103 lib/accountprofileblock.php:118 +#: lib/accountprofileblock.php:102 lib/accountprofileblock.php:117 msgid "User actions" msgstr "" #. TRANS: Text shown in user profile of not yet compeltely deleted users. -#: lib/accountprofileblock.php:107 +#: lib/accountprofileblock.php:106 msgid "User deletion in progress..." msgstr "" #. TRANS: Link title for link on user profile. -#: lib/accountprofileblock.php:134 -msgid "Edit profile settings" +#: lib/accountprofileblock.php:133 +msgid "Edit profile settings." msgstr "" #. TRANS: Link text for link on user profile. -#: lib/accountprofileblock.php:136 +#: lib/accountprofileblock.php:135 +msgctxt "BUTTON" msgid "Edit" msgstr "" #. TRANS: Link title for link on user profile. -#: lib/accountprofileblock.php:160 -msgid "Send a direct message to this user" +#: lib/accountprofileblock.php:162 +msgid "Send a direct message to this user." msgstr "" #. TRANS: Link text for link on user profile. -#: lib/accountprofileblock.php:162 +#: lib/accountprofileblock.php:164 +msgctxt "BUTTON" msgid "Message" msgstr "" #. TRANS: Label text on user profile to select a user role. -#: lib/accountprofileblock.php:204 +#: lib/accountprofileblock.php:206 msgid "Moderate" msgstr "" #. TRANS: Label text on user profile to select a user role. -#: lib/accountprofileblock.php:243 +#: lib/accountprofileblock.php:245 msgid "User role" msgstr "" -#. TRANS: Role that can be set for a user profile. -#: lib/accountprofileblock.php:246 -msgctxt "role" -msgid "Administrator" -msgstr "" - #. TRANS: Role that can be set for a user profile. #: lib/accountprofileblock.php:248 msgctxt "role" -msgid "Moderator" +msgid "Administrator" msgstr "" -#. TRANS: Link text for link that will subscribe to a remote profile. -#: lib/accountprofileblock.php:288 lib/subscribeform.php:139 -msgid "Subscribe" +#. TRANS: Role that can be set for a user profile. +#: lib/accountprofileblock.php:250 +msgctxt "role" +msgid "Moderator" msgstr "" #. TRANS: Page title. %1$s is the title, %2$s is the site name. @@ -7418,7 +7630,9 @@ msgstr "" msgid "Write a reply..." msgstr "" -#: lib/action.php:612 +#. TRANS: Tab on the notice form. +#: lib/action.php:613 +msgctxt "TAB" msgid "Status" msgstr "" @@ -7426,7 +7640,7 @@ msgstr "" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:986 +#: lib/action.php:990 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -7434,7 +7648,7 @@ msgid "" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:989 +#: lib/action.php:993 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" @@ -7443,7 +7657,7 @@ msgstr "" #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:996 +#: lib/action.php:1000 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -7453,39 +7667,39 @@ msgstr "" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:1014 +#: lib/action.php:1018 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:1021 +#: lib/action.php:1025 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:1025 +#: lib/action.php:1029 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:1057 +#: lib/action.php:1061 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1400 +#: lib/action.php:1404 msgid "After" msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1410 +#: lib/action.php:1414 msgid "Before" msgstr "" @@ -7549,9 +7763,10 @@ msgstr "" msgid "No content for notice %s." msgstr "" -#: lib/activitymover.php:84 +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#: lib/activitymover.php:85 #, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "" #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -7607,94 +7822,141 @@ msgstr "" msgid "Unable to delete design setting." msgstr "" -#: lib/adminpanelnav.php:65 lib/adminpanelnav.php:69 -#: lib/defaultlocalnav.php:58 lib/personalgroupnav.php:74 -#: lib/settingsnav.php:66 lib/settingsnav.php:70 +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#: lib/adminpanelnav.php:65 lib/settingsnav.php:65 +msgctxt "HEADER" msgid "Home" msgstr "" -#: lib/adminpanelnav.php:77 lib/primarynav.php:63 +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#: lib/adminpanelnav.php:70 lib/defaultlocalnav.php:58 +#: lib/personalgroupnav.php:74 lib/settingsnav.php:70 +msgctxt "MENU" +msgid "Home" +msgstr "" + +#. TRANS: Header in administrator navigation panel. +#: lib/adminpanelnav.php:81 +msgctxt "HEADER" msgid "Admin" msgstr "" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelnav.php:84 +#. TRANS: Menu item title in administrator navigation panel. +#: lib/adminpanelnav.php:88 msgid "Basic site configuration" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelnav.php:86 +#. TRANS: Menu item in administrator navigation panel. +#: lib/adminpanelnav.php:90 msgctxt "MENU" msgid "Site" msgstr "" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelnav.php:92 +#. TRANS: Menu item title in administrator navigation panel. +#: lib/adminpanelnav.php:96 msgid "Design configuration" msgstr "" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/adminpanelnav.php:94 lib/groupnav.php:143 +#. TRANS: Menu item in settings navigation panel. +#: lib/adminpanelnav.php:98 lib/groupnav.php:143 lib/settingsnav.php:115 msgctxt "MENU" msgid "Design" msgstr "" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelnav.php:100 +#. TRANS: Menu item title in administrator navigation panel. +#: lib/adminpanelnav.php:104 msgid "User configuration" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelnav.php:102 lib/personalgroupnav.php:91 +#. TRANS: Menu item in administrator navigation panel. +#: lib/adminpanelnav.php:106 +msgctxt "MENU" msgid "User" msgstr "" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelnav.php:108 +#. TRANS: Menu item title in administrator navigation panel. +#: lib/adminpanelnav.php:112 msgid "Access configuration" msgstr "" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelnav.php:116 +#. TRANS: Menu item in administrator navigation panel. +#: lib/adminpanelnav.php:114 +msgctxt "MENU" +msgid "Access" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. +#: lib/adminpanelnav.php:120 msgid "Paths configuration" msgstr "" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelnav.php:124 +#. TRANS: Menu item in administrator navigation panel. +#: lib/adminpanelnav.php:122 +msgctxt "MENU" +msgid "Paths" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. +#: lib/adminpanelnav.php:128 msgid "Sessions configuration" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelnav.php:126 +#. TRANS: Menu item in administrator navigation panel. +#: lib/adminpanelnav.php:130 +msgctxt "MENU" msgid "Sessions" msgstr "" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelnav.php:132 +#. TRANS: Menu item title in administrator navigation panel. +#: lib/adminpanelnav.php:136 msgid "Edit site notice" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelnav.php:134 +#. TRANS: Menu item in administrator navigation panel. +#: lib/adminpanelnav.php:138 +msgctxt "MENU" msgid "Site notice" msgstr "" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelnav.php:140 +#. TRANS: Menu item title in administrator navigation panel. +#: lib/adminpanelnav.php:144 msgid "Snapshots configuration" msgstr "" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelnav.php:148 +#. TRANS: Menu item in administrator navigation panel. +#: lib/adminpanelnav.php:146 +msgctxt "MENU" +msgid "Snapshots" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. +#: lib/adminpanelnav.php:152 msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelnav.php:156 +#. TRANS: Menu item in administrator navigation panel. +#: lib/adminpanelnav.php:154 +msgctxt "MENU" +msgid "License" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. +#: lib/adminpanelnav.php:160 msgid "Plugins configuration" msgstr "" +#. TRANS: Menu item in administrator navigation panel. +#: lib/adminpanelnav.php:162 +msgctxt "MENU" +msgid "Plugins" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -7705,62 +7967,65 @@ msgstr "" msgid "No application for that consumer key." msgstr "" -#: lib/apiauth.php:202 lib/apiauth.php:284 +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. +#: lib/apiauth.php:203 lib/apiauth.php:286 msgid "Not allowed to use API." msgstr "" #. TRANS: OAuth exception given when an incorrect access token was given for a user. -#: lib/apiauth.php:225 +#: lib/apiauth.php:226 msgid "Bad access token." msgstr "" #. TRANS: OAuth exception given when no user was found for a given token (no token was found). -#: lib/apiauth.php:230 +#: lib/apiauth.php:231 msgid "No user for that token." msgstr "" #. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". #. TRANS: Client error thrown when authentication fails. -#: lib/apiauth.php:272 lib/apiauth.php:302 +#: lib/apiauth.php:273 lib/apiauth.php:304 msgid "Could not authenticate you." msgstr "" #. TRANS: Server error displayed when trying to create an anynymous OAuth consumer. -#: lib/apioauthstore.php:45 +#: lib/apioauthstore.php:46 msgid "Could not create anonymous consumer." msgstr "" #. TRANS: Server error displayed when trying to create an anynymous OAuth application. -#: lib/apioauthstore.php:69 +#: lib/apioauthstore.php:70 msgid "Could not create anonymous OAuth application." msgstr "" #. TRANS: Exception thrown when no token association could be found. -#: lib/apioauthstore.php:151 +#: lib/apioauthstore.php:152 msgid "" "Could not find a profile and application associated with the request token." msgstr "" #. TRANS: Exception thrown when no access token can be issued. -#: lib/apioauthstore.php:209 +#: lib/apioauthstore.php:210 msgid "Could not issue access token." msgstr "" -#: lib/apioauthstore.php:317 +#. TRANS: Exception thrown when a database error occurs. +#: lib/apioauthstore.php:318 msgid "Database error inserting OAuth application user." msgstr "" -#: lib/apioauthstore.php:345 +#. TRANS: Exception thrown when a database error occurs. +#: lib/apioauthstore.php:346 msgid "Database error updating OAuth application user." msgstr "" #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. -#: lib/apioauthstore.php:371 +#: lib/apioauthstore.php:372 msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:376 +#: lib/apioauthstore.php:377 msgid "Failed to delete revoked token." msgstr "" @@ -7864,39 +8129,52 @@ msgstr "" msgid "Cancel" msgstr "" -#: lib/applicationlist.php:247 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:357 +msgid "Save" +msgstr "" + +#. TRANS: Name for an anonymous application in application list. +#: lib/applicationlist.php:241 +msgid "Unknown application" +msgstr "" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. +#: lib/applicationlist.php:250 msgid " by " msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:260 +#: lib/applicationlist.php:263 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:262 +#: lib/applicationlist.php:265 msgid "read-only" msgstr "" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") -#: lib/applicationlist.php:268 +#: lib/applicationlist.php:271 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Access token in the application list. #. TRANS: %s are the first 7 characters of the access token. -#: lib/applicationlist.php:282 +#: lib/applicationlist.php:286 #, php-format msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label -#: lib/applicationlist.php:298 +#. TRANS: Button label in application list to revoke access to user data. +#: lib/applicationlist.php:302 msgctxt "BUTTON" msgid "Revoke" msgstr "" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. #: lib/atom10feed.php:113 msgid "Author element must contain a name element." msgstr "" @@ -7942,6 +8220,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#: lib/cancelsubscriptionform.php:122 +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "" + #. TRANS: Title for command results. #: lib/channel.php:104 lib/channel.php:125 msgid "Command results" @@ -7953,7 +8237,8 @@ msgid "AJAX error" msgstr "" #. TRANS: E-mail subject when a command has completed. -#: lib/channel.php:177 lib/mailhandler.php:143 +#. TRANS: E-mail subject for reply to an e-mail command. +#: lib/channel.php:177 lib/mailhandler.php:147 msgid "Command complete" msgstr "" @@ -7969,7 +8254,7 @@ msgstr "" #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:99 lib/command.php:636 +#: lib/command.php:99 lib/command.php:622 msgid "User has no last notice." msgstr "" @@ -8057,7 +8342,7 @@ msgstr "" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is a location. -#: lib/command.php:440 lib/mail.php:296 +#: lib/command.php:440 lib/mail.php:339 #, php-format msgid "Location: %s" msgstr "" @@ -8065,7 +8350,7 @@ msgstr "" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is a homepage. -#: lib/command.php:444 lib/mail.php:301 +#: lib/command.php:444 lib/mail.php:344 #, php-format msgid "Homepage: %s" msgstr "" @@ -8087,7 +8372,9 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:494 lib/implugin.php:486 +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). +#: lib/command.php:494 lib/implugin.php:492 #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -8106,19 +8393,14 @@ msgstr "" #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:559 +#: lib/command.php:546 #, php-format msgid "Notice from %s repeated." msgstr "" -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:562 -msgid "Error repeating notice." -msgstr "" - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:597 +#: lib/command.php:583 #, php-format msgid "Notice too long - maximum is %1$d character, you sent %2$d." msgid_plural "Notice too long - maximum is %1$d characters, you sent %2$d." @@ -8127,100 +8409,100 @@ msgstr[1] "" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:610 +#: lib/command.php:596 #, php-format msgid "Reply to %s sent." msgstr "" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:613 +#: lib/command.php:599 msgid "Error saving notice." msgstr "" #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:660 +#: lib/command.php:646 msgid "Specify the name of the user to subscribe to." msgstr "" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:669 +#: lib/command.php:655 msgid "Can't subscribe to OMB profiles by command." msgstr "" #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:677 +#: lib/command.php:663 #, php-format msgid "Subscribed to %s." msgstr "" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:698 lib/command.php:809 +#: lib/command.php:684 lib/command.php:795 msgid "Specify the name of the user to unsubscribe from." msgstr "" #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:709 +#: lib/command.php:695 #, php-format msgid "Unsubscribed from %s." msgstr "" #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:729 lib/command.php:755 +#: lib/command.php:715 lib/command.php:741 msgid "Command not yet implemented." msgstr "" #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:733 +#: lib/command.php:719 msgid "Notification off." msgstr "" #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:736 +#: lib/command.php:722 msgid "Can't turn off notification." msgstr "" #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:759 +#: lib/command.php:745 msgid "Notification on." msgstr "" #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:762 +#: lib/command.php:748 msgid "Can't turn on notification." msgstr "" #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:776 +#: lib/command.php:762 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:789 +#: lib/command.php:775 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:818 +#: lib/command.php:804 #, php-format msgid "Unsubscribed %s." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:836 +#: lib/command.php:822 msgid "You are not subscribed to anyone." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:841 +#: lib/command.php:827 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "" @@ -8228,14 +8510,14 @@ msgstr[1] "" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:863 +#: lib/command.php:849 msgid "No one is subscribed to you." msgstr "" #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:868 +#: lib/command.php:854 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "" @@ -8243,178 +8525,178 @@ msgstr[1] "" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:890 +#: lib/command.php:876 msgid "You are not a member of any groups." msgstr "" #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:895 +#: lib/command.php:881 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "" msgstr[1] "" #. TRANS: Header line of help text for commands. -#: lib/command.php:909 +#: lib/command.php:895 msgctxt "COMMANDHELP" msgid "Commands:" msgstr "" #. TRANS: Help message for IM/SMS command "on" -#: lib/command.php:911 +#: lib/command.php:897 msgctxt "COMMANDHELP" msgid "turn on notifications" msgstr "" #. TRANS: Help message for IM/SMS command "off" -#: lib/command.php:913 +#: lib/command.php:899 msgctxt "COMMANDHELP" msgid "turn off notifications" msgstr "" #. TRANS: Help message for IM/SMS command "help" -#: lib/command.php:915 +#: lib/command.php:901 msgctxt "COMMANDHELP" msgid "show this help" msgstr "" #. TRANS: Help message for IM/SMS command "follow " -#: lib/command.php:917 +#: lib/command.php:903 msgctxt "COMMANDHELP" msgid "subscribe to user" msgstr "" #. TRANS: Help message for IM/SMS command "groups" -#: lib/command.php:919 +#: lib/command.php:905 msgctxt "COMMANDHELP" msgid "lists the groups you have joined" msgstr "" #. TRANS: Help message for IM/SMS command "subscriptions" -#: lib/command.php:921 +#: lib/command.php:907 msgctxt "COMMANDHELP" msgid "list the people you follow" msgstr "" #. TRANS: Help message for IM/SMS command "subscribers" -#: lib/command.php:923 +#: lib/command.php:909 msgctxt "COMMANDHELP" msgid "list the people that follow you" msgstr "" #. TRANS: Help message for IM/SMS command "leave " -#: lib/command.php:925 +#: lib/command.php:911 msgctxt "COMMANDHELP" msgid "unsubscribe from user" msgstr "" #. TRANS: Help message for IM/SMS command "d " -#: lib/command.php:927 +#: lib/command.php:913 msgctxt "COMMANDHELP" msgid "direct message to user" msgstr "" #. TRANS: Help message for IM/SMS command "get " -#: lib/command.php:929 +#: lib/command.php:915 msgctxt "COMMANDHELP" msgid "get last notice from user" msgstr "" #. TRANS: Help message for IM/SMS command "whois " -#: lib/command.php:931 +#: lib/command.php:917 msgctxt "COMMANDHELP" msgid "get profile info on user" msgstr "" #. TRANS: Help message for IM/SMS command "lose " -#: lib/command.php:933 +#: lib/command.php:919 msgctxt "COMMANDHELP" msgid "force user to stop following you" msgstr "" #. TRANS: Help message for IM/SMS command "fav " -#: lib/command.php:935 +#: lib/command.php:921 msgctxt "COMMANDHELP" msgid "add user's last notice as a 'fave'" msgstr "" #. TRANS: Help message for IM/SMS command "fav #" -#: lib/command.php:937 +#: lib/command.php:923 msgctxt "COMMANDHELP" msgid "add notice with the given id as a 'fave'" msgstr "" #. TRANS: Help message for IM/SMS command "repeat #" -#: lib/command.php:939 +#: lib/command.php:925 msgctxt "COMMANDHELP" msgid "repeat a notice with a given id" msgstr "" #. TRANS: Help message for IM/SMS command "repeat " -#: lib/command.php:941 +#: lib/command.php:927 msgctxt "COMMANDHELP" msgid "repeat the last notice from user" msgstr "" #. TRANS: Help message for IM/SMS command "reply #" -#: lib/command.php:943 +#: lib/command.php:929 msgctxt "COMMANDHELP" msgid "reply to notice with a given id" msgstr "" #. TRANS: Help message for IM/SMS command "reply " -#: lib/command.php:945 +#: lib/command.php:931 msgctxt "COMMANDHELP" msgid "reply to the last notice from user" msgstr "" #. TRANS: Help message for IM/SMS command "join " -#: lib/command.php:947 +#: lib/command.php:933 msgctxt "COMMANDHELP" msgid "join group" msgstr "" #. TRANS: Help message for IM/SMS command "login" -#: lib/command.php:949 +#: lib/command.php:935 msgctxt "COMMANDHELP" msgid "Get a link to login to the web interface" msgstr "" #. TRANS: Help message for IM/SMS command "drop " -#: lib/command.php:951 +#: lib/command.php:937 msgctxt "COMMANDHELP" msgid "leave group" msgstr "" #. TRANS: Help message for IM/SMS command "stats" -#: lib/command.php:953 +#: lib/command.php:939 msgctxt "COMMANDHELP" msgid "get your stats" msgstr "" #. TRANS: Help message for IM/SMS command "stop" #. TRANS: Help message for IM/SMS command "quit" -#: lib/command.php:955 lib/command.php:957 +#: lib/command.php:941 lib/command.php:943 msgctxt "COMMANDHELP" msgid "same as 'off'" msgstr "" #. TRANS: Help message for IM/SMS command "sub " -#: lib/command.php:959 +#: lib/command.php:945 msgctxt "COMMANDHELP" msgid "same as 'follow'" msgstr "" #. TRANS: Help message for IM/SMS command "unsub " -#: lib/command.php:961 +#: lib/command.php:947 msgctxt "COMMANDHELP" msgid "same as 'leave'" msgstr "" #. TRANS: Help message for IM/SMS command "last " -#: lib/command.php:963 +#: lib/command.php:949 msgctxt "COMMANDHELP" msgid "same as 'get'" msgstr "" @@ -8428,15 +8710,15 @@ msgstr "" #. TRANS: Help message for IM/SMS command "untrack all" #. TRANS: Help message for IM/SMS command "tracks" #. TRANS: Help message for IM/SMS command "tracking" -#: lib/command.php:965 lib/command.php:967 lib/command.php:971 -#: lib/command.php:973 lib/command.php:975 lib/command.php:977 -#: lib/command.php:979 lib/command.php:981 lib/command.php:983 +#: lib/command.php:951 lib/command.php:953 lib/command.php:957 +#: lib/command.php:959 lib/command.php:961 lib/command.php:963 +#: lib/command.php:965 lib/command.php:967 lib/command.php:969 msgctxt "COMMANDHELP" msgid "not yet implemented." msgstr "" #. TRANS: Help message for IM/SMS command "nudge " -#: lib/command.php:969 +#: lib/command.php:955 msgctxt "COMMANDHELP" msgid "remind a user to update." msgstr "" @@ -8463,17 +8745,21 @@ msgstr "" msgid "Go to the installer." msgstr "" -#: lib/dberroraction.php:59 +#. TRANS: Page title for when a database error occurs. +#: lib/dberroraction.php:60 msgid "Database error" msgstr "" -#: lib/defaultlocalnav.php:62 lib/publicgroupnav.php:64 +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#: lib/defaultlocalnav.php:63 lib/publicgroupnav.php:63 +msgctxt "MENU" msgid "Public" msgstr "" #. TRANS: Title of form for deleting a user. -#: lib/deletegroupform.php:121 lib/deleteuserform.php:64 -#: lib/noticelistitem.php:583 +#. TRANS: Link text in notice list item to delete a notice. +#: lib/deleteuserform.php:64 lib/noticelistitem.php:582 msgid "Delete" msgstr "" @@ -8482,67 +8768,47 @@ msgstr "" msgid "Delete this user" msgstr "" -#: lib/designform.php:114 +#. TRANS: Form legend of form for changing the page design. +#: lib/designform.php:110 msgid "Change design" msgstr "" #. TRANS: Fieldset legend on profile design page to change profile page colours. -#: lib/designform.php:131 +#: lib/designform.php:126 msgid "Change colours" msgstr "" #. TRANS: Button text on profile design page to immediately reset all colour settings to default. -#: lib/designform.php:138 +#: lib/designform.php:133 msgid "Use defaults" msgstr "" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: lib/designform.php:140 -msgid "Restore default designs" -msgstr "" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: lib/designform.php:148 -msgid "Reset back to default" -msgstr "" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -#: lib/designform.php:158 +#: lib/designform.php:153 msgid "Upload file" msgstr "" #. TRANS: Instructions for form on profile design page. -#: lib/designform.php:163 +#: lib/designform.php:158 msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -#: lib/designform.php:194 +#: lib/designform.php:189 msgctxt "RADIO" msgid "On" msgstr "" #. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -#: lib/designform.php:211 +#: lib/designform.php:206 msgctxt "RADIO" msgid "Off" msgstr "" -#. TRANS: Title for button on profile design page to save settings. -#: lib/designform.php:322 -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:216 lib/designsettings.php:238 -msgid "Couldn't update your design." -msgstr "" - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -#: lib/designsettings.php:244 +#: lib/designsettings.php:245 msgid "Design defaults restored." msgstr "" @@ -8576,32 +8842,35 @@ msgctxt "BUTTON" msgid "Favor" msgstr "" -#: lib/feed.php:84 +#. TRANS: Feed type name. +#: lib/feed.php:85 msgid "RSS 1.0" msgstr "" -#: lib/feed.php:86 +#. TRANS: Feed type name. +#: lib/feed.php:88 msgid "RSS 2.0" msgstr "" -#: lib/feed.php:88 +#. TRANS: Feed type name. +#: lib/feed.php:91 msgid "Atom" msgstr "" -#: lib/feed.php:90 +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. +#: lib/feed.php:94 msgid "FOAF" msgstr "" -#: lib/feedimporter.php:75 -msgid "Not an atom feed." -msgstr "" - +#. TRANS: Client exception thrown when an imported feed does not have an author. #: lib/feedimporter.php:82 msgid "No author in the feed." msgstr "" -#: lib/feedimporter.php:89 -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +#: lib/feedimporter.php:91 +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). @@ -8609,27 +8878,35 @@ msgstr "" msgid "Feeds" msgstr "" -#: lib/galleryaction.php:128 +#. TRANS: List element on gallery action page to show all tags. +#: lib/galleryaction.php:132 +msgctxt "TAGS" msgid "All" msgstr "" -#: lib/galleryaction.php:136 +#. TRANS: Fieldset legend on gallery action page. +#: lib/galleryaction.php:141 msgid "Select tag to filter" msgstr "" -#: lib/galleryaction.php:137 +#. TRANS: Dropdown field label on gallery action page for a list containing tags. +#: lib/galleryaction.php:143 msgid "Tag" msgstr "" -#: lib/galleryaction.php:138 -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#: lib/galleryaction.php:145 +msgid "Choose a tag to narrow list." msgstr "" -#: lib/galleryaction.php:140 +#. TRANS: Submit button text on gallery action page. +#: lib/galleryaction.php:148 +msgctxt "BUTTON" msgid "Go" msgstr "" -#: lib/grantroleform.php:91 +#. TRANS: Description on form for granting a role. +#: lib/grantroleform.php:88 #, php-format msgid "Grant this user the \"%s\" role" msgstr "" @@ -8694,16 +8971,18 @@ msgstr[1] "" msgid "Membership policy" msgstr "" -#: lib/groupeditform.php:208 +#. TRANS: Group membership policy option. +#: lib/groupeditform.php:209 msgid "Open to all" msgstr "" -#: lib/groupeditform.php:209 +#. TRANS: Group membership policy option. +#: lib/groupeditform.php:211 msgid "Admin must approve all members" msgstr "" #. TRANS: Dropdown field title on group edit form. -#: lib/groupeditform.php:211 +#: lib/groupeditform.php:213 msgid "Whether admin approval is required to join this group." msgstr "" @@ -8774,7 +9053,8 @@ msgid "%s blocked users" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/groupnav.php:125 +#. TRANS: Menu item in primary navigation panel. +#: lib/groupnav.php:125 lib/primarynav.php:66 msgctxt "MENU" msgid "Admin" msgstr "" @@ -8893,27 +9173,51 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" -#: lib/implugin.php:262 +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. +#: lib/implugin.php:265 #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" -#: lib/implugin.php:349 +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). +#: lib/implugin.php:353 #, php-format msgid "Unknown inbox source %d." msgstr "" -#: lib/leaveform.php:114 +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +#: lib/implugin.php:629 +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +#: lib/implugin.php:634 +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#: lib/joinform.php:108 +msgctxt "BUTTON" +msgid "Join" +msgstr "" + +#. TRANS: Button text on form to leave a group. +#: lib/leaveform.php:109 +msgctxt "BUTTON" msgid "Leave" msgstr "" #. TRANS: Menu item for logging in to the StatusNet site. -#: lib/logingroupnav.php:64 +#. TRANS: Menu item in primary navigation panel. +#: lib/logingroupnav.php:64 lib/primarynav.php:82 msgctxt "MENU" msgid "Login" msgstr "" @@ -8968,10 +9272,26 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "" +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#: lib/mail.php:284 +#, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "" + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#: lib/mail.php:291 +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. -#: lib/mail.php:267 +#: lib/mail.php:310 #, php-format msgid "" "Faithfully yours,\n" @@ -8983,21 +9303,21 @@ msgstr "" #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is a URL. -#: lib/mail.php:292 +#: lib/mail.php:335 #, php-format msgid "Profile: %s" msgstr "" #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is biographical information. -#: lib/mail.php:306 +#: lib/mail.php:349 #, php-format msgid "Bio: %s" msgstr "" #. TRANS: This is a paragraph in a new-subscriber e-mail. #. TRANS: %s is a URL where the subscriber can be reported as abusive. -#: lib/mail.php:316 +#: lib/mail.php:359 #, php-format msgid "" "If you believe this account is being used abusively, you can block them from " @@ -9006,7 +9326,7 @@ msgstr "" #. TRANS: Subject of notification mail for new posting email address. #. TRANS: %s is the StatusNet sitename. -#: lib/mail.php:344 +#: lib/mail.php:387 #, php-format msgid "New email address for posting to %s" msgstr "" @@ -9014,7 +9334,7 @@ msgstr "" #. TRANS: Body of notification mail for new posting email address. #. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send #. TRANS: to to post by e-mail, %3$s is a URL to more instructions. -#: lib/mail.php:350 +#: lib/mail.php:393 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -9026,26 +9346,26 @@ msgstr "" #. TRANS: Subject line for SMS-by-email notification messages. #. TRANS: %s is the posting user's nickname. -#: lib/mail.php:471 +#: lib/mail.php:514 #, php-format msgid "%s status" msgstr "" #. TRANS: Subject line for SMS-by-email address confirmation message. -#: lib/mail.php:497 +#: lib/mail.php:540 msgid "SMS confirmation" msgstr "" #. TRANS: Main body heading for SMS-by-email address confirmation message. #. TRANS: %s is the addressed user's nickname. -#: lib/mail.php:501 +#: lib/mail.php:544 #, php-format msgid "%s: confirm you own this phone number with this code:" msgstr "" #. TRANS: Subject for 'nudge' notification email. #. TRANS: %s is the nudging user. -#: lib/mail.php:522 +#: lib/mail.php:565 #, php-format msgid "You have been nudged by %s" msgstr "" @@ -9053,7 +9373,7 @@ msgstr "" #. TRANS: Body for 'nudge' notification email. #. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname, #. TRANS: %3$s is a URL to post notices at. -#: lib/mail.php:529 +#: lib/mail.php:572 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -9068,7 +9388,7 @@ msgstr "" #. TRANS: Subject for direct-message notification email. #. TRANS: %s is the sending user's nickname. -#: lib/mail.php:574 +#: lib/mail.php:617 #, php-format msgid "New private message from %s" msgstr "" @@ -9076,7 +9396,7 @@ msgstr "" #. TRANS: Body for direct-message notification email. #. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, #. TRANS: %3$s is the message content, %4$s a URL to the message, -#: lib/mail.php:581 +#: lib/mail.php:624 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -9094,7 +9414,7 @@ msgstr "" #. TRANS: Subject for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. -#: lib/mail.php:631 +#: lib/mail.php:674 #, php-format msgid "%1$s (@%2$s) added your notice as a favorite" msgstr "" @@ -9104,7 +9424,7 @@ msgstr "" #. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text, #. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename, #. TRANS: %7$s is the adding user's nickname. -#: lib/mail.php:638 +#: lib/mail.php:681 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -9123,7 +9443,7 @@ msgid "" msgstr "" #. TRANS: Line in @-reply notification e-mail. %s is conversation URL. -#: lib/mail.php:695 +#: lib/mail.php:738 #, php-format msgid "" "The full conversation can be read here:\n" @@ -9133,7 +9453,7 @@ msgstr "" #. TRANS: E-mail subject for notice notification. #. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname. -#: lib/mail.php:703 +#: lib/mail.php:746 #, php-format msgid "%1$s (@%2$s) sent a notice to your attention" msgstr "" @@ -9143,7 +9463,7 @@ msgstr "" #. TRANS: %3$s is a URL to the notice, %4$s is the notice text, #. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty), #. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replies for the addressed user, -#: lib/mail.php:710 +#: lib/mail.php:753 #, php-format msgid "" "%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -9171,14 +9491,14 @@ msgstr "" #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. #. TRANS: %5$s is a link to the addressed user's e-mail settings. -#: lib/mail.php:781 lib/mail.php:791 +#: lib/mail.php:824 lib/mail.php:834 #, php-format msgid "%1$s has joined your group %2$s on %3$s." msgstr "" #. TRANS: Subject of pending group join request notification e-mail. #. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. -#: lib/mail.php:828 +#: lib/mail.php:871 #, php-format msgid "%1$s wants to join your group %2$s on %3$s." msgstr "" @@ -9186,58 +9506,72 @@ msgstr "" #. TRANS: Main body of pending group join request notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is the URL to the moderation queue page. -#: lib/mail.php:836 +#: lib/mail.php:879 #, php-format msgid "" "%1$s would like to join your group %2$s on %3$s. You may approve or reject " "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. #: lib/mailbox.php:87 msgid "Only the user can read their own mailboxes." msgstr "" -#: lib/mailbox.php:119 +#. TRANS: Message displayed when there are no private messages in the inbox of a user. +#: lib/mailbox.php:120 msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." msgstr "" +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. #: lib/mailboxmenu.php:59 +msgctxt "MENU" msgid "Inbox" msgstr "" -#: lib/mailboxmenu.php:60 lib/personalgroupnav.php:102 -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#: lib/mailboxmenu.php:61 +msgid "Your incoming messages." msgstr "" -#: lib/mailboxmenu.php:64 +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#: lib/mailboxmenu.php:66 +msgctxt "MENU" msgid "Outbox" msgstr "" -#: lib/mailboxmenu.php:65 -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#: lib/mailboxmenu.php:68 +msgid "Your sent messages." msgstr "" -#: lib/mailhandler.php:37 +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. +#: lib/mailhandler.php:38 msgid "Could not parse message." msgstr "" -#: lib/mailhandler.php:42 +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. +#: lib/mailhandler.php:44 msgid "Not a registered user." msgstr "" -#: lib/mailhandler.php:46 +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. +#: lib/mailhandler.php:49 msgid "Sorry, that is not your incoming email address." msgstr "" -#: lib/mailhandler.php:50 +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. +#: lib/mailhandler.php:54 msgid "Sorry, no incoming email allowed." msgstr "" -#: lib/mailhandler.php:229 +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#: lib/mailhandler.php:235 #, php-format -msgid "Unsupported message type: %s" +msgid "Unsupported message type: %s." msgstr "" #. TRANS: Form legend for form to make a user a group admin. @@ -9296,51 +9630,93 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" -#: lib/messageform.php:120 +#. TRANS: Form legend for direct notice. +#: lib/messageform.php:114 msgid "Send a direct notice" msgstr "" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. -#: lib/messageform.php:137 +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. +#: lib/messageform.php:132 msgid "Select recipient:" msgstr "" #. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. -#: lib/messageform.php:150 +#: lib/messageform.php:145 msgid "No mutual subscribers." msgstr "" -#: lib/messageform.php:153 +#. TRANS: Dropdown label in direct notice form. +#: lib/messageform.php:149 msgid "To" msgstr "" -#: lib/messageform.php:183 +#. TRANS: Button text for sending a direct notice. +#: lib/messageform.php:179 msgctxt "Send button for sending notice" msgid "Send" msgstr "" -#: lib/messagelist.php:77 lib/personalgroupnav.php:101 +#. TRANS: Header in message list. +#: lib/messagelist.php:77 msgid "Messages" msgstr "" -#: lib/messagelistitem.php:123 lib/noticelistitem.php:432 +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. +#: lib/messagelistitem.php:123 lib/noticelistitem.php:429 msgid "from" msgstr "" -#: lib/microappplugin.php:340 -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#: lib/messagelistitem.php:144 lib/noticelistitem.php:424 +msgctxt "SOURCE" +msgid "web" msgstr "" -#: lib/microappplugin.php:377 +#. TRANS: A possible notice source (XMPP). +#: lib/messagelistitem.php:146 +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#: lib/messagelistitem.php:148 +msgctxt "SOURCE" +msgid "mail" +msgstr "" + +#. TRANS: A possible notice source (OpenMicroBlogging). +#: lib/messagelistitem.php:150 +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +#: lib/messagelistitem.php:152 +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +#: lib/microappplugin.php:336 +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. +#: lib/microappplugin.php:374 msgid "Bookmark not posted to this group." msgstr "" -#: lib/microappplugin.php:390 +#. TRANS: Client exception. +#: lib/microappplugin.php:388 msgid "Object not posted to this user." msgstr "" -#: lib/microappplugin.php:394 -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +#: lib/microappplugin.php:392 +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -9357,124 +9733,147 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Form legend for notice form. -#: lib/noticeform.php:157 +#: lib/noticeform.php:194 msgid "Send a notice" msgstr "" #. TRANS: Title for notice label. %s is the user's nickname. -#: lib/noticeform.php:171 +#: lib/noticeform.php:208 #, php-format msgid "What's up, %s?" msgstr "" #. TRANS: Input label in notice form for adding an attachment. -#: lib/noticeform.php:191 +#: lib/noticeform.php:228 msgid "Attach" msgstr "" #. TRANS: Title for input field to attach a file to a notice. -#: lib/noticeform.php:196 +#: lib/noticeform.php:233 msgid "Attach a file." msgstr "" #. TRANS: Field label to add location to a notice. -#: lib/noticeform.php:225 +#: lib/noticeform.php:271 msgid "Share my location" msgstr "" #. TRANS: Text to not share location for a notice in notice form. -#: lib/noticeform.php:230 +#: lib/noticeform.php:276 msgid "Do not share my location" msgstr "" #. TRANS: Timeout error text for location retrieval in notice form. -#: lib/noticeform.php:232 +#: lib/noticeform.php:278 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelistitem.php:362 +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#: lib/noticelist.php:85 lib/threadednoticelist.php:65 +msgctxt "HEADER" +msgid "Notices" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of north. +#: lib/noticelistitem.php:352 msgid "N" msgstr "" -#. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelistitem.php:364 +#. TRANS: Used in coordinates as abbreviation of south. +#: lib/noticelistitem.php:354 msgid "S" msgstr "" -#. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelistitem.php:366 +#. TRANS: Used in coordinates as abbreviation of east. +#: lib/noticelistitem.php:356 msgid "E" msgstr "" -#. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelistitem.php:368 +#. TRANS: Used in coordinates as abbreviation of west. +#: lib/noticelistitem.php:358 msgid "W" msgstr "" -#: lib/noticelistitem.php:370 +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, +#: lib/noticelistitem.php:365 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelistitem.php:379 +#. TRANS: Followed by geo location. +#: lib/noticelistitem.php:375 msgid "at" msgstr "" -#: lib/noticelistitem.php:428 -msgid "web" -msgstr "" - -#: lib/noticelistitem.php:494 +#. TRANS: Addition in notice list item if notice is part of a conversation. +#: lib/noticelistitem.php:490 msgid "in context" msgstr "" -#: lib/noticelistitem.php:529 +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. +#: lib/noticelistitem.php:525 msgid "Repeated by" msgstr "" -#: lib/noticelistitem.php:556 +#. TRANS: Link title in notice list item to reply to a notice. +#: lib/noticelistitem.php:552 msgid "Reply to this notice" msgstr "" -#: lib/noticelistitem.php:557 +#. TRANS: Link text in notice list item to reply to a notice. +#: lib/noticelistitem.php:554 msgid "Reply" msgstr "" -#: lib/noticelistitem.php:583 +#. TRANS: Link title in notice list item to delete a notice. +#: lib/noticelistitem.php:580 msgid "Delete this notice" msgstr "" -#: lib/noticelistitem.php:601 -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#: lib/noticelistitem.php:603 +msgid "Notice repeated." msgstr "" -#: lib/noticeplaceholderform.php:54 +#. TRANS: Field label for notice text. +#: lib/noticeplaceholderform.php:55 msgid "Update your status..." msgstr "" -#: lib/nudgeform.php:116 +#. TRANS: Form legend of form to nudge/ping another user. +#: lib/nudgeform.php:111 msgid "Nudge this user" msgstr "" -#: lib/nudgeform.php:128 +#. TRANS: Button text to nudge/ping another user. +#: lib/nudgeform.php:124 +msgctxt "BUTTON" msgid "Nudge" msgstr "" +#. TRANS: Button title to nudge/ping another user. #: lib/nudgeform.php:128 -msgid "Send a nudge to this user" +msgid "Send a nudge to this user." msgstr "" -#: lib/oauthstore.php:294 +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. +#: lib/oauthstore.php:291 msgid "Error inserting new profile." msgstr "" -#: lib/oauthstore.php:302 +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. +#: lib/oauthstore.php:300 msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. #: lib/oauthstore.php:322 msgid "Error inserting remote profile." msgstr "" @@ -9484,22 +9883,53 @@ msgstr "" msgid "Duplicate notice." msgstr "" -#: lib/oauthstore.php:507 -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#: lib/oauthstore.php:509 +msgid "Could not insert new subscription." msgstr "" -#: lib/personalgroupnav.php:80 +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#: lib/personalgroupnav.php:82 lib/settingsnav.php:87 lib/subgroupnav.php:77 +msgctxt "MENU" +msgid "Profile" +msgstr "" + +#. TRANS: Menu item title in personal group navigation menu. +#: lib/personalgroupnav.php:84 msgid "Your profile" msgstr "" -#: lib/personalgroupnav.php:85 +#. TRANS: Menu item in personal group navigation menu. +#: lib/personalgroupnav.php:90 +msgctxt "MENU" msgid "Replies" msgstr "" -#: lib/personalgroupnav.php:90 +#. TRANS: Menu item in personal group navigation menu. +#: lib/personalgroupnav.php:98 +msgctxt "MENU" msgid "Favorites" msgstr "" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#: lib/personalgroupnav.php:104 +msgctxt "FIXME" +msgid "User" +msgstr "" + +#. TRANS: Menu item in personal group navigation menu. +#: lib/personalgroupnav.php:115 +msgctxt "MENU" +msgid "Messages" +msgstr "" + +#. TRANS: Menu item title in personal group navigation menu. +#: lib/personalgroupnav.php:117 +msgid "Your incoming messages" +msgstr "" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #: lib/personaltagcloudsection.php:56 #, php-format @@ -9528,41 +9958,52 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" -#: lib/primarynav.php:57 lib/settingsnav.php:78 +#. TRANS: Menu item in primary navigation panel. +#: lib/primarynav.php:58 +msgctxt "MENU" msgid "Settings" msgstr "" -#: lib/primarynav.php:58 -msgid "Change your personal settings" +#. TRANS: Menu item title in primary navigation panel. +#: lib/primarynav.php:60 +msgid "Change your personal settings." msgstr "" -#: lib/primarynav.php:64 -msgid "Site configuration" +#. TRANS: Menu item title in primary navigation panel. +#: lib/primarynav.php:68 +msgid "Site configuration." msgstr "" -#: lib/primarynav.php:69 +#. TRANS: Menu item in primary navigation panel. +#: lib/primarynav.php:74 +msgctxt "MENU" msgid "Logout" msgstr "" -#: lib/primarynav.php:70 -msgid "Logout from the site" -msgstr "" - +#. TRANS: Menu item title in primary navigation panel. #: lib/primarynav.php:76 -msgid "Login to the site" +msgid "Logout from the site." msgstr "" -#: lib/primarynav.php:83 +#. TRANS: Menu item title in primary navigation panel. +#: lib/primarynav.php:84 +msgid "Login to the site." +msgstr "" + +#. TRANS: Menu item in primary navigation panel. +#: lib/primarynav.php:92 +msgctxt "MENU" msgid "Search" msgstr "" -#: lib/primarynav.php:84 -msgid "Search the site" +#. TRANS: Menu item title in primary navigation panel. +#: lib/primarynav.php:94 +msgid "Search the site." msgstr "" #. TRANS: H2 text for user subscription statistics. #. TRANS: Label for user statistics. -#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:86 +#: lib/profileaction.php:127 lib/profileaction.php:225 msgid "Subscriptions" msgstr "" @@ -9573,7 +10014,7 @@ msgstr "" #. TRANS: H2 text for user subscriber statistics. #. TRANS: Label for user statistics. -#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:94 +#: lib/profileaction.php:164 lib/profileaction.php:232 msgid "Subscribers" msgstr "" @@ -9595,7 +10036,6 @@ msgstr "" #. TRANS: Label for user statistics. #. TRANS: H2 text for user group membership statistics. #: lib/profileaction.php:239 lib/profileaction.php:290 -#: lib/publicgroupnav.php:67 lib/searchgroupnav.php:80 lib/subgroupnav.php:102 msgid "Groups" msgstr "" @@ -9615,53 +10055,75 @@ msgstr "" msgid "Unimplemented method." msgstr "" -#: lib/publicgroupnav.php:68 +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#: lib/publicgroupnav.php:68 lib/searchgroupnav.php:82 lib/subgroupnav.php:124 +msgctxt "MENU" +msgid "Groups" +msgstr "" + +#. TRANS: Menu item title in search group navigation panel. +#: lib/publicgroupnav.php:70 msgid "User groups" msgstr "" -#: lib/publicgroupnav.php:70 lib/publicgroupnav.php:71 +#. TRANS: Menu item in search group navigation panel. +#: lib/publicgroupnav.php:73 +msgctxt "MENU" msgid "Recent tags" msgstr "" -#: lib/publicgroupnav.php:74 +#. TRANS: Menu item title in search group navigation panel. +#: lib/publicgroupnav.php:75 +msgid "Recent tags" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#: lib/publicgroupnav.php:79 +msgctxt "MENU" msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:78 +#. TRANS: Menu item in search group navigation panel. +#: lib/publicgroupnav.php:85 +msgctxt "MENU" msgid "Popular" msgstr "" -#: lib/redirectingaction.php:95 +#. TRANS: Client error displayed when return-to was defined without a target. +#: lib/redirectingaction.php:93 msgid "No return-to arguments." msgstr "" -#: lib/repeatform.php:107 +#. TRANS: For legend for notice repeat form. +#: lib/repeatform.php:102 msgid "Repeat this notice?" msgstr "" -#: lib/repeatform.php:132 -msgid "Yes" +#. TRANS: Button title to repeat a notice on notice repeat form. +#: lib/repeatform.php:128 +msgid "Repeat this notice." msgstr "" -#: lib/repeatform.php:132 -msgid "Repeat this notice" -msgstr "" - -#: lib/revokeroleform.php:91 +#. TRANS: Description of role revoke form. %s is the role to be revoked. +#: lib/revokeroleform.php:88 #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "" #. TRANS: Client error on action trying to visit a non-existing page. -#: lib/router.php:1008 +#: lib/router.php:1016 msgid "Page not found." msgstr "" -#: lib/sandboxform.php:67 +#. TRANS: Title of form to sandbox a user. +#: lib/sandboxform.php:65 +msgctxt "TITLE" msgid "Sandbox" msgstr "" -#: lib/sandboxform.php:78 +#. TRANS: Description of form to sandbox a user. +#: lib/sandboxform.php:76 msgid "Sandbox this user" msgstr "" @@ -9682,167 +10144,306 @@ msgctxt "BUTTON" msgid "Search" msgstr "" -#: lib/searchgroupnav.php:76 +#. TRANS: Standard search suggestions shown when a search does not give any results. +#: lib/searchaction.php:143 +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#: lib/searchaction.php:152 +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#: lib/searchgroupnav.php:74 +msgctxt "MENU" msgid "People" msgstr "" -#: lib/searchgroupnav.php:77 +#. TRANS: Menu item title in search group navigation panel. +#: lib/searchgroupnav.php:76 msgid "Find people on this site" msgstr "" -#: lib/searchgroupnav.php:79 +#. TRANS: Menu item in search group navigation panel. +#: lib/searchgroupnav.php:78 +msgctxt "MENU" +msgid "Notices" +msgstr "" + +#. TRANS: Menu item title in search group navigation panel. +#: lib/searchgroupnav.php:80 msgid "Find content of notices" msgstr "" -#: lib/searchgroupnav.php:81 +#. TRANS: Menu item title in search group navigation panel. +#: lib/searchgroupnav.php:84 msgid "Find groups on this site" msgstr "" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/secondarynav.php:57 +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#: lib/secondarynav.php:56 +msgctxt "MENU" msgid "Help" msgstr "" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/secondarynav.php:60 +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#: lib/secondarynav.php:59 +msgctxt "MENU" msgid "About" msgstr "" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/secondarynav.php:63 +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#: lib/secondarynav.php:62 +msgctxt "MENU" msgid "FAQ" msgstr "" -#. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/secondarynav.php:68 +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#: lib/secondarynav.php:67 +msgctxt "MENU" msgid "TOS" msgstr "" -#. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/secondarynav.php:72 +#. TRANS: Secondary navigation menu item leading to privacy policy. +#: lib/secondarynav.php:71 +msgctxt "MENU" msgid "Privacy" msgstr "" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. -#: lib/secondarynav.php:75 +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#: lib/secondarynav.php:74 +msgctxt "MENU" msgid "Source" msgstr "" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: lib/secondarynav.php:78 +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#: lib/secondarynav.php:77 +msgctxt "MENU" msgid "Version" msgstr "" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... -#: lib/secondarynav.php:82 +#: lib/secondarynav.php:81 +msgctxt "MENU" msgid "Contact" msgstr "" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. -#: lib/secondarynav.php:85 +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#: lib/secondarynav.php:84 +msgctxt "MENU" msgid "Badge" msgstr "" -#: lib/section.php:89 +#. TRANS: Default title for section/sidebar widget. +#: lib/section.php:88 msgid "Untitled section" msgstr "" -#: lib/section.php:106 +#. TRANS: Default "More..." title for section/sidebar widget. +#: lib/section.php:107 msgid "More..." msgstr "" -#: lib/settingsnav.php:84 +#. TRANS: Header in settings navigation panel. +#: lib/settingsnav.php:81 +msgctxt "HEADER" +msgid "Settings" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +#: lib/settingsnav.php:89 msgid "Change your profile settings" msgstr "" -#: lib/settingsnav.php:89 +#. TRANS: Menu item in settings navigation panel. +#: lib/settingsnav.php:94 +msgctxt "MENU" +msgid "Avatar" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +#: lib/settingsnav.php:96 msgid "Upload an avatar" msgstr "" -#: lib/settingsnav.php:94 +#. TRANS: Menu item in settings navigation panel. +#: lib/settingsnav.php:101 +msgctxt "MENU" +msgid "Password" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +#: lib/settingsnav.php:103 msgid "Change your password" msgstr "" -#: lib/settingsnav.php:99 +#. TRANS: Menu item in settings navigation panel. +#: lib/settingsnav.php:108 +msgctxt "MENU" +msgid "Email" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +#: lib/settingsnav.php:110 msgid "Change email handling" msgstr "" -#: lib/settingsnav.php:104 +#. TRANS: Menu item title in settings navigation panel. +#: lib/settingsnav.php:117 msgid "Design your profile" msgstr "" -#: lib/settingsnav.php:108 +#. TRANS: Menu item in settings navigation panel. +#: lib/settingsnav.php:122 +msgctxt "MENU" msgid "URL" msgstr "" -#: lib/settingsnav.php:109 +#. TRANS: Menu item title in settings navigation panel. +#: lib/settingsnav.php:124 msgid "URL shorteners" msgstr "" -#: lib/settingsnav.php:117 +#. TRANS: Menu item in settings navigation panel. +#: lib/settingsnav.php:132 +msgctxt "MENU" +msgid "IM" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +#: lib/settingsnav.php:134 msgid "Updates by instant messenger (IM)" msgstr "" -#: lib/settingsnav.php:124 +#. TRANS: Menu item in settings navigation panel. +#: lib/settingsnav.php:141 +msgctxt "MENU" +msgid "SMS" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +#: lib/settingsnav.php:143 msgid "Updates by SMS" msgstr "" -#: lib/settingsnav.php:129 +#. TRANS: Menu item in settings navigation panel. +#: lib/settingsnav.php:149 +msgctxt "MENU" msgid "Connections" msgstr "" -#: lib/settingsnav.php:130 +#. TRANS: Menu item title in settings navigation panel. +#: lib/settingsnav.php:151 msgid "Authorized connected applications" msgstr "" -#: lib/silenceform.php:67 +#. TRANS: Title of form to silence a user. +#: lib/silenceform.php:65 +msgctxt "TITLE" msgid "Silence" msgstr "" -#: lib/silenceform.php:78 +#. TRANS: Description of form to silence a user. +#: lib/silenceform.php:76 msgid "Silence this user" msgstr "" -#: lib/subgroupnav.php:87 -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#: lib/subgroupnav.php:85 +msgctxt "MENU" +msgid "Subscriptions" msgstr "" -#: lib/subgroupnav.php:95 +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#: lib/subgroupnav.php:88 #, php-format -msgid "People subscribed to %s" +msgid "People %s subscribes to." msgstr "" -#: lib/subgroupnav.php:103 -#, php-format -msgid "Groups %s is a member of" +#. TRANS: Menu item in local navigation menu. +#: lib/subgroupnav.php:96 +msgctxt "MENU" +msgid "Subscribers" msgstr "" -#: lib/subgroupnav.php:109 +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#: lib/subgroupnav.php:99 +#, php-format +msgid "People subscribed to %s." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. +#: lib/subgroupnav.php:112 +#, php-format +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#: lib/subgroupnav.php:114 +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#: lib/subgroupnav.php:127 +#, php-format +msgid "Groups %s is a member of." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#: lib/subgroupnav.php:134 +msgctxt "MENU" msgid "Invite" msgstr "" -#: lib/subgroupnav.php:110 +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#: lib/subgroupnav.php:137 #, php-format -msgid "Invite friends and colleagues to join you on %s" +msgid "Invite friends and colleagues to join you on %s." msgstr "" -#: lib/subscribeform.php:115 lib/subscribeform.php:139 +#. TRANS: Form of form to subscribe to a user. +#: lib/subscribeform.php:107 msgid "Subscribe to this user" msgstr "" +#. TRANS: Title of personal tag cloud section. #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. #: lib/subscriberspeopletagcloudsection.php:48 #: lib/subscriptionspeopletagcloudsection.php:48 msgid "People Tagcloud as tagged" msgstr "" -#: lib/tagcloudsection.php:56 +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#: lib/tagcloudsection.php:56 lib/tagcloudsection.php:72 +msgctxt "NOTAGS" msgid "None" msgstr "" @@ -9851,25 +10452,32 @@ msgstr "" msgid "Invalid theme name." msgstr "" -#: lib/themeuploader.php:50 +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. +#: lib/themeuploader.php:51 msgid "This server cannot handle theme uploads without ZIP support." msgstr "" -#: lib/themeuploader.php:58 lib/themeuploader.php:61 +#. TRANS: Server exception thrown when uploading a theme fails. +#: lib/themeuploader.php:60 lib/themeuploader.php:64 msgid "The theme file is missing or the upload failed." msgstr "" -#: lib/themeuploader.php:91 lib/themeuploader.php:102 -#: lib/themeuploader.php:279 lib/themeuploader.php:283 -#: lib/themeuploader.php:291 lib/themeuploader.php:298 +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. +#: lib/themeuploader.php:95 lib/themeuploader.php:107 +#: lib/themeuploader.php:293 lib/themeuploader.php:298 +#: lib/themeuploader.php:307 lib/themeuploader.php:315 msgid "Failed saving theme." msgstr "" -#: lib/themeuploader.php:147 -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#: lib/themeuploader.php:153 +msgid "Invalid theme: Bad directory structure." msgstr "" -#: lib/themeuploader.php:166 +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. +#: lib/themeuploader.php:174 #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -9877,35 +10485,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: lib/themeuploader.php:179 -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#: lib/themeuploader.php:188 +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" -#: lib/themeuploader.php:219 +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. +#: lib/themeuploader.php:229 msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" -#: lib/themeuploader.php:225 +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. +#: lib/themeuploader.php:236 msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" -#: lib/themeuploader.php:242 +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#: lib/themeuploader.php:255 #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" -#: lib/themeuploader.php:260 +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. +#: lib/themeuploader.php:273 msgid "Error opening theme archive." msgstr "" -#. TRANS: Header for Notices section. -#: lib/threadednoticelist.php:65 -msgctxt "HEADER" -msgid "Notices" -msgstr "" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #: lib/threadednoticelist.php:292 @@ -9940,23 +10548,25 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "" -#: lib/threadednoticelist.php:427 +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. +#: lib/threadednoticelist.php:426 #, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "" msgstr[1] "" #. TRANS: List message for notice repeated by logged in user. -#: lib/threadednoticelist.php:481 +#: lib/threadednoticelist.php:480 msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "" -#: lib/threadednoticelist.php:486 +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. +#: lib/threadednoticelist.php:484 #, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "" @@ -9967,6 +10577,31 @@ msgstr[1] "" msgid "Top posters" msgstr "" +#. TRANS: Option in drop-down of potential addressees. +#: lib/toselector.php:87 +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#: lib/toselector.php:93 +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#: lib/toselector.php:115 +msgctxt "LABEL" +msgid "To:" +msgstr "" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#: lib/toselector.php:157 +#, php-format +msgid "Unknown to value: \"%s\"." +msgstr "" + #. TRANS: Title for the form to unblock a user. #: lib/unblockform.php:67 msgctxt "TITLE" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 160afc31f2..fee437fd80 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -13,20 +13,54 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:11+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:18+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Okänd" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Okänd funktion" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Åtkomst" @@ -79,7 +113,9 @@ msgstr "Spara inställningar för åtkomst" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -91,6 +127,7 @@ msgstr "Spara" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Ingen sådan sida" @@ -109,6 +146,7 @@ msgstr "Ingen sådan sida" #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -133,8 +171,11 @@ msgstr "Ingen sådan sida" #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Ingen sådan användare." @@ -147,7 +188,15 @@ msgstr "%1$s och vänner, sida %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s och vänner" @@ -217,28 +266,14 @@ msgstr "Du och vänner" msgid "Updates from %1$s and friends on %2$s!" msgstr "Uppdateringar från %1$s och vänner på %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API-metod hittades inte." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -272,6 +307,7 @@ msgstr "Kunde inte uppdatera användare." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Användaren har ingen profil." @@ -311,6 +347,8 @@ msgstr "Kunde inte spara dina utseendeinställningar." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Kunde inte uppdatera din profils utseende." @@ -685,9 +723,12 @@ msgstr "Begäran-token är redan auktoriserad." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Det var ett problem med din sessions-token. Var vänlig försök igen." @@ -841,16 +882,6 @@ msgstr "Du kan inte ta bort en annan användares status." msgid "No such notice." msgstr "Ingen sådan notis." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Kan inte upprepa din egen notis." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Redan upprepat denna notis." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -894,8 +925,11 @@ msgstr "Ta bort notis" msgid "Client must provide a 'status' parameter with a value." msgstr "Klient måste tillhandahålla en 'status'-parameter med ett värde." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -909,6 +943,8 @@ msgstr "API-metod hittades inte." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -978,6 +1014,8 @@ msgstr "%1$s uppdateringar med svar på uppdatering från %2$s / %3$s." msgid "Repeats of %s" msgstr "Upprepningar av %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%1$s meddelanden som %2$s / %3$s har upprepat." @@ -992,6 +1030,8 @@ msgstr "Notiser taggade med %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Uppdateringar taggade med %1$s på %2$s!" @@ -1106,11 +1146,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Saknar profil." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1118,10 +1160,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "En lista av användarna i denna grupp." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1146,6 +1190,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "En lista av användarna i denna grupp." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Kunde inte ansluta användare %1$s till grupp %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "%1$ss status den %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Prenumeration godkänd" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Bekräftelse för snabbmeddelanden avbruten." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1187,7 +1259,7 @@ msgstr "Lägg till i favoriter" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "%s gruppmedlemmar" #. TRANS: Subtitle for group membership feed. @@ -1201,8 +1273,7 @@ msgstr "Grupper %s är en medlem i" msgid "Cannot add someone else's membership." msgstr "Kunde inte infoga ny prenumeration." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Hitta innehåll i notiser" @@ -1317,6 +1388,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Användare utan matchande profil." @@ -1343,6 +1415,7 @@ msgstr "Förhandsgranska" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Ta bort" @@ -1458,6 +1531,7 @@ msgstr "Blockera inte denna användare" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Ja" @@ -1516,6 +1590,32 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s lämnade grupp %2$s" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Inte inloggad." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Ingen profil-ID i begäran." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Ingen profil med det ID:t." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Prenumeration avslutad" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Ingen bekräftelsekod." @@ -1653,6 +1753,7 @@ msgstr "Applikation hittades inte." msgid "You are not the owner of this application." msgstr "Du är inte ägaren av denna applikation." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Det var ett problem med din sessions-token." @@ -1727,24 +1828,6 @@ msgstr "Ta inte bort denna grupp" msgid "Delete this group." msgstr "Ta bort denna grupp" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Inte inloggad." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1939,16 +2022,19 @@ 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. #, 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. #, 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. #, fuzzy msgid "Save design." msgstr "Spara utseende" @@ -2282,6 +2368,7 @@ msgstr "Ta bort märkning som favorit" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Populära notiser" @@ -2323,6 +2410,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "%ss favoritnotiser" @@ -2335,6 +2424,7 @@ msgstr "Uppdateringar markerade som favorit av %1$s på %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Profilerade användare" @@ -2396,6 +2486,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Fjärrtjänsten använder en okänd version av OMB-protokollet." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Fel vid uppdatering av fjärrprofil." @@ -2433,14 +2524,6 @@ msgstr "Användaren har redan denna roll." msgid "No profile specified." msgstr "Ingen profil angiven." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Ingen profil med det ID:t." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3071,6 +3154,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privat" @@ -3310,6 +3394,9 @@ msgid "Ajax Error" msgstr "AJAX-fel" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Ny notis" @@ -3616,7 +3703,6 @@ msgid "Password saved." msgstr "Lösenord sparat." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Sökvägar" @@ -3822,6 +3908,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Aldrig" @@ -3979,17 +4066,22 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "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. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +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: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4002,7 +4094,9 @@ msgid "Location" msgstr "Plats" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Var du håller till, såsom \"Stad, Län, Land\"" #. TRANS: Checkbox label in form for profile settings. @@ -4010,6 +4104,9 @@ msgid "Share my current location when posting notices" msgstr "Dela min nuvarande plats när jag skickar notiser" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Taggar" @@ -4047,6 +4144,27 @@ msgstr "" "Prenumerera automatiskt på den som prenumererar på mig (bäst för icke-" "människa) " +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Prenumerationer" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4079,7 +4197,7 @@ msgstr "Ogiltig tagg: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Kunde inte uppdatera användaren för automatisk prenumeration." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4088,6 +4206,7 @@ msgid "Could not save location prefs." msgstr "Kunde inte spara platsinställningar." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Kunde inte spara taggar." @@ -4119,6 +4238,7 @@ msgid "Public timeline, page %d" msgstr "Publik tidslinje, sida %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Publik tidslinje" @@ -4302,10 +4422,6 @@ msgstr "Återskapande av lösenord begärd" msgid "Password saved" msgstr "Lösenord sparat." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Okänd funktion" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4401,6 +4517,7 @@ msgstr "Registrering inte tillåten." msgid "You cannot register if you do not agree to the license." msgstr "Du kan inte registrera dig om du inte godkänner licensen." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "E-postadressen finns redan." @@ -4441,26 +4558,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "Längre namn, förslagsvis ditt \"verkliga\" namn" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -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: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Beskriv dig själv och dina intressen" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Var du håller till, såsom \"Stad, Län, Land\"" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4581,6 +4679,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "URL till din profil på en annan kompatibel mikrobloggtjänst" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4617,16 +4717,8 @@ msgstr "Bara inloggade användaren kan upprepa notiser." msgid "No notice specified." msgstr "Ingen notis angiven." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Du kan inte upprepa din egna notis." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Du har redan upprepat denna notis." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Upprepad" @@ -4637,6 +4729,8 @@ msgstr "Upprepad!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Svarat till %s" @@ -4751,6 +4845,7 @@ msgid "System error uploading file." msgstr "Systemfel vid uppladdning av fil." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Alla medlemmar" @@ -4791,6 +4886,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Du kan inte flytta användare till sandlådan på denna webbplats." @@ -4989,6 +5085,8 @@ msgstr "Medlemmar" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Ingen)" @@ -5070,6 +5168,11 @@ msgstr "Meddelande till %1$s på %2$s" msgid "Message from %1$s on %2$s" msgstr "Meddelande från %1$s på %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "IM är inte tillgänglig." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Notis borttagen." @@ -5077,20 +5180,20 @@ msgstr "Notis borttagen." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %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, %3$d is the page number. -#, php-format -msgid "%1$s tagged %2$s, page %3$d" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%1$s taggade %2$s, sida %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, sida %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Notiser taggade med %1$s, sida %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5177,6 +5280,7 @@ msgid "Repeat of %s" msgstr "Upprepning av %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Du kan inte tysta ned användare på denna webbplats." @@ -5476,51 +5580,72 @@ msgstr "" msgid "No code entered." msgstr "Ingen kod ifylld" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Ögonblicksbilder" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Hantera konfiguration för ögonblicksbild" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Ogiltigt körvärde för ögonblicksbild." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "Frekvens för ögonblicksbilder måste vara ett nummer." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "Ogiltig rapport-URL för ögonblicksbild" +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Ögonblicksbilder" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Slumpmässigt vid webbförfrågningar" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "I ett schemalagt jobb" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Ögonblicksbild av data" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "När statistikdata skall skickas till status.net-servrar" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frekvens" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Ögonblicksbild kommer skickas var N:te webbträff" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL för rapport" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Ögonblicksbild kommer skickat till denna URL" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Spara" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Spara inställningar för ögonblicksbild" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5532,6 +5657,27 @@ msgstr "Du är inte prenumerat hos den profilen." msgid "Could not save subscription." msgstr "Kunde inte spara prenumeration." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s gruppmedlemmar" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s gruppmedlemmar, sida %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "En lista av användarna i denna grupp." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "Du kan inte prenumerera på en 0MB 0.1-fjärrprofil med denna åtgärd." @@ -5654,31 +5800,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Notiser taggade med %1$s, sida %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Flöde av notiser för tagg %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Flöde av notiser för tagg %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Flöde av notiser för tagg %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Inget ID-argument." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Tagg %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Användarprofil" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Tagga användare" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5687,16 +5845,25 @@ msgstr "" "Taggar för denna användare (bokstäver, nummer, -, ., och _), separerade med " "kommatecken eller mellanslag" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Du kan bara tagga personer du prenumererar på eller som prenumererar på dig." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Taggar" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Använd detta formulär för att lägga till taggar till dina prenumeranter " "eller prenumerationer." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Ingen sådan tagg." @@ -5704,25 +5871,31 @@ msgstr "Ingen sådan tagg." msgid "You haven't blocked that user." msgstr "Du har inte blockerat denna användared." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Användare är inte flyttad till sandlådan." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Användare är inte nedtystad." -msgid "No profile ID in request." -msgstr "Ingen profil-ID i begäran." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Prenumeration avslutad" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "Licensen för lyssnarströmmen '%1$s' är inte förenlig med webbplatslicensen '%" "2$s'." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Inställningar för snabbmeddelanden" @@ -5737,10 +5910,12 @@ msgstr "Hantera diverse andra alternativ." msgid " (free service)" msgstr " (fri tjänst)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Ingen" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5752,15 +5927,19 @@ msgstr "Förkorta URL:er med" msgid "Automatic shortening service to use." msgstr "Automatiska förkortningstjänster att använda." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5770,17 +5949,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Namnet på URL-förkortningstjänsen är för långt (max 50 tecken)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Ogiltigt notisinnehåll." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Ogiltigt notisinnehåll." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Användare" @@ -5804,6 +5987,9 @@ msgstr "Ogiltig välkomsttext. Maximal längd är 255 tecken." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Ogiltig standardprenumeration: '%1$s' är inte användare." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profil" @@ -5859,7 +6045,7 @@ msgstr "Spara webbplatsinställningar" msgid "Authorize subscription" msgstr "Godkänn prenumeration" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5872,18 +6058,21 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" msgstr "Acceptera" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Prenumerera på denna användare" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5902,9 +6091,10 @@ msgstr "Ingen begäran om godkännande!" msgid "Subscription authorized" msgstr "Prenumeration godkänd" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "Prenumerationen har godkänts, men ingen anrops-URL har gått igenom. Kolla " @@ -5915,9 +6105,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Prenumeration avvisad" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "Prenumerationen har blivit avvisad, men ingen URL har gått igenom. Kolla med " @@ -5948,16 +6139,6 @@ msgstr "Lyssnar-URI '%s' är en lokal användare." msgid "Profile URL \"%s\" is for a local user." msgstr "Profil-URL ‘%s’ är för en lokal användare." -#. 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. -#, 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. #, fuzzy, php-format @@ -6063,7 +6244,6 @@ msgid "Contributors" msgstr "Medarbetare" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licens" @@ -6102,7 +6282,6 @@ msgstr "" "detta program. Om inte, se %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Insticksmoduler" @@ -6188,18 +6367,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "Ogiltigt filnamn." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Gruppanslutning misslyckades." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Inte med i grupp." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Grupputträde misslyckades." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6212,6 +6379,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "Fel vid sparande av användare; ogiltig." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Gruppanslutning misslyckades." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Inte med i grupp." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Grupputträde misslyckades." + #. TRANS: Activity title. msgid "Join" msgstr "Gå med" @@ -6286,6 +6465,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Du är utestängd från att posta notiser på denna webbplats." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Kan inte upprepa din egen notis." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Du kan inte upprepa din egna notis." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Kan inte upprepa din egen notis." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Kan inte upprepa din egen notis." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Du har redan upprepat denna notis." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Användare har ingen sista notis." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6312,16 +6521,13 @@ msgstr "Kunde inte spara lokal gruppinformation." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6343,6 +6549,7 @@ msgid "Unable to save tag." msgstr "Kunde inte spara tagg." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Du har blivit utestängd från att prenumerera." @@ -6370,7 +6577,9 @@ msgstr "Kunde inte spara prenumeration." msgid "Could not delete subscription." msgstr "Kunde inte spara prenumeration." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Följ" @@ -6438,18 +6647,24 @@ msgid "User deletion in progress..." msgstr "Borttagning av användare pågår..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Redigera profilinställningar" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Redigera" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Skicka ett direktmeddelande till denna användare" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Meddelande" @@ -6471,10 +6686,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Prenumerera" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6500,7 +6711,9 @@ msgstr "Svara" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6620,8 +6833,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Hitta innehåll i notiser" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "Ingen sådan användare." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6668,76 +6882,125 @@ msgstr "saveSetting() är inte implementerat." msgid "Unable to delete design setting." msgstr "Kunde inte ta bort utseendeinställning." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Hemsida" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Hemsida" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Administratör" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Grundläggande webbplatskonfiguration" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Webbplats" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Konfiguration av utseende" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Utseende" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Konfiguration av användare" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "User" msgstr "Användare" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Konfiguration av åtkomst" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Access" +msgstr "Åtkomst" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Konfiguration av sökvägar" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Paths" +msgstr "Sökvägar" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Konfiguration av sessioner" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "Sessions" msgstr "Sessioner" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Redigera webbplatsnotis" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Webbplatsnotis" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Konfiguration av ögonblicksbilder" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Snapshots" +msgstr "Ögonblicksbilder" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Ange webbplatslicens" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licens" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Konfiguration av sökvägar" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Insticksmoduler" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6747,6 +7010,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6783,9 +7047,11 @@ msgstr "" msgid "Could not issue access token." msgstr "Kunde inte infoga meddelande." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Databasfel vid infogning av OAuth-applikationsanvändare." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "Databasfel vid infogning av OAuth-applikationsanvändare." @@ -6880,6 +7146,17 @@ msgstr "" msgid "Cancel" msgstr "Avbryt" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Spara" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Okänd funktion" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -6902,11 +7179,12 @@ msgstr "Godkänd %1$s - \"%2$s\" åtkomst." msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Återkalla" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -6944,6 +7222,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Alla prenumerationer" + #. TRANS: Title for command results. msgid "Command results" msgstr "Resultat av kommando" @@ -6953,6 +7237,7 @@ msgid "AJAX error" msgstr "AJAX-fel" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Kommando komplett" @@ -7073,6 +7358,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7093,10 +7380,6 @@ msgstr "Fel vid sändning av direktmeddelande." msgid "Notice from %s repeated." msgstr "Notis från %s upprepad." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Fel vid upprepning av notis." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7402,13 +7685,19 @@ msgstr "Du kanske vill köra installeraren för att åtgärda detta." msgid "Go to the installer." msgstr "Gå till installeraren." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Databasfel" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Publikt" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Ta bort" @@ -7416,6 +7705,7 @@ msgstr "Ta bort" msgid "Delete this user" msgstr "Ta bort denna användare" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Spara utseende" @@ -7428,23 +7718,14 @@ 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. -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. -msgid "Reset back to default" -msgstr "Återställ till standardvärde" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "Ladda upp fil" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Du kan ladda upp din personliga bakgrundbild. Den maximala filstorleken är " "2MB." @@ -7459,15 +7740,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Av" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "Kunde inte uppdatera dina utseendeinställningar." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Standardvärden för utseende återställda." @@ -7499,47 +7771,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Markera som favorit" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -#, fuzzy -msgid "Not an atom feed." -msgstr "Alla medlemmar" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Flöden" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Alla" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Välj tagg att filtrera" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Tagg" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Välj en tagg för att begränsa lista" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Gå" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Bevilja denna användare \"%s\"-rollen" @@ -7601,9 +7887,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Medlem sedan" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7670,6 +7958,7 @@ msgid "%s blocked users" msgstr "%s blockerade användare" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Administratör" @@ -7770,23 +8059,46 @@ msgid_plural "%dB" msgstr[0] "%dB" msgstr[1] "%dB" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Okänd källa för inkorg %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Gå med" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Lämna" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Logga in" @@ -7847,6 +8159,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s lyssnar nu på dina notiser på %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s lyssnar nu på dina notiser på %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8138,9 +8464,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Bara användaren kan läsa sina egna brevlådor." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8149,32 +8477,48 @@ msgstr "" "engagera andra användare i konversationen. Folk kan skicka meddelanden till " "dig som bara du ser." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Inkorg" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Dina inkommande meddelanden" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Utkorg" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Dina skickade meddelanden" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Kunde inte tolka meddelande." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Inte en registrerad användare." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Tyvärr, det är inte din inkommande e-postadress." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Tyvärr, ingen inkommande e-post tillåts." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Formatet %s för meddelande stödjs inte." #. TRANS: Form legend for form to make a user a group admin. @@ -8227,10 +8571,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "%s är en filtyp som saknar stöd på denna server." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Skicka en direktnotis" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Välj licens" @@ -8240,32 +8587,68 @@ msgstr "Välj licens" msgid "No mutual subscribers." msgstr "Inte prenumerant!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Till" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Skicka" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Meddelande" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "från" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "webb" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "E-post" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Du får inte ta bort denna grupp." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Ta inte bort denna grupp" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8313,68 +8696,95 @@ msgstr "" "Tyvärr, hämtning av din geografiska plats tar längre tid än förväntat, var " "god försök igen senare" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Notiser" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "Ö" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "V" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "på" -msgid "web" -msgstr "webb" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "i sammanhang" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Upprepad av" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Svara på denna notis" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Svara" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Ta bort denna notis" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Notis upprepad" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Knuffa denna användare" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Knuffa" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Skicka en knuff till denna användare" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Fel vid infogning av ny profil." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Fel vid infogning av avatar." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Fel vid infogning av fjärrprofil." @@ -8382,18 +8792,51 @@ msgstr "Fel vid infogning av fjärrprofil." msgid "Duplicate notice." msgstr "Duplicera notis." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Kunde inte infoga ny prenumeration." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Grupprofil" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Svar" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Favoriter" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Användare" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Meddelande" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Dina inkommande meddelanden" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8417,31 +8860,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Inställningar för SMS" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Ändra dina profilinställningar" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Konfiguration av användare" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "Logga ut" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Logga ut från webbplatsen" -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "Logga in på webbplatsen" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "Sök" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Sök webbplats" #. TRANS: H2 text for user subscription statistics. @@ -8488,30 +8945,53 @@ msgstr "Alla grupper" msgid "Unimplemented method." msgstr "Inte implementerad metod." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grupper" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Användargrupper" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Senaste taggar" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Senaste taggar" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Profilerade" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Populärt" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Inga \"return-to\"-argument." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Upprepa denna notis?" -msgid "Yes" -msgstr "Ja" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Upprepa denna notis" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Återkalla rollen \"%s\" från denna användare" @@ -8521,9 +9001,13 @@ msgstr "Återkalla rollen \"%s\" från denna användare" msgid "Page not found." msgstr "API-metod hittades inte." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Flytta till sandlådan" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Flytta denna användare till sandlådan" @@ -8541,128 +9025,273 @@ msgctxt "BUTTON" msgid "Search" msgstr "Sök" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Personer" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Hitta personer på denna webbplats" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Notiser" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Hitta innehåll i notiser" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Hitta grupper på denna webbplats" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "Hjälp" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Om" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "Frågor & svar" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "Användarvillkor" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Sekretess" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Källa" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Version" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Kontakt" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Emblem" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Namnlös sektion" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Mer..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Inställningar för SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Ändra dina profilinställningar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Ladda upp en avatar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Lösenord" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Ändra ditt lösenord" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "E-post" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Ändra e-posthantering" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Designa din profil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "IM" +msgstr "Snabbmeddelande" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Uppdateringar via snabbmeddelande (IM)" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Uppdateringar via SMS" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" msgid "Connections" msgstr "Anslutningar" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Tillåt anslutna applikationer" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Tysta ned" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Tysta ned denna användare" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Prenumerationer" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Personer %s prenumererar på" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Prenumeranter" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Personer som prenumererar på %s" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Grupper %s är en medlem i" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "Bjud in" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Bjud in vänner och kollegor att gå med dig på %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Prenumerera på denna användare" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Taggmoln för person, såsom taggat själv" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Taggmoln för person, såsom taggats" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Ingen" @@ -8671,18 +9300,26 @@ msgstr "Ingen" msgid "Invalid theme name." msgstr "Ogiltigt filnamn." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "Denna server kan inte hantera temauppladdningar utan ZIP-stöd." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Temafilen saknas eller uppladdningen misslyckades." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Kunde inte spara tema." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Ogiltigt tema: dålig katalogstruktur." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, fuzzy, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8692,9 +9329,12 @@ msgstr[0] "" msgstr[1] "" "Uppladdat tema är för stort, måste vara mindre än %d byte okomprimerat." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Ogiltigt temaarkiv: filen css/display.css saknas" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -8702,22 +9342,20 @@ msgstr "" "Tema innehåller ogiltigt fil- eller mappnamn. Använd bara ASCII-bokstäver, " "siffror, understreck och minustecken." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "Tema innehåller osäkra filtilläggsnamn; kan vara osäkert." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Tema innehåller fil av typen '.%s', vilket inte är tillåtet." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Fel vid öppning temaarkiv." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Notiser" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -8748,8 +9386,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Markera denna notis som favorit" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Avmarkera denna notis som favorit" @@ -8761,8 +9400,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Du har redan upprepat denna notis." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Redan upprepat denna notis." @@ -8772,6 +9412,28 @@ msgstr[1] "Redan upprepat denna notis." msgid "Top posters" msgstr "Toppostare" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Till" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Okänt språk \"%s\"." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8889,5 +9551,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Meddelande för långt - maximum är %1$d tecken, du skickade %2$d." +#~ msgid "Couldn't update your design." +#~ msgstr "Kunde inte uppdatera dina utseendeinställningar." diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 27e429ef8f..2ada5cefec 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,20 +10,54 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:12+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:20+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "తెలియని చర్య" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "తెలియని చర్య" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "అందుబాటు" @@ -75,7 +109,9 @@ msgstr "అందుబాటు అమరికలను భద్రపరచ #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -87,6 +123,7 @@ msgstr "భద్రపరచు" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "అటువంటి పేజీ లేదు." @@ -105,6 +142,7 @@ msgstr "అటువంటి పేజీ లేదు." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -129,8 +167,11 @@ msgstr "అటువంటి పేజీ లేదు." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "అటువంటి వాడుకరి లేరు." @@ -143,7 +184,15 @@ msgstr "%1$s మరియు మిత్రులు, పేజీ %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s మరియు మిత్రులు" @@ -210,28 +259,14 @@ msgstr "మీరు మరియు మీ స్నేహితులు" msgid "Updates from %1$s and friends on %2$s!" msgstr "%2$sలో %1$s మరియు స్నేహితుల నుండి తాజాకరణలు!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API పద్ధతి లేదు." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -265,6 +300,7 @@ msgstr "వాడుకరిని తాజాకరించలేకున #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "వాడుకరికి ప్రొఫైలు లేదు." @@ -301,6 +337,8 @@ msgstr "మీ రూపురేఖల అమరికలని భద్రప #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #, fuzzy msgid "Could not update your design." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." @@ -673,9 +711,12 @@ msgstr "మీకు అధీకరణ లేదు." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -822,16 +863,6 @@ msgstr "ఇతర వాడుకరుల స్థితిని మీరు msgid "No such notice." msgstr "అటువంటి సందేశమేమీ లేదు." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "ఇప్పటికే ఆ నోటీసుని పునరావృతించారు." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -874,13 +905,16 @@ msgstr "%d నోటీసుని తొలగించాం" msgid "Client must provide a 'status' parameter with a value." msgstr "" +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#, fuzzy, php-format +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. +#, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." -msgstr[0] "అది చాలా పొడవుంది. గరిష్ఠ నోటీసు పరిమాణం %d అక్షరాలు." -msgstr[1] "అది చాలా పొడవుంది. గరిష్ఠ నోటీసు పరిమాణం %d అక్షరాలు." +msgstr[0] "%d అక్షరం" +msgstr[1] "%d అక్షరాలు" #. TRANS: Client error displayed when replying to a non-existing notice. #, fuzzy @@ -889,11 +923,13 @@ msgstr "నిర్ధారణ సంకేతం కనబడలేదు." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. -#, fuzzy, php-format +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. +#, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." -msgstr[0] "గరిష్ఠ నోటీసు పొడవు %d అక్షరాలు, జోడింపు URLని కలుపుకుని." -msgstr[1] "గరిష్ఠ నోటీసు పొడవు %d అక్షరాలు, జోడింపు URLని కలుపుకుని." +msgstr[0] "%d అక్షరం" +msgstr[1] "%d అక్షరాలు" #. TRANS: Client error displayed when requesting profiles of followers in an unsupported format. #. TRANS: Client error displayed when requesting IDs of followers in an unsupported format. @@ -958,6 +994,8 @@ msgstr "%s యొక్క మైక్రోబ్లాగు" msgid "Repeats of %s" msgstr "%s యొక్క పునరావృతాలు" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%2$s నోటీసుని %1$s ఇష్టాంశంగా గుర్తించారు." @@ -972,6 +1010,8 @@ msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నో #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నోటీసులు!" @@ -1084,14 +1124,16 @@ msgstr "లోనికి ప్రవేశించలేదు." #. TRANS: Client error displayed when trying to approve or cancel a group join request without #. TRANS: being a group administrator. msgid "Only group admin can approve or cancel join requests." -msgstr "" +msgstr "చేరవచ్చిన అభ్యర్థనలను గుంపు నిర్వాహకులు మాత్రమే అంగీరించగలరు లేదా తిరస్కరించగలరు." #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "వాడుకరికి ప్రొఫైలు లేదు." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1099,10 +1141,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "ఈ గుంపులో వాడుకరులు జాబితా." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1127,6 +1171,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "ఈ గుంపులో వాడుకరులు జాబితా." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "వాడుకరి %1$sని %2$s గుంపులో చేర్చలేకపోయాం" + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "%2$sలో %1$s యొక్క స్థితి" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "చందాని అధీకరించారు" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "అధీకరణ రద్దయింది." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1167,8 +1239,8 @@ msgstr "అది ఇప్పటికే ఇష్టాంశం." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "%s గుంపు సభ్యత్వాలు" #. TRANS: Subtitle for group membership feed. @@ -1182,8 +1254,7 @@ msgstr "%2$sలో %1$s సభ్యులుగా ఉన్న గుంపు msgid "Cannot add someone else's membership." msgstr "కొత్త చందాని చేర్చలేకపోయాం." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "సైటు గమనికని భద్రపరచు" @@ -1230,9 +1301,8 @@ msgid "Profile %1$d not subscribed to profile %2$d." msgstr "మీరు ఎవరికీ చందాచేరలేదు." #. TRANS: Client exception thrown when trying to delete a subscription of another user. -#, fuzzy msgid "Cannot delete someone else's subscription." -msgstr "కొత్త చందాని చేర్చలేకపోయాం." +msgstr "మరొకరి చందాలని తొలగించలేరు." #. TRANS: Subtitle for Atom subscription feed. #. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename. @@ -1298,6 +1368,7 @@ msgstr "మీ వ్యక్తిగత అవతారాన్ని మీ #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. #, fuzzy msgid "User without matching profile." msgstr "వాడుకరికి ప్రొఫైలు లేదు." @@ -1325,6 +1396,7 @@ msgstr "మునుజూపు" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "తొలగించు" @@ -1437,6 +1509,7 @@ msgstr "ఈ వాడుకరిని నిరోధించవద్దు. #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "అవును" @@ -1494,6 +1567,33 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%2$s గుంపు నుండి %1$s వైదొలిగారు" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "లోనికి ప్రవేశించలేదు." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +#, fuzzy +msgid "No profile ID in request." +msgstr "అధీకరణ అభ్యర్థన లేదు!" + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "ఆ IDతో ఏ ప్రొఫైలూ కనబడలేదు." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "చందామాను" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "నిర్ధారణ సంకేతం లేదు." @@ -1569,7 +1669,7 @@ msgstr "మీ ఖాతాని మీరు తొలగించుకోల #. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation. msgid "I am sure." -msgstr "" +msgstr "నిశ్చయమే." #. TRANS: Notification for user about the text that must be input to be able to delete a user account. #. TRANS: %s is the text that needs to be input. @@ -1590,7 +1690,7 @@ msgstr "ఖాతా తొలగింపు" msgid "" "This will permanently delete your account data from this " "server." -msgstr "" +msgstr "ఇది మీ ఖాతా భోగట్టాను ఈ సేవిక నుండి శాశ్వతంగా తొలగిస్తుంది." #. TRANS: Additional form text for user deletion form shown if a user has account backup rights. #. TRANS: %s is a URL to the backup page. @@ -1607,9 +1707,9 @@ msgstr "నిర్థారించు" #. TRANS: Input title for the delete account field. #. TRANS: %s is the text that needs to be input. -#, fuzzy, php-format +#, php-format msgid "Enter \"%s\" to confirm that you want to delete your account." -msgstr "మీరు వాడుకరులని తొలగించలేరు." +msgstr "మీ ఖాతాను తొలగించుకోవాలనుకుంటున్నారని నిర్ధారించేందుకు \"%s\" అని టైపుచెయ్యండి." #. TRANS: Button title for user account deletion. msgid "Permanently delete your account" @@ -1629,6 +1729,7 @@ msgstr "ఉపకరణం కనబడలేదు." msgid "You are not the owner of this application." msgstr "మీరు ఈ ఉపకరణం యొక్క యజమాని కాదు." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "" @@ -1681,14 +1782,14 @@ msgid "Delete group" msgstr "గుంపు తొలగింపు" #. TRANS: Warning in form for deleleting a group. -#, fuzzy msgid "" "Are you sure you want to delete this group? This will clear all data about " "the group from the database, without a backup. Public posts to this group " "will still appear in individual timelines." msgstr "" -"మీరు నిజంగానే ఈ వాడుకరిని తొలగించాలనుకుంటున్నారా? ఇది ఆ వాడుకరి భోగట్టాని డాటాబేసు నుండి తొలగిస్తుంది, " -"వెనక్కి తేలేకుండా." +"మీరు నిజంగానే ఈ గుంపును తొలగించాలనుకుంటున్నారా? ఇది ఆ గుంపు గురించి ఉన్న భోగట్టాను మొత్తం డాటాబేసు " +"నుండి తొలగిస్తుంది, వెనక్కి తేలేకుండా. ఈ గుంపుకి పంపించిన బహిరంగ టపాలు మాత్రం ఆయా వ్యక్తుల కాలరేఖల్లో " +"కనిపిస్తాయి." #. TRANS: Submit button title for 'No' when deleting a group. msgid "Do not delete this group." @@ -1698,24 +1799,6 @@ msgstr "ఈ గుంపును తొలగించవద్దు." msgid "Delete this group." msgstr "ఈ గుంపుని తొలగించు." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "లోనికి ప్రవేశించలేదు." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1903,16 +1986,19 @@ msgid "Use defaults" msgstr "అప్రమేయాలని ఉపయోగించు" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "అప్రమేయాలని ఉపయోగించు" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "అప్రమేయాలని ఉపయోగించు" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "రూపురేఖలని భద్రపరచు" @@ -2252,6 +2338,7 @@ msgstr "ఇష్టాంశాలకు చేర్చు" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "ప్రాచుర్య నోటీసులు" @@ -2267,7 +2354,7 @@ msgstr "ప్రస్తుతం ఈ సైటులో అత్యంత #. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices. msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" +msgstr "ప్రజలు ఇష్టపడ్డ నోటీసులు ఇక్కడ కనిపిస్తాయి కానీ ఎవరూ ఇంకా నోటీసులని ఇష్టపడలేదు." #. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users. msgid "" @@ -2277,16 +2364,20 @@ msgstr "" #. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users. #. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting. -#, fuzzy, php-format +#, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to add a " "notice to your favorites!" -msgstr "[ఒక ఖాతాని నమోదుచేసుకుని](%%action.register%%) మీరే మొదట వ్రాసేవారు ఎందుకు కాకూడదు!" +msgstr "" +"[ఒక ఖాతాని నమోదుచేసుకుని](%%action.register%%) మొదటగా నోటీసులని ఇష్టపడ్డవారు మీరే ఎందుకు " +"కాకూడదు!" #. TRANS: Title of RSS feed with favourite notices of a user. #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "%sకి ఇష్టమైన నోటీసులు" @@ -2299,6 +2390,7 @@ msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నో #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "విశేష వాడుకరులు" @@ -2309,9 +2401,9 @@ msgid "Featured users, page %d" msgstr "విశేష వాడుకరులు, పేజీ %d" #. TRANS: Description on page displaying featured users. -#, fuzzy, php-format +#, php-format msgid "A selection of some great users on %s." -msgstr "%sలో కొందరు గొప్ప వాడుకరుల యొక్క ఎంపిక" +msgstr "%s లోని కొందరు గొప్ప వాడుకరులు" #. TRANS: Client error displayed when no notice ID was given trying do display a file. msgid "No notice ID." @@ -2360,6 +2452,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "" #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. #, fuzzy msgid "Error updating remote profile." msgstr "దూరపు ప్రొపైలుని తాజాకరించటంలో పొరపాటు" @@ -2399,15 +2492,6 @@ msgstr "వాడుకరికి ఇప్పటికే ఈ పాత్ర msgid "No profile specified." msgstr "గుంపు ఏమీ పేర్కొనలేదు." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -#, fuzzy -msgid "No profile with that ID." -msgstr "ఆ IDతో ఏ నోటీసూ కనబడలేదు." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2810,11 +2894,10 @@ msgstr "కొత్త వాడుకరులని ఆహ్వానిం #. TRANS: is already subscribed to one or more users with the given e-mail address(es). #. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses. #. TRANS: Followed by a bullet list. -#, fuzzy msgid "You are already subscribed to this user:" msgid_plural "You are already subscribed to these users:" -msgstr[0] "మీరు ఇప్పటికే ఈ వాడుకరులకు చందాచేరి ఉన్నారు:" -msgstr[1] "మీరు ఇప్పటికే ఈ వాడుకరులకు చందాచేరి ఉన్నారు:" +msgstr[0] "వాడుకరుకి" +msgstr[1] "వాడుకరులకు" #. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address). #. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address). @@ -2826,12 +2909,11 @@ msgstr "%1$s (%2$s)" #. TRANS: Message displayed inviting users to use a StatusNet site while the invited user #. TRANS: already uses a this StatusNet site. Plural form is based on the number of #. TRANS: reported already present people. Followed by a bullet list. -#, fuzzy msgid "This person is already a user and you were automatically subscribed:" msgid_plural "" "These people are already users and you were automatically subscribed to them:" -msgstr[0] "ఈ వ్యక్తులు ఇప్పటికే ఇక్కడ వాడుకరులు మరియు మిమ్మల్ని వారికి చందాదార్లుగా చేర్చేసాం:" -msgstr[1] "ఈ వ్యక్తులు ఇప్పటికే ఇక్కడ వాడుకరులు మరియు మిమ్మల్ని వారికి చందాదార్లుగా చేర్చేసాం:" +msgstr[0] "వ్యక్తి ఇప్పటికే ఒక వాడుకరి" +msgstr[1] "వ్యక్తులు ఇప్పటికే వాడుకరులు" #. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is #. TRANS: based on the number of invitations sent. Followed by a bullet list of @@ -2968,7 +3050,7 @@ msgstr "లైసెన్సు" #. TRANS: Form instructions for the site license admin panel. msgid "License for this StatusNet site" -msgstr "" +msgstr "ఈ స్టేటస్‌నెట్ సైటుకి లైసెన్సు" #. TRANS: Client error displayed selecting an invalid license in the license admin panel. msgid "Invalid license selection." @@ -2981,9 +3063,8 @@ msgid "" msgstr "" #. TRANS: Client error displayed selecting a too long license title in the license admin panel. -#, fuzzy msgid "Invalid license title. Maximum length is 255 characters." -msgstr "చెల్లని స్వాగత పాఠ్యం. గరిష్ఠ పొడవు 255 అక్షరాలు." +msgstr "లైసెన్సు శీర్షిక చెల్లదు. గరిష్ఠ పొడవు 255 అక్షరాలు." #. TRANS: Client error displayed specifying an invalid license URL in the license admin panel. msgid "Invalid license URL." @@ -3006,6 +3087,7 @@ msgid "License selection" msgstr "లైసెన్సు ఎంపిక" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "అంతరంగికం" @@ -3039,7 +3121,7 @@ msgstr "ఈ సైటులోని సమాచారానికి యజమ #. TRANS: Field label in the license admin panel. msgid "License Title" -msgstr "" +msgstr "లైసెన్సు శీర్షిక" #. TRANS: Field title in the license admin panel. msgid "The title of the license." @@ -3238,6 +3320,9 @@ msgid "Ajax Error" msgstr "అజాక్స్ పొరపాటు" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "కొత్త సందేశం" @@ -3369,15 +3454,15 @@ msgstr "" #. TRANS: Server error displayed in oEmbed action when path not found. #. TRANS: %s is a path. -#, fuzzy, php-format +#, php-format msgid "\"%s\" not found." -msgstr "వాడుకరి దొరకలేదు." +msgstr "\"%s\" దొరకలేదు." #. TRANS: Server error displayed in oEmbed action when notice not found. #. TRANS: %s is a notice. -#, fuzzy, php-format +#, php-format msgid "Notice %s not found." -msgstr "నిర్ధారణ సంకేతం కనబడలేదు." +msgstr "%s అనే నోటీసు దొరకలేదు." #. TRANS: Server error displayed in oEmbed action when notice has not profile. #. TRANS: Server error displayed trying to show a notice without a connected profile. @@ -3393,9 +3478,9 @@ msgstr "%2$sలో %1$s యొక్క స్థితి" #. TRANS: Server error displayed in oEmbed action when attachment not found. #. TRANS: %d is an attachment ID. -#, fuzzy, php-format +#, php-format msgid "Attachment %s not found." -msgstr "అందుకోవాల్సిన వాడుకరి కనబడలేదు." +msgstr "%s జోడింపు కనబడలేదు." #. TRANS: Server error displayed in oEmbed request when a path is not supported. #. TRANS: %s is a path. @@ -3537,7 +3622,6 @@ msgid "Password saved." msgstr "సంకేతపదం భద్రమయ్యింది." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "త్రోవలు" @@ -3741,6 +3825,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "సేవకి" @@ -3798,7 +3883,7 @@ msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నో #. TRANS: Page title for AJAX form return when a disabling a plugin. msgctxt "plugin" msgid "Disabled" -msgstr "" +msgstr "అచేతనమయ్యింది" #. TRANS: Client error displayed when trying to use another method than POST. #. TRANS: Do not translate POST. @@ -3818,10 +3903,9 @@ msgstr "అటువంటి ప్లగిన్ లేదు." #. TRANS: Page title for AJAX form return when enabling a plugin. msgctxt "plugin" msgid "Enabled" -msgstr "" +msgstr "చేతనమైంది" #. TRANS: Tab and title for plugins admin panel. -#, fuzzy msgctxt "TITLE" msgid "Plugins" msgstr "ప్లగిన్లు" @@ -3834,9 +3918,8 @@ msgid "" msgstr "" #. TRANS: Admin form section header -#, fuzzy msgid "Default plugins" -msgstr "అప్రమేయ భాష" +msgstr "అప్రమేయ ప్లగిన్లు" #. TRANS: Text displayed on plugin admin page when no plugin are enabled. msgid "" @@ -3871,9 +3954,8 @@ msgstr "ప్రొఫైలు సమాచారం" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Field title on account registration page. #. TRANS: Field title on group edit form. -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." -msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామచిహ్నాలు మరియు ఖాళీలు తప్ప" +msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామచిహ్నాలు మరియు ఖాళీలు తప్ప." #. TRANS: Field label in form for profile settings. #. TRANS: Field label on account registration page. @@ -3897,17 +3979,21 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" -msgstr[0] "మీ గురించి మరియు మీ ఆసక్తుల గురించి %d అక్షరాల్లో చెప్పండి" -msgstr[1] "మీ గురించి మరియు మీ ఆసక్తుల గురించి %d అక్షరాల్లో చెప్పండి" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." +msgstr[0] "%d అక్షరంలో" +msgstr[1] "%d అక్షరాల్లో" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" -msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి చెప్పండి" +#. TRANS: Text area title on account registration page. +msgid "Describe yourself and your interests." +msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి చెప్పండి." -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3920,14 +4006,18 @@ msgid "Location" msgstr "ప్రాంతం" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "మీరు ఎక్కడ నుండి, \"నగరం, రాష్ట్రం (లేదా ప్రాంతం), దేశం\"" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "మీరు ఎక్కడివారు, \"నగరం, రాష్ట్రం (లేదా ప్రాంతం), దేశం\"." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" msgstr "" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "ట్యాగులు" @@ -3959,6 +4049,27 @@ msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "ఉపయోగించాల్సిన యాంత్రిక కుదింపు సేవ." +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "చందాలు" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -3990,7 +4101,7 @@ msgstr "చెల్లని ట్యాగు: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -3999,6 +4110,7 @@ msgid "Could not save location prefs." msgstr "ట్యాగులని భద్రపరచలేకున్నాం." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "ట్యాగులని భద్రపరచలేకపోయాం." @@ -4031,6 +4143,7 @@ msgid "Public timeline, page %d" msgstr "ప్రజా కాలరేఖ, పేజీ %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "ప్రజా కాలరేఖ" @@ -4210,10 +4323,6 @@ msgstr "" msgid "Password saved" msgstr "సంకేతపదం భద్రమయ్యింది" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "తెలియని చర్య" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు, మర్చిపోకండి!" @@ -4305,6 +4414,7 @@ msgstr "నమోదు అనుమతించబడదు." msgid "You cannot register if you do not agree to the license." msgstr "ఈ లైసెన్సుకి అంగీకరించకపోతే మీరు నమోదుచేసుకోలేరు." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "ఈమెయిల్ చిరునామా ఇప్పటికే ఉంది." @@ -4330,33 +4440,14 @@ msgid "Email" msgstr "ఈమెయిల్" #. TRANS: Field title on account registration page. -#, fuzzy msgid "Used only for updates, announcements, and password recovery." msgstr "తాజా విశేషాలు, ప్రకటనలు, మరియు సంకేతపదం పోయినప్పుడు మాత్రమే ఉపయోగిస్తాం." #. TRANS: Field title on account registration page. -#, fuzzy msgid "Longer name, preferably your \"real\" name." -msgstr "పొడుగాటి పేరు, మీ \"అసలు\" పేరైతే మంచిది" +msgstr "పొడుగాటి పేరు, మీ \"అసలు\" పేరైతే మంచిది." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, 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 అక్షరాల్లో చెప్పండి" -msgstr[1] "మీ గురించి మరియు మీ ఆసక్తుల గురించి %d అక్షరాల్లో చెప్పండి" - -#. TRANS: Text area title on account registration page. -msgid "Describe yourself and your interests." -msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి చెప్పండి." - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "మీరు ఎక్కడివారు, \"నగరం, రాష్ట్రం (లేదా ప్రాంతం), దేశం\"." - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. msgctxt "BUTTON" msgid "Register" msgstr "నమోదు" @@ -4471,6 +4562,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. msgctxt "BUTTON" msgid "Subscribe" msgstr "చందాచేరండి" @@ -4485,7 +4578,6 @@ msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." msgstr "" #. TRANS: Form validation error on page for remote subscribe. -#, fuzzy msgid "That is a local profile! Login to subscribe." msgstr "అది స్థానిక ప్రొఫైలు! చందాచేరడానికి ప్రవేశించండి." @@ -4503,15 +4595,8 @@ msgstr "కేవలం ప్రవేశించిన వాడుకరు msgid "No notice specified." msgstr "గుంపు ఏమీ పేర్కొనలేదు." -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "మీరు ఇప్పటికే ఆ నోటీసుని పునరావృతించారు." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "పునరావృతం" @@ -4522,6 +4607,8 @@ msgstr "పునరావృతించారు!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "%sకి స్పందనలు" @@ -4632,9 +4719,9 @@ msgid "System error uploading file." msgstr "" #. TRANS: Client exception thrown when a feed is not an Atom feed. -#, fuzzy +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." -msgstr "అందరు సభ్యులూ" +msgstr "అది ఆటమ్ ఫీడు కాదు." #. TRANS: Success message when a feed has been restored. msgid "" @@ -4671,6 +4758,7 @@ msgid "StatusNet" msgstr "స్టేటస్‌నెట్" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "ఈ సైటులో మీరు వాడుకరలకి పాత్రలను ఇవ్వలేరు." @@ -4742,7 +4830,6 @@ msgid "Application actions" msgstr "ఉపకరణ చర్యలు" #. TRANS: Link text to edit application on the OAuth application page. -#, fuzzy msgctxt "EDITAPP" msgid "Edit" msgstr "మార్చు" @@ -4862,6 +4949,8 @@ msgstr "సభ్యులు" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(ఏమీలేదు)" @@ -4875,7 +4964,6 @@ msgid "Statistics" msgstr "గణాంకాలు" #. TRANS: Label for group creation date. -#, fuzzy msgctxt "LABEL" msgid "Created" msgstr "సృష్టితం" @@ -4946,6 +5034,11 @@ msgstr "%2$sలో %1$sకి స్పందనలు!" msgid "Message from %1$s on %2$s" msgstr "%2$sలో %1$sకి స్పందనలు!" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "IM అందుబాటులో లేదు." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "నోటీసుని తొలగించాం." @@ -4953,20 +5046,20 @@ msgstr "నోటీసుని తొలగించాం." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %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, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నోటీసులు!" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, %2$dవ పేజీ" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నోటీసులు!" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5052,6 +5145,7 @@ msgid "Repeat of %s" msgstr "%s యొక్క పునరావృతం" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. #, fuzzy msgid "You cannot silence users on this site." msgstr "ఈ సైటులో మీరు వాడుకరలకి పాత్రలను ఇవ్వలేరు." @@ -5094,19 +5188,16 @@ msgid "Dupe limit must be one or more seconds." msgstr "" #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "General" -msgstr "సాధారణ" +msgstr "సాధారణం" #. TRANS: Field label on site settings panel. -#, fuzzy msgctxt "LABEL" msgid "Site name" msgstr "సైటు పేరు" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "The name of your site, like \"Yourcompany Microblog\"." msgstr "మీ సైటు యొక్క పేరు, ఇలా \"మీకంపెనీ మైక్రోబ్లాగు\"" @@ -5136,10 +5227,9 @@ msgid "Contact email address for your site." msgstr "మీ సైటుకి సంప్రదింపుల ఈమెయిల్ చిరునామా" #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Local" -msgstr "స్థానిక" +msgstr "స్థానికం" #. TRANS: Dropdown label on site settings panel. msgid "Default timezone" @@ -5343,54 +5433,69 @@ msgstr "" msgid "No code entered." msgstr "విషయం లేదు!" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" msgid "Snapshots" msgstr "" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "సైటు స్వరూపణాన్ని మార్చండి" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. #, fuzzy msgid "Invalid snapshot run value." msgstr "తప్పుడు పాత్ర." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. #, fuzzy msgid "Invalid snapshot report URL." msgstr "చిహ్నపు URL చెల్లదు." +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "తరచుదనం" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "భద్రపరచు" - +#. TRANS: Title for button to save snapshot settings. #, fuzzy -msgid "Save snapshot settings" +msgid "Save snapshot settings." msgstr "సైటు అమరికలను భద్రపరచు" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5403,6 +5508,27 @@ msgstr "మీరు ఎవరికీ చందాచేరలేదు." msgid "Could not save subscription." msgstr "కొత్త చందాని చేర్చలేకపోయాం." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "అనుతికోసం వేచివున్న %s గుంపు సభ్యులు" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "అనుమతి కోసం వేచివున్న %1$s గుంపు సభ్యులు, %2$dవ పుట" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "ఈ గుంపులో చేరడానికి అనుమతి కోసం వేచివున్న వాడుకరుల జాబితా." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5435,7 +5561,6 @@ msgid "These are the people who listen to %s's notices." msgstr "వీళ్ళు %s యొక్క నోటీసులని వినే ప్రజలు." #. TRANS: Subscriber list text when the logged in user has no subscribers. -#, fuzzy msgid "" "You have no subscribers. Try subscribing to people you know and they might " "return the favor." @@ -5500,9 +5625,9 @@ msgid "%s is not listening to anyone." msgstr "%s ప్రస్తుతం ఎవరినీ వినడంలేదు." #. TRANS: Atom feed title. %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "Subscription feed for %s (Atom)" -msgstr "%s కొరకు స్పందనల ఫీడు (ఆటమ్)" +msgstr "%s యొక్క చందాల ఫీడు (ఆటమ్)" #. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list. msgid "IM" @@ -5518,45 +5643,66 @@ msgstr "" msgid "Notices tagged with %1$s, page %2$d" msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నోటీసులు!" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s కొరకు స్పందనల ఫీడు (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s కొరకు స్పందనల ఫీడు (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "%s కొరకు స్పందనల ఫీడు (ఆటమ్)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "జోడింపులు లేవు." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, fuzzy, php-format msgid "Tag %s" msgstr "ట్యాగులు" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "వాడుకరి ప్రొఫైలు" +#. TRANS: Fieldset legend on "tag other users" page. #, fuzzy msgid "Tag user" msgstr "ట్యాగులు" +#. TRANS: Title for input field for inputting tags on "tag other users" page. msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " "spaces." msgstr "" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "ట్యాగులు" + +#. TRANS: Page notice on "tag other users" page. #, fuzzy msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "మీ ఉపకరణాన్ని మార్చడానికి ఈ ఫారాన్ని ఉపయోగించండి." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "అటువంటి ట్యాగు లేదు." @@ -5564,25 +5710,30 @@ msgstr "అటువంటి ట్యాగు లేదు." msgid "You haven't blocked that user." msgstr "మీరు ఆ వాడుకరిని నిరోధించలేదు." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "వాడుకరిని గుంపు నుండి నిరోధించలేదు." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. #, fuzzy msgid "User is not silenced." msgstr "వాడుకరికి ప్రొఫైలు లేదు." -#, fuzzy -msgid "No profile ID in request." -msgstr "అధీకరణ అభ్యర్థన లేదు!" - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "చందామాను" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" +#. TRANS: Title of URL settings tab in profile settings. msgid "URL settings" msgstr "URL అమరికలు" @@ -5596,9 +5747,11 @@ msgstr "వేరే ఇతర ఎంపికలని సంభాళించ msgid " (free service)" msgstr " (స్వేచ్ఛా సేవ)" +#. TRANS: Default value for URL shortening settings. msgid "[none]" msgstr "[ఏమీలేదు]" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "[అంతర్గతం]" @@ -5610,15 +5763,19 @@ msgstr "URL కుదింపు సేవ" msgid "Automatic shortening service to use." msgstr "ఉపయోగించాల్సిన యాంత్రిక కుదింపు సేవ." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5628,17 +5785,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "URL కుదింపు సేవ మరీ పెద్దగా ఉంది (50 అక్షరాలు గరిష్ఠం)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "తప్పుడు దస్త్రపుపేరు.." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "తప్పుడు దస్త్రపుపేరు.." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "వాడుకరి" @@ -5661,6 +5822,9 @@ msgstr "చెల్లని స్వాగత పాఠ్యం. గరి msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "ప్రొఫైలు" @@ -5714,7 +5878,7 @@ msgstr "వాడుకరి అమరికలను భద్రపరచు. msgid "Authorize subscription" msgstr "చందాని అధీకరించండి" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5723,16 +5887,19 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "అంగీకరించు" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. msgid "Subscribe to this user." msgstr "ఈ వాడుకరికి చందాచేరండి." #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "తిరస్కరించు" @@ -5749,9 +5916,10 @@ msgstr "అధీకరణ అభ్యర్థన లేదు!" msgid "Subscription authorized" msgstr "చందాని అధీకరించారు" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" @@ -5759,9 +5927,10 @@ msgstr "" msgid "Subscription rejected" msgstr "చందాని తిరస్కరించారు." +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" @@ -5789,14 +5958,6 @@ msgstr "" 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. -#, php-format -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. #, fuzzy, php-format @@ -5900,7 +6061,6 @@ msgid "Contributors" msgstr "అనుసంధానాలు" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "లైసెన్సు" @@ -5929,24 +6089,20 @@ msgid "" msgstr "" #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "ప్లగిన్లు" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Name" msgstr "పేరు" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Version" msgstr "సంచిక" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Author(s)" msgstr "రచయిత(లు)" @@ -6008,6 +6164,18 @@ msgstr[1] "" msgid "Invalid filename." msgstr "తప్పుడు దస్త్రపుపేరు.." +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#, php-format +msgid "Group ID %s is invalid." +msgstr "%s అనే గుంపు ID చెల్లదు." + #. TRANS: Exception thrown when joining a group fails. msgid "Group join failed." msgstr "గుంపులో చేరడం విఫలమైంది." @@ -6020,18 +6188,6 @@ msgstr "గుంపులో భాగం కాదు." msgid "Group leave failed." msgstr "గుంపు నుండి వైదొలగడం విఫలమైంది." -#. TRANS: Exception thrown providing an invalid profile ID. -#. TRANS: %s is the invalid profile ID. -#, php-format -msgid "Profile ID %s is invalid." -msgstr "" - -#. TRANS: Exception thrown providing an invalid group ID. -#. TRANS: %s is the invalid group ID. -#, fuzzy, php-format -msgid "Group ID %s is invalid." -msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు: సరికాదు." - #. TRANS: Activity title. msgid "Join" msgstr "చేరు" @@ -6105,6 +6261,35 @@ msgstr "చాలా ఎక్కువ నోటీసులు అంత వ msgid "You are banned from posting notices on this site." msgstr "ఈ సైటులో నోటీసులు రాయడం నుండి మిమ్మల్ని నిషేధించారు." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు." + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "మీరు ఇప్పటికే ఆ నోటీసుని పునరావృతించారు." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "వాడుకరికి ప్రొఫైలు లేదు." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6131,16 +6316,13 @@ msgstr "స్థానిక గుంపుని తాజాకరించ msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6163,6 +6345,7 @@ msgid "Unable to save tag." msgstr "ట్యాగులని భద్రపరచలేకపోయాం." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "చందాచేరడం నుండి మిమ్మల్ని నిషేధించారు." @@ -6191,7 +6374,9 @@ msgstr "కొత్త చందాని చేర్చలేకపోయా msgid "Could not delete subscription." msgstr "కొత్త చందాని చేర్చలేకపోయాం." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "అనుసరించు" @@ -6259,18 +6444,24 @@ msgid "User deletion in progress..." msgstr "వాడుకరి తొలగింపు కొనసాగుతూంది..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "ఫ్రొఫైలు అమరికలని మార్చు" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "మార్చు" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "ఈ వాడుకరికి ఒక నేరు సందేశాన్ని పంపించండి" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "సందేశం" @@ -6293,10 +6484,6 @@ msgctxt "role" msgid "Moderator" msgstr "సమన్వయకర్త" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "చందాచేరు" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6321,6 +6508,9 @@ msgstr "స్పందించండి" msgid "Write a reply..." msgstr "మీ స్పందనని వ్రాయండి..." +#. TRANS: Tab on the notice form. +#, fuzzy +msgctxt "TAB" msgid "Status" msgstr "స్థితి" @@ -6418,9 +6608,8 @@ msgid "Remote profile is not a group!" msgstr "" #. TRANS: Client exception thrown when trying to join a group the importing user is already a member of. -#, fuzzy msgid "User is already a member of this group." -msgstr "మీరు ఇప్పటికే ఆ గుంపులో సభ్యులు." +msgstr "మీరు ఇప్పటికే ఈ గుంపులో సభ్యులు." #. TRANS: Client exception thrown when trying to import a notice by another user. #. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author. @@ -6438,8 +6627,9 @@ msgstr "" msgid "No content for notice %s." msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు." -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "%s అనే వాడుకరి లేరు." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6488,78 +6678,128 @@ msgstr "" msgid "Unable to delete design setting." msgstr "మీ రూపురేఖల అమరికలని భద్రపరచలేకున్నాం." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "ముంగిలి" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "ముంగిలి" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "నిర్వాహకులు" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "ప్రాథమిక సైటు స్వరూపణం" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "సైటు" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "రూపకల్పన స్వరూపణం" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "రూపురేఖలు" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "వాడుకరి స్వరూపణం" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "వాడుకరి" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "రూపకల్పన స్వరూపణం" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Access" +msgstr "అందుబాటు" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "వాడుకరి స్వరూపణం" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "త్రోవలు" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Sessions configuration" msgstr "రూపకల్పన స్వరూపణం" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "సంచిక" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "సైటు గమనికని భద్రపరచు" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "సైటు గమనిక" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "వాడుకరి స్వరూపణం" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Snapshots" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "లైసెన్సు" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "వాడుకరి స్వరూపణం" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "ప్లగిన్లు" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6568,6 +6808,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6604,10 +6845,12 @@ msgstr "" msgid "Could not issue access token." msgstr "ట్యాగులని భద్రపరచలేకపోయాం." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error inserting OAuth application user." msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు" +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు" @@ -6702,6 +6945,17 @@ msgstr "" msgid "Cancel" msgstr "రద్దుచేయి" +#. TRANS: Submit button title. +msgid "Save" +msgstr "భద్రపరచు" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "తెలియని చర్య" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -6724,12 +6978,13 @@ msgstr "" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. #, fuzzy msgctxt "BUTTON" msgid "Revoke" msgstr "తొలగించు" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -6765,7 +7020,13 @@ msgstr "ఈ వాడుకరిని నిరోధించు" #. TRANS: Submit button text on form to cancel group join request. msgctxt "BUTTON" msgid "Cancel join request" -msgstr "" +msgstr "అభ్యర్థనను రద్దుచేయి" + +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "అభ్యర్థనను రద్దుచేయి" #. TRANS: Title for command results. msgid "Command results" @@ -6777,6 +7038,7 @@ msgid "AJAX error" msgstr "అజాక్స్ పొరపాటు" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "ఆదేశం పూర్తయ్యింది" @@ -6897,6 +7159,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -6918,10 +7182,6 @@ msgstr "నేరుగా సందేశాలు పంపడం నుండ msgid "Notice from %s repeated." msgstr "సందేశాలు" -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "నోటీసుని పునరావృతించడంలో పొరపాటు." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7223,13 +7483,19 @@ msgstr "" msgid "Go to the installer." msgstr "సైటు లోనికి ప్రవేశించండి" +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "ప్రజా" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "తొలగించు" @@ -7237,6 +7503,7 @@ msgstr "తొలగించు" msgid "Delete this user" msgstr "ఈ వాడుకరిని తొలగించు" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "రూపురేఖలని భద్రపరచు" @@ -7249,16 +7516,6 @@ msgstr "రంగులను మార్చు" msgid "Use defaults" msgstr "అప్రమేయాలని ఉపయోగించు" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#, fuzzy -msgid "Restore default designs" -msgstr "అప్రమేయాలని ఉపయోగించు" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#, fuzzy -msgid "Reset back to default" -msgstr "అప్రమేయాలని ఉపయోగించు" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7266,8 +7523,8 @@ msgstr "ఫైలుని ఎక్కించు" #. TRANS: Instructions for form on profile design page. msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "మీ స్వంత నేపథ్యపు చిత్రాన్ని మీరు ఎక్కించవచ్చు. గరిష్ఠ ఫైలు పరిమాణం 2మెబై." +"You can upload your personal background image. The maximum file size is 2MB." +msgstr "మీ వ్యక్తిగత నేపథ్యపు చిత్రాన్ని మీరు ఎక్కించవచ్చు. గరిష్ఠ ఫైలు పరిమాణం 2మెబై." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. msgctxt "RADIO" @@ -7279,15 +7536,6 @@ msgctxt "RADIO" msgid "Off" msgstr "ఆఫ్" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "మీ రూపురేఖలని తాజాకరించలేకపోయాం." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "" @@ -7319,47 +7567,60 @@ msgctxt "BUTTON" msgid "Favor" msgstr "ఇష్టపడండి" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "ఆటమ్" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "" -#, fuzzy -msgid "Not an atom feed." -msgstr "అందరు సభ్యులూ" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "ఫీడులు" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "అన్నీ" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "ట్యాగు" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +msgid "Choose a tag to narrow list." msgstr "" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "వెళ్ళు" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "" @@ -7413,19 +7674,20 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Dropdown fieldd label on group edit form. -#, fuzzy msgid "Membership policy" -msgstr "సభ్యులైన తేదీ" +msgstr "సభ్యత్వ విధానం" +#. TRANS: Group membership policy option. msgid "Open to all" -msgstr "" +msgstr "అందరికీ ప్రవేశం" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" -msgstr "" +msgstr "సభ్యులందరినీ నిర్వాహకులు అనుమతించాలి" #. TRANS: Dropdown field title on group edit form. msgid "Whether admin approval is required to join this group." -msgstr "" +msgstr "ఈ గుంపులో చేరడానికి నిర్వాహకుని అనుమతి కావాలా." #. TRANS: Indicator in group members list that this user is a group administrator. #, fuzzy @@ -7486,6 +7748,7 @@ msgid "%s blocked users" msgstr "%s నుండి నిరోధించిన వాడుకరులు" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "నిర్వాహకులు" @@ -7586,23 +7849,46 @@ msgid_plural "%dB" msgstr[0] "%dబైటు" msgstr[1] "%dబైట్లు" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "గుర్తు తెలియని భాష \"%s\"." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "చేరు" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "వైదొలగు" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "ప్రవేశించు" @@ -7663,6 +7949,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s ఇప్పుడు %2$sలో మీ నోటీసులని వింటున్నారు." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s ఇప్పుడు %2$sలో మీ నోటీసులని వింటున్నారు." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -7943,9 +8243,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "ఎవరి తపాలాపెట్టెలను ఆ వాడుకరి మాత్రమే చదవలగరు." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -7953,34 +8255,50 @@ msgstr "" "మీకు అంతరంగిక సందేశాలు లేవు. ఇతర వాడుకరులతో సంభాషణకై మీరు వారికి అంతరంగిక సందేశాలు " "పంపించవచ్చు. మీ కంటికి మాత్రమే కనబడేలా వారు మీకు సందేశాలు పంపవచ్చు." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "వచ్చినవి" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "మీకు వచ్చిన సందేశాలు" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "పంపినవి" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "మీరు పంపిన సందేశాలు" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. #, fuzzy msgid "Could not parse message." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "నమోదైన వాడుకరి కాదు." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "క్షమించండి, అది మీ లోనికివచ్చు ఈమెయిలు చిరునామా కాదు." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. #, fuzzy msgid "Sorry, no incoming email allowed." msgstr "క్షమించండి, అది మీ లోనికివచ్చు ఈమెయిలు చిరునామా కాదు." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. #, fuzzy, php-format -msgid "Unsupported message type: %s" +msgid "Unsupported message type: %s." msgstr "%s కి నేరు సందేశాలు" #. TRANS: Form legend for form to make a user a group admin. @@ -8030,11 +8348,14 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. #, fuzzy msgid "Send a direct notice" msgstr "సైటు గమనికని భద్రపరచు" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "" @@ -8042,32 +8363,68 @@ msgstr "" msgid "No mutual subscribers." msgstr "పరస్పర చందాదార్లు ఎవరూలేరు." +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "పంపించు" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "సందేశం" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "నుండి" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "జాలం" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "ఈమెయిల్" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "ఈ గుంపును తొలగించడానికి మీకు అనుమతి లేదు." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "ఈ వాడుకరిని తొలగించకండి." -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8115,71 +8472,96 @@ msgstr "" "క్షమించండి, మీ భౌగోళిక ప్రాంతాన్ని తెలుసుకోవడం అనుకున్నదానికంటే ఎక్కవ సమయం తీసుకుంటూంది, దయచేసి " "కాసేపాగి ప్రయత్నించండి" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "సందేశాలు" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "ఉ" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "ద" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "తూ" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "ప" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "ప్రాంతం" -msgid "web" -msgstr "జాలం" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "సందర్భంలో" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "%s యొక్క పునరావృతం" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "ఈ నోటీసుపై స్పందించండి" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "స్పందించండి" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "ఈ నోటీసుని తొలగించు" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "నోటీసుని పునరావృతించారు" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. #, fuzzy msgid "Nudge this user" msgstr "ఈ వాడుకరిని తొలగించు" +#. TRANS: Button text to nudge/ping another user. #, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "బాడ్జి" +#. TRANS: Button title to nudge/ping another user. #, fuzzy -msgid "Send a nudge to this user" +msgid "Send a nudge to this user." msgstr "ఈ వాడుకరికి ఒక నేరు సందేశాన్ని పంపించండి" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8187,18 +8569,51 @@ msgstr "" msgid "Duplicate notice." msgstr "" -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "కొత్త చందాని చేర్చలేకపోయాం." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "ప్రొఫైలు" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "గుంపు ప్రొఫైలు" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "స్పందనలు" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "ఇష్టాంశాలు" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "వాడుకరి" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "సందేశం" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "మీకు వచ్చిన సందేశాలు" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8223,30 +8638,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "SMS అమరికలు" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "ఫ్రొఫైలు అమరికలని మార్చు" -msgid "Site configuration" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Site configuration." msgstr "సైటు స్వరూపణం" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "నిష్క్రమించు" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "సైటు నుండి నిష్క్రమించు" -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "సైటులోని ప్రవేశించు" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "వెతుకు" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "సైటుని వెతుకు" #. TRANS: H2 text for user subscription statistics. @@ -8293,30 +8723,53 @@ msgstr "అన్ని గుంపులు" msgid "Unimplemented method." msgstr "" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "గుంపులు" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "వాడుకరి గుంపులు" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "ఇటీవలి ట్యాగులు" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "ఇటీవలి ట్యాగులు" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "విశేషం" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "ప్రాచుర్యం" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "జోడింపులు లేవు." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "ఈ నోటీసుని పునరావృతించాలా?" -msgid "Yes" -msgstr "అవును" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "ఈ నోటీసుని పునరావృతించు" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, fuzzy, php-format msgid "Revoke the \"%s\" role from this user" msgstr "ఈ గుంపునుండి ఈ వాడుకరిని నిరోధించు" @@ -8326,10 +8779,13 @@ msgstr "ఈ గుంపునుండి ఈ వాడుకరిని న msgid "Page not found." msgstr "నిర్ధారణ సంకేతం కనబడలేదు." +#. TRANS: Title of form to sandbox a user. #, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "వచ్చినవి" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "ఈ వాడుకరిని నిరోధించు" @@ -8347,129 +8803,274 @@ msgctxt "BUTTON" msgid "Search" msgstr "వెతుకు" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "ప్రజలు" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "ఈ సైటులోని వ్యక్తులని కనుగొనండి" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "సందేశాలు" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "ఈ సైటులోని గుంపులని కనుగొనండి" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "సహాయం" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "గురించి" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "ప్రశ్నలు" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "సేవా నియమాలు" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "అంతరంగికత" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "మూలము" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "సంచిక" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "సంప్రదించు" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "బాడ్జి" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "శీర్షికలేని విభాగం" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "మరింత..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "SMS అమరికలు" + +#. TRANS: Menu item title in settings navigation panel. #, fuzzy msgid "Change your profile settings" msgstr "ఫ్రొఫైలు అమరికలని మార్చు" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "అవతారం" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "ఒక అవతారాన్ని ఎక్కించండి" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "సంకేతపదం" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "మీ సంకేతపదాన్ని మార్చుకోండి" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "ఈమెయిల్" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "వాడుకరి ప్రొఫైలు" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" msgid "URL" msgstr "" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "IM" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "SMS" +msgstr "SSL" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "అనుసంధానాలు" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "అధీకృత అనుసంధాన ఉపకరణాలు" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "సైటు గమనిక" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "ఈ వాడుకరిని తొలగించు" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "చందాలు" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "%s చందాచేరిన వ్యక్తులు" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "చందాదార్లు" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "%sకి చందాచేరిన వ్యక్తులు" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "%s సభ్యులుగా ఉన్న గుంపులు" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "ఆహ్వానించు" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "%sలో తోడుకై మీ స్నేహితులని మరియు సహోద్యోగులని ఆహ్వానించండి" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "ఈ వాడుకరికి చందాచేరు" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "ఏమీలేదు" @@ -8477,18 +9078,25 @@ msgstr "ఏమీలేదు" msgid "Invalid theme name." msgstr "చెల్లని అలంకారపు పేరు." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "" +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "అలంకారాన్ని భద్రపరచడం విఫలమైంది." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8496,30 +9104,30 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "నిరోధాన్ని తొలగించడంలో పొరపాటు." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "సందేశాలు" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -8550,29 +9158,52 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "ఈ నోటీసుని పునరావృతించు" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." -msgstr[0] "ఈ నోటీసుని తొలగించు" -msgstr[1] "ఈ నోటీసుని తొలగించు" +msgstr[0] "ఒక వ్యక్తి" +msgstr[1] "%d వ్యక్తులు" #. TRANS: List message for notice repeated by logged in user. msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "మీరు ఈ నోటీసును పునరావృతించారు." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." -msgstr[0] "ఇప్పటికే ఆ నోటీసుని పునరావృతించారు." -msgstr[1] "ఇప్పటికే ఆ నోటీసుని పునరావృతించారు." +msgstr[0] "ఒక వ్యక్తి" +msgstr[1] "%d వ్యక్తులు" #. TRANS: Title for top posters section. msgid "Top posters" msgstr "" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +msgctxt "LABEL" +msgid "To:" +msgstr "" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "గుర్తు తెలియని భాష \"%s\"." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8602,16 +9233,15 @@ msgid "Unsubscribe from this user" msgstr "ఈ వాడుకరి నుండి చందామాను" #. TRANS: Button text on unsubscribe form. -#, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" msgstr "చందామాను" #. TRANS: Exception text shown when no profile can be found for a user. #. TRANS: %1$s is a user nickname, $2$d is a user ID (number). -#, fuzzy, php-format +#, php-format msgid "User %1$s (%2$d) has no profile record." -msgstr "వాడుకరికి ప్రొఫైలు లేదు." +msgstr "%1$s (%2$d) వాడుకరికి ప్రొఫైలు లేదు." #. TRANS: Authorisation exception thrown when a user a not allowed to login. msgid "Not allowed to log in." @@ -8688,5 +9318,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "నోటిసు చాలా పొడవుగా ఉంది - %1$d అక్షరాలు గరిష్ఠం, మీరు %2$d పంపించారు." +#~ msgid "Couldn't update your design." +#~ msgstr "మీ రూపురేఖలని తాజాకరించలేకపోయాం." diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index 94b5493b54..9e679e8b48 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/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-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:13+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:41+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -79,7 +79,9 @@ msgstr "Erişim ayarlarını kaydet" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -91,6 +93,7 @@ msgstr "Kaydet" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Böyle bir sayfa yok." @@ -839,16 +842,6 @@ msgstr "Başka bir kullanıcının durum mesajını silemezsiniz." msgid "No such notice." msgstr "Böyle bir durum mesajı yok." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Kendi durum mesajınızı tekrarlayamazsınız." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Bu durum mesajı zaten tekrarlanmış." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -987,6 +980,8 @@ msgstr "%s ile etiketli durum mesajları" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%s adli kullanicinin durum mesajlari" @@ -1103,11 +1098,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Profil yok." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1115,10 +1112,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Bu gruptaki kullanıcıların listesi." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1143,6 +1142,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Bu gruptaki kullanıcıların listesi." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "%1$s kullanıcısı, %2$s grubuna katılamadı." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "%1$s'in %2$s'deki durum mesajları " + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Takip talebine izin verildi" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Yetkilendirme iptal edildi." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1185,7 +1212,7 @@ msgstr "Favorilere ekle" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "%s grup üyeleri" #. TRANS: Subtitle for group membership feed. @@ -1199,8 +1226,7 @@ msgstr "%2$s kullanıcısının üye olduğu %1$s grupları." msgid "Cannot add someone else's membership." msgstr "Yeni abonelik eklenemedi." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Durum mesajını kaydederken hata oluştu." @@ -1522,6 +1548,50 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s'in %2$s'deki durum mesajları " +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "Giriş yapılmadı." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +#, fuzzy +msgid "No profile ID in request." +msgstr "Yetkilendirme isteği yok!" + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "" + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Aboneliği sonlandır" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Onay kodu yok." @@ -1738,24 +1808,6 @@ msgstr "Bu durum mesajını silme" msgid "Delete this group." msgstr "Bu kullanıcıyı sil" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Giriş yapılmadı." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2453,14 +2505,6 @@ msgstr "Kullanıcının profili yok." msgid "No profile specified." msgstr "Hiçbir profil belirtilmedi." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "" - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3043,6 +3087,7 @@ msgid "License selection" msgstr "Lisans seçimi" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. #, fuzzy msgid "Private" msgstr "Gizlilik" @@ -3795,6 +3840,7 @@ msgid "SSL" msgstr "" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Sunucu" @@ -3958,17 +4004,21 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" #. TRANS: Tooltip for field label in form for profile settings. +#. TRANS: Text area title on account registration page. #, fuzzy -msgid "Describe yourself and your interests" +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: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3981,7 +4031,9 @@ msgid "Location" msgstr "Yer" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi" #. TRANS: Checkbox label in form for profile settings. @@ -3989,6 +4041,7 @@ msgid "Share my current location when posting notices" msgstr "" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Etiketler" @@ -4024,6 +4077,27 @@ msgid "" "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: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Abonelikler" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4055,7 +4129,7 @@ msgstr "Geçersiz büyüklük." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Kullanıcı güncellenemedi." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4064,6 +4138,7 @@ msgid "Could not save location prefs." msgstr "Profil kaydedilemedi." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Profil kaydedilemedi." @@ -4410,25 +4485,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, 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: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4528,6 +4585,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4563,17 +4621,8 @@ msgstr "" msgid "No notice specified." msgstr "Yeni durum mesajı" -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -#, fuzzy -msgid "You already repeated that notice." -msgstr "Zaten giriş yapmış durumdasıznız!" - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Sıfırla" @@ -4732,6 +4781,7 @@ msgid "StatusNet" msgstr "İstatistikler" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. #, fuzzy msgid "You cannot sandbox users on this site." msgstr "Bize o profili yollamadınız" @@ -4993,6 +5043,11 @@ msgstr "" msgid "Message from %1$s on %2$s" msgstr "" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "Anlık mesajlaşma mevcut değil." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Durum mesajı silindi." @@ -5000,20 +5055,20 @@ msgstr "Durum mesajı silindi." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %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, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%s adli kullanicinin durum mesajlari" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. #, fuzzy, php-format -msgid "%1$s, page %2$d" -msgstr "%s ve arkadaşları" +msgid "Notices by %1$s, page %2$d" +msgstr "%s adli kullanicinin durum mesajlari" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5091,6 +5146,7 @@ msgid "Repeat of %s" msgstr "%s için cevaplar" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "" @@ -5394,52 +5450,67 @@ msgstr "" msgid "No code entered." msgstr "İçerik yok!" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" msgid "Snapshots" msgstr "" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Eposta adresi onayı" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "" +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Kaydet" - +#. TRANS: Title for button to save snapshot settings. #, fuzzy -msgid "Save snapshot settings" +msgid "Save snapshot settings." msgstr "Ayarlar" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5452,6 +5523,27 @@ msgstr "Bize o profili yollamadınız" msgid "Could not save subscription." msgstr "Yeni abonelik eklenemedi." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s grup üyeleri" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Bütün abonelikler" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Bu gruptaki kullanıcıların listesi." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. #, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." @@ -5565,33 +5657,45 @@ msgstr "" msgid "Notices tagged with %1$s, page %2$d" msgstr "%s adli kullanicinin durum mesajlari" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s için durum RSS beslemesi" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s için durum RSS beslemesi" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "%s için durum RSS beslemesi" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. #, fuzzy msgid "No ID argument." msgstr "Böyle bir belge yok." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "" +#. TRANS: Header for user details on "tag other users" page. #, fuzzy msgid "User profile" msgstr "Kullanıcının profili yok." +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Kullanıcıyı etiketle" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5600,13 +5704,22 @@ msgstr "" "Kendiniz için etiketler (harf, sayı, -. ., ve _ kullanılabilir), virgül veya " "boşlukla ayırabilirsiniz" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Etiketler" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Böyle bir etiket yok." @@ -5615,27 +5728,32 @@ msgstr "Böyle bir etiket yok." msgid "You haven't blocked that user." msgstr "Zaten giriş yapmış durumdasıznız!" +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. #, fuzzy msgid "User is not sandboxed." msgstr "Kullanıcının profili yok." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. #, fuzzy msgid "User is not silenced." msgstr "Kullanıcının profili yok." -#, fuzzy -msgid "No profile ID in request." -msgstr "Yetkilendirme isteği yok!" - +#. TRANS: Page title for page to unsubscribe. #, fuzzy msgid "Unsubscribed" msgstr "Aboneliği sonlandır" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Profil ayarları" @@ -5650,9 +5768,11 @@ msgstr "" msgid " (free service)" msgstr "" +#. TRANS: Default value for URL shortening settings. msgid "[none]" msgstr "" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5664,15 +5784,19 @@ msgstr "Bağlantıları şununla kısalt" msgid "Automatic shortening service to use." msgstr "Kullanılacak otomatik kısaltma servisi." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5682,13 +5806,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Geçersiz büyüklük." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Geçersiz büyüklük." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5772,7 +5900,7 @@ msgstr "Profil ayarları" msgid "Authorize subscription" msgstr "Takip isteğini onayla" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5785,6 +5913,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" @@ -5797,6 +5926,7 @@ msgstr "Bize o profili yollamadınız" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5815,9 +5945,10 @@ msgstr "Yetkilendirme isteği yok!" msgid "Subscription authorized" msgstr "Takip talebine izin verildi" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" @@ -5825,9 +5956,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Abonelik reddedildi." +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" @@ -5855,14 +5987,6 @@ msgstr "" 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. -#, php-format -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. #, fuzzy, php-format @@ -6070,6 +6194,18 @@ msgstr[0] "" msgid "Invalid filename." msgstr "Geçersiz dosya ismi." +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Kullanıcıyı kaydetmede hata oluştu; geçersiz." + #. TRANS: Exception thrown when joining a group fails. #, fuzzy msgid "Group join failed." @@ -6085,18 +6221,6 @@ msgstr "Kullanıcı güncellenemedi." msgid "Group leave failed." msgstr "Böyle bir durum mesajı yok." -#. TRANS: Exception thrown providing an invalid profile ID. -#. TRANS: %s is the invalid profile ID. -#, php-format -msgid "Profile ID %s is invalid." -msgstr "" - -#. TRANS: Exception thrown providing an invalid group ID. -#. TRANS: %s is the invalid group ID. -#, fuzzy, php-format -msgid "Group ID %s is invalid." -msgstr "Kullanıcıyı kaydetmede hata oluştu; geçersiz." - #. TRANS: Activity title. #, fuzzy msgid "Join" @@ -6171,6 +6295,37 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "" +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Kendi durum mesajınızı tekrarlayamazsınız." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Kendi durum mesajınızı tekrarlayamazsınız." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Kendi durum mesajınızı tekrarlayamazsınız." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +#, fuzzy +msgid "You already repeated that notice." +msgstr "Zaten giriş yapmış durumdasıznız!" + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Kullanıcının profili yok." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6197,16 +6352,13 @@ msgstr "Profil kaydedilemedi." msgid "RT @%1$s %2$s" msgstr "" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s'in %2$s'deki durum mesajları " -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6257,9 +6409,11 @@ msgstr "Yeni abonelik eklenemedi." msgid "Could not delete subscription." msgstr "Yeni abonelik eklenemedi." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "İzin Ver" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6326,20 +6480,24 @@ msgstr "" #. TRANS: Link title for link on user profile. #, fuzzy -msgid "Edit profile settings" +msgid "Edit profile settings." msgstr "Profil ayarları" #. TRANS: Link text for link on user profile. +msgctxt "BUTTON" msgid "Edit" msgstr "" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" -msgstr "" +#, fuzzy +msgid "Send a direct message to this user." +msgstr "%s kullanıcısına özel mesaj" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" -msgstr "" +msgstr "Mesaj gönder" #. TRANS: Label text on user profile to select a user role. msgid "Moderate" @@ -6360,10 +6518,6 @@ msgctxt "role" msgid "Moderator" msgstr "" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Abone ol" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, fuzzy, php-format msgid "%1$s - %2$s" @@ -6620,6 +6774,10 @@ msgstr "Yeni durum mesajı" msgid "Snapshots configuration" msgstr "Eposta adresi onayı" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "" @@ -6775,6 +6933,10 @@ msgstr "" msgid "Cancel" msgstr "İptal et" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Kaydet" + msgid " by " msgstr "" @@ -6841,6 +7003,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Bütün abonelikler" + #. TRANS: Title for command results. msgid "Command results" msgstr "" @@ -6987,10 +7155,6 @@ msgstr "Kullanıcı ayarlamada hata oluştu." msgid "Notice from %s repeated." msgstr "Durum mesajları" -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Kullanıcı ayarlamada hata oluştu." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7728,6 +7892,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s %2$s'da durumunuzu takip ediyor" +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s %2$s'da durumunuzu takip ediyor" + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8150,8 +8328,9 @@ msgstr "Cevaplar" msgid "Delete this notice" msgstr "Bu durum mesajını sil" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. #, fuzzy -msgid "Notice repeated" +msgid "Notice repeated." msgstr "Durum mesajları" msgid "Update your status..." @@ -8446,28 +8625,77 @@ msgstr "Yeni durum mesajı" msgid "Silence this user" msgstr "Böyle bir kullanıcı yok." +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Abonelikler" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, fuzzy, php-format -msgid "People %s subscribes to" +msgid "People %s subscribes to." msgstr "Uzaktan abonelik" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Abone olanlar" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, fuzzy, php-format -msgid "People subscribed to %s" +msgid "People subscribed to %s." msgstr "Uzaktan abonelik" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" msgstr "" +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Gruplar" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." +msgstr "%2$s kullanıcısının üye olduğu %1$s grupları." + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" -msgstr "" +msgstr "Sadece davet" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, php-format -msgid "Invite friends and colleagues to join you on %s" +msgid "Invite friends and colleagues to join you on %s." msgstr "" msgid "Subscribe to this user" msgstr "Bize o profili yollamadınız" +msgid "Subscribe" +msgstr "Abone ol" + msgid "People Tagcloud as self-tagged" msgstr "" @@ -8577,6 +8805,27 @@ msgstr[0] "Bu durum mesajı zaten tekrarlanmış." msgid "Top posters" msgstr "" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +msgctxt "LABEL" +msgid "To:" +msgstr "" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Kullanıcının profili yok." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8694,6 +8943,24 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" +#~ msgid "Already repeated that notice." +#~ msgstr "Bu durum mesajı zaten tekrarlanmış." + #, fuzzy -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Bu çok uzun. Maksimum durum mesajı boyutu %d karakterdir." +#~ 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" + +#, fuzzy +#~ msgid "Describe yourself and your interests" +#~ msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi" + +#, fuzzy +#~ msgid "%1$s, page %2$d" +#~ msgstr "%s ve arkadaşları" + +#~ msgid "Error repeating notice." +#~ msgstr "Kullanıcı ayarlamada hata oluştu." diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 023349de16..4d5893c94a 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,21 +12,55 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:14+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Невідомо" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Дія невідома" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Погодитись" @@ -80,7 +114,9 @@ msgstr "Зберегти параметри доступу" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -92,6 +128,7 @@ msgstr "Зберегти" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Немає такої сторінки." @@ -110,6 +147,7 @@ msgstr "Немає такої сторінки." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -134,8 +172,11 @@ msgstr "Немає такої сторінки." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Такого користувача немає." @@ -148,7 +189,15 @@ msgstr "%1$s та друзі, сторінка %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s з друзями" @@ -218,28 +267,14 @@ msgstr "Ви з друзями" msgid "Updates from %1$s and friends on %2$s!" msgstr "Оновлення від %1$s та друзів на %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API метод не знайдено." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -274,6 +309,7 @@ msgstr "Не вдалося оновити користувача." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Користувач не має профілю." @@ -316,6 +352,8 @@ msgstr "Не маю можливості зберегти налаштуванн #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Не вдалося оновити ваш дизайн." @@ -696,9 +734,12 @@ msgstr "Токен запиту вже авторизовано." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" "Виникли певні проблеми з токеном поточної сесії. Спробуйте знов, будь ласка." @@ -854,16 +895,6 @@ msgstr "Ви не можете видалити статус іншого кор msgid "No such notice." msgstr "Такого допису немає." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Не можна повторювати власні дописи." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Цей допис вже повторено." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -905,8 +936,11 @@ msgstr "Вилучене повідомлення %d" msgid "Client must provide a 'status' parameter with a value." msgstr "Клієнт мусить надати параметр «статус» зі значенням." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -920,6 +954,8 @@ msgstr "Початковий допис не знайдено." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -996,6 +1032,8 @@ msgstr "Дописи %1$s, що вони були повторені %2$s / %3$s msgid "Repeats of %s" msgstr "Повторення %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "Дописи %1$s, які повторював %2$s / %3$s." @@ -1010,6 +1048,8 @@ msgstr "Дописи позначені з %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Оновлення позначені з %1$s на %2$s!" @@ -1113,56 +1153,94 @@ msgstr "Немає імені або ІД." #. TRANS: Client error displayed trying to approve group membership while not logged in. #. TRANS: Client error displayed when trying to leave a group while not logged in. -#, fuzzy msgid "Must be logged in." -msgstr "Не увійшли." +msgstr "Мусите увійти до системи." #. TRANS: Client error displayed trying to approve group membership while not a group administrator. #. TRANS: Client error displayed when trying to approve or cancel a group join request without #. TRANS: being a group administrator. msgid "Only group admin can approve or cancel join requests." msgstr "" +"Лише адміністратор спільноти має право затверджувати чи скасовувати " +"запрошення." #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. -#, fuzzy +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. msgid "Must specify a profile." -msgstr "Загублений профіль." +msgstr "Необхідно зазначити профіль." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "%s is not in the moderation queue for this group." -msgstr "Список учасників цієї спільноти." +msgstr "" +"%s відсутній у черзі тих, що очікують затвердження модератором цієї " +"спільноти." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." -msgstr "" +msgstr "Внутрішня помилка: не отримано ані «скасувати», ані «відмінити»" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." -msgstr "" +msgstr "Внутрішня помилка: отримано і «скасувати» і «відмінити»." #. TRANS: Server error displayed when cancelling a queued group join request fails. #. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed. -#, fuzzy, php-format +#, php-format msgid "Could not cancel request for user %1$s to join group %2$s." -msgstr "Не вдалось долучити користувача %1$s до спільноти %2$s." +msgstr "" +"Не вдалося скасувати запит для користувача %1$s приєднатися до групи %2$s." #. TRANS: Title for leave group page after group join request is approved/disapproved. #. TRANS: %1$s is the user nickname, %2$s is the group nickname. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s's request for %2$s" -msgstr "%1$s має статус на %2$s" +msgstr "Запит %1$s на вступ до %2$s" #. TRANS: Message on page for group admin after approving a join request. msgid "Join request approved." -msgstr "" +msgstr "Запит на приєднання до спільноти задовольнили." #. TRANS: Message on page for group admin after rejecting a join request. msgid "Join request canceled." +msgstr "Запит на приєднання до спільноти відхилено." + +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." msgstr "" +"%s відсутній у черзі тих, що очікують затвердження модератором цієї " +"спільноти." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "" +"Не вдалося скасувати запит для користувача %1$s приєднатися до групи %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Запит %1$s на вступ до %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Підписку авторизовано" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Авторизацію скасовано." #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. @@ -1199,8 +1277,8 @@ msgstr "Вже у списку обраних." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "Учасники спільноти %s" #. TRANS: Subtitle for group membership feed. @@ -1213,8 +1291,7 @@ msgstr "Спільноти, до яких залучений %1$s на %2$s" msgid "Cannot add someone else's membership." msgstr "Не вдається надати комусь членство." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "Можливою є лише обробка POST-запитів." @@ -1326,6 +1403,7 @@ msgstr "Ви можете завантажити аватару. Максима #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Користувач без відповідного профілю." @@ -1352,6 +1430,7 @@ msgstr "Перегляд" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Видалити" @@ -1471,6 +1550,7 @@ msgstr "Не блокувати цього користувача." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Так" @@ -1527,6 +1607,32 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s залишив спільноту %2$s" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Не увійшли." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "У запиті відсутній ID профілю." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Не визначено профілю з таким ID." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Відписано" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Немає коду підтвердження." @@ -1551,12 +1657,10 @@ msgstr "Цю адресу вже підтверджено." #. TRANS: Server error displayed when updating IM preferences fails. #. TRANS: Server error thrown on database error removing a registered IM address. -#, fuzzy msgid "Could not update user IM preferences." msgstr "Не вдалося оновити налаштування сервісу миттєвих повідомлень." #. TRANS: Server error displayed when adding IM preferences fails. -#, fuzzy msgid "Could not insert user IM preferences." msgstr "Не вдалося вставити налаштування сервісу миттєвих повідомлень." @@ -1586,10 +1690,9 @@ msgstr "Дописи" #. TRANS: Title for conversation page. #. TRANS: Title for page that shows a notice. -#, fuzzy msgctxt "TITLE" msgid "Notice" -msgstr "Дописи" +msgstr "Допис" #. TRANS: Client exception displayed trying to delete a user account while not logged in. msgid "Only logged-in users can delete their account." @@ -1666,6 +1769,7 @@ msgstr "Додаток не виявлено." msgid "You are not the owner of this application." msgstr "Ви не є власником цього додатку." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Виникли певні проблеми з токеном поточної сесії." @@ -1736,24 +1840,6 @@ msgstr "Не видаляти цю спільноту." msgid "Delete this group." msgstr "Видалити спільноту." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Не увійшли." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1940,14 +2026,17 @@ msgid "Use defaults" msgstr "За замовч." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." msgstr "Відновити стандартні установки." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "Повернутись до стандартних налаштувань." #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." msgstr "Зберегти дизайн." @@ -2276,6 +2365,7 @@ msgstr "Видалити з обраних." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Популярні дописи" @@ -2315,6 +2405,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Обрані дописи %s" @@ -2327,6 +2419,7 @@ msgstr "Оновлення обраних дописів %1$s на %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Користувачі варті уваги" @@ -2388,6 +2481,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Невідома версія протоколу OMB." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Помилка при оновленні віддаленого профілю." @@ -2425,14 +2519,6 @@ msgstr "Користувач вже має цю роль." msgid "No profile specified." msgstr "Не визначено жодного профілю." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Не визначено профілю з таким ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2563,24 +2649,27 @@ msgstr "Список учасників цієї спільноти." #. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. msgid "Only the group admin may approve users." -msgstr "" +msgstr "Лише адміністратор спільноти може затверджувати користувачів." #. TRANS: Title of the first page showing pending group members still awaiting approval to join the group. #. TRANS: %s is the name of the group. -#, fuzzy, php-format +#, php-format msgid "%s group members awaiting approval" -msgstr "Учасники спільноти %s" +msgstr "Користувачі, що очікують рішення щодо їхнього приєднання до %s" #. TRANS: Title of all but the first page showing pending group members still awaiting approval to join the group. #. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. -#, fuzzy, php-format +#, php-format msgid "%1$s group members awaiting approval, page %2$d" -msgstr "Учасники спільноти %1$s, сторінка %2$d" +msgstr "" +"Користувачі, що очікують рішення щодо їхнього приєднання до %1$s, сторінка %2" +"$d" #. TRANS: Page notice for group members page. -#, fuzzy msgid "A list of users awaiting approval to join this group." -msgstr "Список учасників цієї спільноти." +msgstr "" +"Список користувачів, що очікують рішення щодо їхнього приєднання до цієї " +"спільноти." #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. #, php-format @@ -2701,13 +2790,13 @@ msgstr "Поточна підтверджена %s адреса." #. TRANS: Form note in IM settings form. #. TRANS: %s is the IM service name, %2$s is the IM address set. -#, fuzzy, php-format +#, php-format msgid "" "Awaiting confirmation on this address. Check your %1$s account for a message " "with further instructions. (Did you add %2$s to your buddy list?)" msgstr "" -"Очікування підтвердження цієї адреси. Перевірте свій %s-акаунт, туди має " -"надійти повідомлення з подальшими інструкціями. (Ви додали %s до вашого " +"Очікування підтвердження цієї адреси. Перевірте свій %1$s-акаунт, туди має " +"надійти повідомлення з подальшими інструкціями. (Ви додали %2$s до вашого " "списку контактів?)" #. TRANS: Field label for IM address. @@ -2740,7 +2829,6 @@ msgid "Publish a MicroID" msgstr "Публікувати MicroID." #. TRANS: Server error thrown on database error updating IM preferences. -#, fuzzy msgid "Could not update IM preferences." msgstr "Не вдалося оновити налаштування сервісу миттєвих повідомлень." @@ -2758,14 +2846,12 @@ msgid "No transport." msgstr "Немає транспорту." #. TRANS: Message given saving IM address that cannot be normalised. -#, fuzzy msgid "Cannot normalize that screenname." -msgstr "Не можна впорядкувати цей псевдонім" +msgstr "Не можна впорядкувати цей псевдонім." #. TRANS: Message given saving IM address that not valid. -#, fuzzy msgid "Not a valid screenname." -msgstr "Це недійсне ім’я користувача" +msgstr "Це недійсне ім’я користувача." #. TRANS: Message given saving IM address that is already set for another user. msgid "Screenname already belongs to another user." @@ -2780,7 +2866,6 @@ msgid "That is the wrong IM address." msgstr "Це помилкова адреса IM." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#, fuzzy msgid "Could not delete confirmation." msgstr "Не вдалося видалити підтвердження." @@ -2996,9 +3081,8 @@ msgid "%1$s joined group %2$s" msgstr "%1$s приєднався до спільноти %2$s" #. TRANS: Exception thrown when there is an unknown error joining a group. -#, fuzzy msgid "Unknown error joining group." -msgstr "Невідома спільнота." +msgstr "Невідома помилка при приєднанні до спільноти." #. TRANS: Client error displayed when trying to join a group while already a member. #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. @@ -3051,6 +3135,7 @@ msgid "License selection" msgstr "Вибір ліцензії" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Приватно" @@ -3288,6 +3373,9 @@ msgid "Ajax Error" msgstr "Помилка в Ajax" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Новий допис" @@ -3569,9 +3657,8 @@ msgstr "Пароль має складатись з 6-ти або більше #. TRANS: Form validation error on password change when password confirmation does not match. #. TRANS: Form validation error displayed when trying to register with non-matching passwords. -#, fuzzy msgid "Passwords do not match." -msgstr "Паролі не співпадають." +msgstr "Паролі не збігаються." #. TRANS: Form validation error on page where to change password. msgid "Incorrect old password." @@ -3592,7 +3679,6 @@ msgid "Password saved." msgstr "Пароль збережено." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Шлях" @@ -3785,6 +3871,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Ніколи" @@ -3940,18 +4027,22 @@ 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). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" -msgstr[0] "Опишіть себе та свої інтереси вкладаючись у %d символ" -msgstr[1] "Опишіть себе та свої інтереси інтереси вкладаючись у %d символів" -msgstr[2] "Опишіть себе та свої інтереси інтереси вкладаючись у %d символів" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." +msgstr[0] "Опишіть себе та свої інтереси вкладаючись у %d символ." +msgstr[1] "Опишіть себе та свої інтереси інтереси вкладаючись у %d символів." +msgstr[2] "Опишіть себе та свої інтереси інтереси вкладаючись у %d символів." #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" -msgstr "Опишіть себе та свої інтереси" +#. TRANS: Text area title on account registration page. +msgid "Describe yourself and your interests." +msgstr "Опишіть себе та свої інтереси." -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3964,14 +4055,18 @@ msgid "Location" msgstr "Розташування" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Де ви живете, на кшталт «Місто, область (регіон), країна»" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Де ви живете, на кшталт «Місто, область (регіон), країна»." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" msgstr "Показувати моє місцезнаходження при надсиланні дописів" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Теґи" @@ -4005,6 +4100,28 @@ msgid "" msgstr "" "Автоматично підписуватись до тих, хто підписався до мене. (Слава роботам!)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Підписки" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "Можливе лише слідування людьми." + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4036,7 +4153,8 @@ msgstr "Неприпустимий теґ: «%s»." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -msgid "Could not update user for autosubscribe." +#, fuzzy +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Не вдалося оновити користувача для автопідписки." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4044,6 +4162,7 @@ msgid "Could not save location prefs." msgstr "Не вдалося зберегти преференції розташування." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Не вдалося зберегти теґи." @@ -4074,6 +4193,7 @@ msgid "Public timeline, page %d" msgstr "Загальна стрічка, сторінка %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Загальна стрічка" @@ -4255,10 +4375,6 @@ msgstr "Запит на відновлення паролю відправлен msgid "Password saved" msgstr "Пароль збережено" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Дія невідома" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "6 або більше знаків, і не забудьте їх!" @@ -4315,15 +4431,14 @@ msgid "New password successfully saved. You are now logged in." msgstr "Новий пароль успішно збережено. Тепер ви увійшли." #. TRANS: Client exception thrown when no ID parameter was provided. -#, fuzzy msgid "No id parameter." msgstr "Немає параметру ID." #. TRANS: Client exception thrown when an invalid ID parameter was provided for a file. #. TRANS: %d is the provided ID for which the file is not present (number). -#, fuzzy, php-format +#, php-format msgid "No such file \"%d\"." -msgstr "Немає такого файлу «%d»" +msgstr "Немає такого файлу «%d»." #. TRANS: Client error displayed when trying to register to an invite-only site without an invitation. msgid "Sorry, only invited people can register." @@ -4339,7 +4454,6 @@ msgid "Registration successful" msgstr "Реєстрація успішна" #. TRANS: Title for registration page. -#, fuzzy msgctxt "TITLE" msgid "Register" msgstr "Реєстрація" @@ -4349,10 +4463,10 @@ msgid "Registration not allowed." msgstr "Реєстрацію не дозволено." #. TRANS: Form validation error displayed when trying to register without agreeing to the site license. -#, fuzzy msgid "You cannot register if you do not agree to the license." msgstr "Ви не можете зареєструватись, якщо не погодитесь з умовами ліцензії." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Ця адреса вже використовується." @@ -4369,13 +4483,11 @@ msgstr "" "будете в курсі справ ваших друзів та колег." #. TRANS: Field label on account registration page. In this field the password has to be entered a second time. -#, fuzzy msgctxt "PASSWORD" msgid "Confirm" msgstr "Підтвердити" #. TRANS: Field label on account registration page. -#, fuzzy msgctxt "LABEL" msgid "Email" msgstr "Пошта" @@ -4388,27 +4500,7 @@ msgstr "Використовується лише для оновлень, ог msgid "Longer name, preferably your \"real\" name." msgstr "Повне ім’я, бажано ваше справжнє ім’я." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, 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 символ" -msgstr[1] "Опишіть себе та свої інтереси інтереси вкладаючись у %d символів" -msgstr[2] "Опишіть себе та свої інтереси інтереси вкладаючись у %d символів" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Опишіть себе та свої інтереси" - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Де ви живете, на кшталт «Місто, область (регіон), країна»." - -#. TRANS: Field label on account registration page. -#, fuzzy +#. TRANS: Button text to register a user on account registration page. msgctxt "BUTTON" msgid "Register" msgstr "Реєстрація" @@ -4524,7 +4616,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "URL-адреса вашого профілю на іншому сумісному сервісі мікроблоґів." #. TRANS: Button text on page for remote subscribe. -#, fuzzy +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. msgctxt "BUTTON" msgid "Subscribe" msgstr "Підписатись" @@ -4556,15 +4649,8 @@ msgstr "Лише користувачі, що знаходяться у сист msgid "No notice specified." msgstr "Зазначеного допису немає." -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "Ви не можете повторювати власні дописи." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Ви вже повторили цей допис." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Повторено" @@ -4575,6 +4661,8 @@ msgstr "Повторено!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Відповіді до %s" @@ -4688,6 +4776,7 @@ msgid "System error uploading file." msgstr "Система відповіла помилкою при завантаженні цього файла." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." msgstr "Ця стрічка не у форматі Atom." @@ -4721,7 +4810,6 @@ msgid "You cannot revoke user roles on this site." msgstr "Ви не можете позбавляти користувачів ролей на цьому сайті." #. TRANS: Client error displayed when trying to revoke a role that is not set. -#, fuzzy msgid "User does not have this role." msgstr "Користувач не має цієї ролі." @@ -4731,6 +4819,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Ви не можете нікого ізолювати на цьому сайті." @@ -4739,7 +4828,6 @@ msgid "User is already sandboxed." msgstr "Користувача ізольовано доки набереться уму-розуму." #. TRANS: Title for the sessions administration panel. -#, fuzzy msgctxt "TITLE" msgid "Sessions" msgstr "Сесії" @@ -4749,7 +4837,6 @@ msgid "Session settings for this StatusNet site" msgstr "Налаштування сесії для даного сайту StatusNet" #. TRANS: Fieldset legend on the sessions administration panel. -#, fuzzy msgctxt "LEGEND" msgid "Sessions" msgstr "Сесії" @@ -4761,7 +4848,6 @@ msgstr "Сесії обробки даних" #. TRANS: Checkbox title on the sessions administration panel. #. TRANS: Indicates if StatusNet should handle session administration. -#, fuzzy msgid "Handle sessions ourselves." msgstr "Обробка даних сесій самостійно." @@ -4771,14 +4857,12 @@ msgid "Session debugging" msgstr "Сесія наладки" #. TRANS: Checkbox title on the sessions administration panel. -#, fuzzy msgid "Enable debugging output for sessions." msgstr "Виводити дані сесії наладки." #. TRANS: Title for submit button on the sessions administration panel. -#, fuzzy msgid "Save session settings" -msgstr "Зберегти параметри доступу" +msgstr "Зберегти параметри сесії" #. TRANS: Client error displayed trying to display an OAuth application while not logged in. msgid "You must be logged in to view an application." @@ -4791,10 +4875,10 @@ msgstr "Профіль додатку" #. TRANS: Information output on an OAuth application page. #. TRANS: %1$s is the application creator, %2$s is "read-only" or "read-write", #. TRANS: %3$d is the number of users using the OAuth application. -#, fuzzy, php-format +#, php-format msgid "Created by %1$s - %2$s access by default - %3$d user" msgid_plural "Created by %1$s - %2$s access by default - %3$d users" -msgstr[0] "Створено %1$s — %2$s доступ за замовч. — %3$d користувачів" +msgstr[0] "Створено %1$s — %2$s доступ за замовч. — %3$d користувач" msgstr[1] "Створено %1$s — %2$s доступ за замовч. — %3$d користувачів" msgstr[2] "Створено %1$s — %2$s доступ за замовч. — %3$d користувачів" @@ -4803,10 +4887,9 @@ msgid "Application actions" msgstr "Можливості додатку" #. TRANS: Link text to edit application on the OAuth application page. -#, fuzzy msgctxt "EDITAPP" msgid "Edit" -msgstr "Правка" +msgstr "Змінити" #. TRANS: Button text on the OAuth application page. #. TRANS: Resets the OAuth consumer key and secret. @@ -4818,12 +4901,11 @@ msgid "Application info" msgstr "Інфо додатку" #. TRANS: Note on the OAuth application page about signature support. -#, fuzzy msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " "not supported." msgstr "" -"До уваги: Всі підписи шифруються за методом HMAC-SHA1. Ми не підтримуємо " +"До уваги: всі підписи шифруються за методом HMAC-SHA1. Ми не підтримуємо " "шифрування підписів відкритим текстом." #. TRANS: Text in confirmation dialog to reset consumer key and secret for an OAuth application. @@ -4930,6 +5012,8 @@ msgstr "Учасники" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Пусто)" @@ -4987,7 +5071,6 @@ msgstr "" "спільноти роблять короткі дописи про своє життя та інтереси. " #. TRANS: Title for list of group administrators on a group page. -#, fuzzy msgctxt "TITLE" msgid "Admins" msgstr "Адміни" @@ -5012,27 +5095,32 @@ msgstr "Повідомлення до %1$s на %2$s" msgid "Message from %1$s on %2$s" msgstr "Повідомлення від %1$s на %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "ІМ недоступний" + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Допис видалено." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" +#, fuzzy, php-format +msgid "Notices by %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, %3$d is the page number. -#, php-format -msgid "%1$s tagged %2$s, page %3$d" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Дописи %1$s позначені теґом %2$s, сторінка %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, сторінка %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Дописи з теґом %1$s, сторінка %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5120,6 +5208,7 @@ msgid "Repeat of %s" msgstr "Повторення за %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Ви не можете позбавляти користувачів права голосу на цьому сайті." @@ -5128,7 +5217,6 @@ msgid "User is already silenced." msgstr "Користувачу наразі заклеїли рота скотчем." #. TRANS: Title for site administration panel. -#, fuzzy msgctxt "TITLE" msgid "Site" msgstr "Сайт" @@ -5162,19 +5250,16 @@ msgstr "" "становити одну і більше секунд." #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "General" msgstr "Основні" #. TRANS: Field label on site settings panel. -#, fuzzy msgctxt "LABEL" msgid "Site name" msgstr "Назва сайту" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "The name of your site, like \"Yourcompany Microblog\"." msgstr "Назва сайту, щось на зразок «Мікроблоґи компанії...»" @@ -5183,30 +5268,26 @@ msgid "Brought by" msgstr "Надано" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "Text used for credits link in footer of each page." -msgstr "Текст використаний для посілань кредитів унизу кожної сторінки" +msgstr "Текст використаний для посилань кредитів унизу кожної сторінки." #. TRANS: Field label on site settings panel. msgid "Brought by URL" msgstr "Наданий URL" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "URL used for credits link in footer of each page." -msgstr "URL використаний для посілань кредитів унизу кожної сторінки" +msgstr "URL використаний для посилань кредитів унизу кожної сторінки." #. TRANS: Field label on site settings panel. msgid "Email" msgstr "Пошта" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "Contact email address for your site." -msgstr "Контактна електронна адреса для вашого сайту" +msgstr "Контактна електронна адреса для вашого сайту." #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Local" msgstr "Локаль" @@ -5230,7 +5311,6 @@ msgstr "" "доступно" #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Limits" msgstr "Обмеження" @@ -5378,9 +5458,8 @@ msgid "That is the wrong confirmation number." msgstr "Це помилковий код підтвердження." #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#, fuzzy msgid "Could not delete SMS confirmation." -msgstr "Не вдалося видалити підтвердження." +msgstr "Не вдалося видалити підтвердження по смс." #. TRANS: Message given after successfully canceling SMS phone number confirmation. msgid "SMS confirmation cancelled." @@ -5418,51 +5497,72 @@ msgstr "" msgid "No code entered." msgstr "Код не введено." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Снепшоти" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Керування конфігурацією знімку" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Помилкове значення снепшоту." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "Частота повторення снепшотів має містити цифру." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "Помилковий снепшот URL." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Снепшоти" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Випадково під час веб-звернення" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "Згідно плану робіт" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Снепшоти даних" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Коли надсилати статистичні дані до серверів status.net" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Частота" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Снепшоти надсилатимуться раз на N веб-хітів" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "Звітня URL-адреса" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Снепшоти надсилатимуться на цю URL-адресу" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Зберегти" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Зберегти налаштування знімку" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5474,6 +5574,31 @@ msgstr "Ви не підписані до цього профілю." msgid "Could not save subscription." msgstr "Не вдалося зберегти підписку." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "Користувачі, що очікують рішення щодо їхнього приєднання до %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "" +"Користувачі, що очікують рішення щодо їхнього приєднання до %1$s, сторінка %2" +"$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "" +"Список користувачів, що очікують рішення щодо їхнього приєднання до цієї " +"спільноти." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "Цією дією ви не зможете підписатися до віддаленого профілю OMB 0.1." @@ -5595,48 +5720,68 @@ msgstr "СМС" msgid "Notices tagged with %1$s, page %2$d" msgstr "Дописи з теґом %1$s, сторінка %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Стрічка дописів для теґу %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Стрічка дописів для теґу %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Стрічка дописів для теґу %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Немає ID аргументу." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Позначити %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Профіль користувача." +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Позначити користувача" -#, fuzzy +#. TRANS: Title for input field for inputting tags on "tag other users" page. msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " "spaces." msgstr "" "Позначити користувача теґами (літери, цифри, -, . та _), відокремлюючи кожен " -"комою або пробілом" +"комою або пробілом." +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Ви маєте можливість позначати теґами тих, до кого ви підписані, а також тих, " "хто є підписаним до вас." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Теґи" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "Скористайтесь цією формою, щоб додати теґи своїм підпискам та читачам." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Такого теґу немає." @@ -5644,23 +5789,29 @@ msgstr "Такого теґу немає." msgid "You haven't blocked that user." msgstr "Цього користувача блокувати неможливо." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Користувач не у пісочниці." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Користувач поки що має право голосу." -msgid "No profile ID in request." -msgstr "У запиті відсутній ID профілю." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Відписано" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -msgstr "Ліцензія «%1$s» не відповідає ліцензії сайту «%2$s»." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "Ліцензія потоку «%1$s» є несумісною з ліцензією сайту «%2$s»." +#. TRANS: Title of URL settings tab in profile settings. msgid "URL settings" msgstr "Налаштування URL" @@ -5674,9 +5825,11 @@ msgstr "Керування деякими іншими опціями." msgid " (free service)" msgstr " (вільний сервіс)" +#. TRANS: Default value for URL shortening settings. msgid "[none]" msgstr "[пусто]" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "[внутрішній]" @@ -5688,17 +5841,21 @@ msgstr "Скорочення URL" msgid "Automatic shortening service to use." msgstr "Доступні сервіси." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "URL-адреса, довша за" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" "URL-адреси, довші за це значення, будуть скорочуватись (0 — завжди " "скорочувати)." +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "Текст, довший за" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5709,16 +5866,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Сервіс скорочення URL-адрес надто довгий (50 символів максимум)." -msgid "Invalid number for max url length." +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum URL length." msgstr "Невірне значення параметру максимальної довжини URL-адреси." -msgid "Invalid number for max notice length." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." msgstr "Невірне значення параметру максимальної довжини допису." +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "Помилка при збереженні налаштувань сервісу скорочення URL-адрес." -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Користувач" @@ -5741,6 +5903,9 @@ msgstr "Помилковий текст привітання. Максималь msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Помилкова підписка за замовчуванням: «%1$s» не є користувачем." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Профіль" @@ -5793,7 +5958,7 @@ msgstr "Зберегти налаштування користувача." msgid "Authorize subscription" msgstr "Авторизувати підписку" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5805,16 +5970,19 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "Погодитись" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. msgid "Subscribe to this user." msgstr "Підписатися до цього користувача." #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "Відхилити" @@ -5831,9 +5999,10 @@ msgstr "Немає запиту на авторизацію!" msgid "Subscription authorized" msgstr "Підписку авторизовано" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "Підписку було авторизовано, але URL-адреса у відповідь не передавалася. " @@ -5844,9 +6013,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Підписку скинуто" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "Підписку було скинуто, але URL-адреса у відповідь не передавалася. Звіртесь " @@ -5877,14 +6047,6 @@ msgstr "URI слухача «%s» — це локальний користува msgid "Profile URL \"%s\" is for a local user." msgstr "URL-адреса профілю «%s» для локального користувача." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "Ліцензія потоку «%1$s» є несумісною з ліцензією сайту «%2$s»." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, php-format @@ -5990,7 +6152,6 @@ msgid "Contributors" msgstr "Розробники" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Ліцензія" @@ -6029,30 +6190,25 @@ msgstr "" "General Public License. Якщо ні, перейдіть на %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Додатки" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Name" msgstr "Ім’я" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Version" msgstr "Версія" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Author(s)" msgstr "Автор(и)" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Description" msgstr "Опис" @@ -6118,18 +6274,6 @@ msgstr[2] "Розміри цього файлу перевищують вашу msgid "Invalid filename." msgstr "Невірне ім’я файлу." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Не вдалося приєднатися до спільноти." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Не є частиною спільноти." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Не вдалося залишити спільноту." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6142,6 +6286,18 @@ msgstr "Ід. номер профілю %s не є дійсним." msgid "Group ID %s is invalid." msgstr "Ідентифікатор спільноти %s є недійсним." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Не вдалося приєднатися до спільноти." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Не є частиною спільноти." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Не вдалося залишити спільноту." + #. TRANS: Activity title. msgid "Join" msgstr "Приєднатись" @@ -6216,6 +6372,35 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Вам заборонено надсилати дописи до цього сайту." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Не можна повторювати власні дописи." + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "Ви не можете повторювати власні дописи." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Не можна повторювати власні дописи." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Не можна повторювати власні дописи." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Ви вже повторили цей допис." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Користувач не має останнього допису." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6241,16 +6426,13 @@ msgstr "Не вдалося зберегти відповідь для %1$d, %2$ msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6273,6 +6455,7 @@ msgid "Unable to save tag." msgstr "Не вдається зберегти теґ." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Вас позбавлено можливості підписатись." @@ -6300,7 +6483,9 @@ msgstr "Не вдається видалити токен підписки OMB." msgid "Could not delete subscription." msgstr "Не вдалося видалити підписку." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Слідкувати" @@ -6368,18 +6553,24 @@ msgid "User deletion in progress..." msgstr "Видалення користувача у процесі..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Налаштування профілю" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Правка" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Надіслати пряме повідомлення цьому користувачеві" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Повідомлення" @@ -6401,10 +6592,6 @@ msgctxt "role" msgid "Moderator" msgstr "Модератор" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Підписатись" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6429,6 +6616,9 @@ msgstr "Відповісти" msgid "Write a reply..." msgstr "Пише відповідь..." +#. TRANS: Tab on the notice form. +#, fuzzy +msgctxt "TAB" msgid "Status" msgstr "Статус" @@ -6547,8 +6737,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Допис %s не має змісту." -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "Користувача %s немає." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6595,75 +6786,124 @@ msgstr "saveSettings() не виконано." msgid "Unable to delete design setting." msgstr "Немає можливості видалити налаштування дизайну." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Веб-сторінка" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Веб-сторінка" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Адмін" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Основна конфігурація сайту" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Сайт" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Конфігурація дизайну" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Дизайн" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Конфігурація користувача" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "User" msgstr "Користувач" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Прийняти конфігурацію" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Access" +msgstr "Погодитись" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Конфігурація шляху" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Paths" +msgstr "Шлях" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Конфігурація сесій" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "Sessions" msgstr "Сесії" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Редагувати повідомлення сайту" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Об’яви на сайті" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Конфігурація знімків" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Snapshots" +msgstr "Снепшоти" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Зазначте ліцензію сайту" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Ліцензія" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Plugins configuration" msgstr "Налаштування додатків" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Додатки" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6674,6 +6914,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "Немає додатків для даного споживчого ключа." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "Не дозволяється використовувати API." @@ -6707,9 +6948,11 @@ msgstr "Не вдалося знайти профіль і додаток, по msgid "Could not issue access token." msgstr "Не вдалося видати токен доступу." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Помилка бази даних при додаванні користувача OAuth-додатку." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "Помилка бази даних при додаванні користувача OAuth-додатку." @@ -6804,6 +7047,17 @@ msgstr "" msgid "Cancel" msgstr "Скасувати" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Зберегти" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Дія невідома" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr " від " @@ -6826,11 +7080,12 @@ msgstr "Підтверджено доступ %1$s — «%2$s»." msgid "Access token starting with: %s" msgstr "Токен доступу починається з: %s" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Відкликати" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "Елемент author повинен містити елемент name." @@ -6865,7 +7120,13 @@ msgstr "Блокувати користувача" #. TRANS: Submit button text on form to cancel group join request. msgctxt "BUTTON" msgid "Cancel join request" -msgstr "" +msgstr "Запит на приєднання скасовано" + +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Запит на приєднання скасовано" #. TRANS: Title for command results. msgid "Command results" @@ -6876,6 +7137,7 @@ msgid "AJAX error" msgstr "Помилка AJAX" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Команду виконано" @@ -6995,6 +7257,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7022,10 +7286,6 @@ msgstr "Помилка при відправці прямого повідомл msgid "Notice from %s repeated." msgstr "Допису від %s вторували." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Помилка при повторенні допису." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7153,152 +7413,140 @@ msgstr[1] "Ви є учасником таких спільнот:" msgstr[2] "Ви є учасником таких спільнот:" #. TRANS: Header line of help text for commands. -#, fuzzy msgctxt "COMMANDHELP" msgid "Commands:" -msgstr "Результати команди" +msgstr "Команди:" #. TRANS: Help message for IM/SMS command "on" -#, fuzzy msgctxt "COMMANDHELP" msgid "turn on notifications" -msgstr "Не можна увімкнути сповіщення." +msgstr "увімкнути сповіщення" #. TRANS: Help message for IM/SMS command "off" -#, fuzzy msgctxt "COMMANDHELP" msgid "turn off notifications" -msgstr "Не можна вимкнути сповіщення." +msgstr "вимкнути сповіщення" #. TRANS: Help message for IM/SMS command "help" msgctxt "COMMANDHELP" msgid "show this help" -msgstr "" +msgstr "показати довідку" #. TRANS: Help message for IM/SMS command "follow " -#, fuzzy msgctxt "COMMANDHELP" msgid "subscribe to user" -msgstr "Підписатись до цього користувача" +msgstr "підписатись до користувача" #. TRANS: Help message for IM/SMS command "groups" msgctxt "COMMANDHELP" msgid "lists the groups you have joined" -msgstr "" +msgstr "список спільнот, до яких ви приєдналися" #. TRANS: Help message for IM/SMS command "subscriptions" msgctxt "COMMANDHELP" msgid "list the people you follow" -msgstr "" +msgstr "список користувачів, до яких ви підписалися" #. TRANS: Help message for IM/SMS command "subscribers" msgctxt "COMMANDHELP" msgid "list the people that follow you" -msgstr "" +msgstr "список користувачів, що підписані до вас" #. TRANS: Help message for IM/SMS command "leave " -#, fuzzy msgctxt "COMMANDHELP" msgid "unsubscribe from user" -msgstr "Відписатись від цього користувача" +msgstr "відписатися від користувача" #. TRANS: Help message for IM/SMS command "d " -#, fuzzy msgctxt "COMMANDHELP" msgid "direct message to user" -msgstr "Пряме повідомлення до %s" +msgstr "пряме повідомлення користувачеві" #. TRANS: Help message for IM/SMS command "get " msgctxt "COMMANDHELP" msgid "get last notice from user" -msgstr "" +msgstr "отримати останній допис користувача" #. TRANS: Help message for IM/SMS command "whois " -#, fuzzy msgctxt "COMMANDHELP" msgid "get profile info on user" -msgstr "Віддалений профіль не є спільнотою!" +msgstr "отримати інформацію про профіль користувача" #. TRANS: Help message for IM/SMS command "lose " msgctxt "COMMANDHELP" msgid "force user to stop following you" -msgstr "" +msgstr "заборонити слідкувати за вашими дописами" #. TRANS: Help message for IM/SMS command "fav " msgctxt "COMMANDHELP" msgid "add user's last notice as a 'fave'" -msgstr "" +msgstr "додати останній допис користувача до свого списку обраних дописів" #. TRANS: Help message for IM/SMS command "fav #" msgctxt "COMMANDHELP" msgid "add notice with the given id as a 'fave'" -msgstr "" +msgstr "додати допис із зазначеним id-номером до списку обраних дописів" #. TRANS: Help message for IM/SMS command "repeat #" msgctxt "COMMANDHELP" msgid "repeat a notice with a given id" -msgstr "" +msgstr "повторити допис із зазначеним id-номером" #. TRANS: Help message for IM/SMS command "repeat " -#, fuzzy msgctxt "COMMANDHELP" msgid "repeat the last notice from user" -msgstr "Повторити цей допис" +msgstr "повторити останній допис користувача" #. TRANS: Help message for IM/SMS command "reply #" msgctxt "COMMANDHELP" msgid "reply to notice with a given id" -msgstr "" +msgstr "відповісти на допис із зазначеним id-номером" #. TRANS: Help message for IM/SMS command "reply " -#, fuzzy msgctxt "COMMANDHELP" msgid "reply to the last notice from user" -msgstr "Відповісти на цей допис" +msgstr "відповісти на останній допис користувача" #. TRANS: Help message for IM/SMS command "join " -#, fuzzy msgctxt "COMMANDHELP" msgid "join group" -msgstr "Невідома спільнота." +msgstr "приєднатися до спільноти" #. TRANS: Help message for IM/SMS command "login" msgctxt "COMMANDHELP" msgid "Get a link to login to the web interface" -msgstr "" +msgstr "Отримати посилання для входу на веб-сторінку" #. TRANS: Help message for IM/SMS command "drop " -#, fuzzy msgctxt "COMMANDHELP" msgid "leave group" -msgstr "Видалити спільноту" +msgstr "залишити спільноту" #. TRANS: Help message for IM/SMS command "stats" -#, fuzzy msgctxt "COMMANDHELP" msgid "get your stats" -msgstr "Оновити свій статус..." +msgstr "отримати свою статистику" #. TRANS: Help message for IM/SMS command "stop" #. TRANS: Help message for IM/SMS command "quit" msgctxt "COMMANDHELP" msgid "same as 'off'" -msgstr "" +msgstr "те ж саме, що й «off»" #. TRANS: Help message for IM/SMS command "sub " msgctxt "COMMANDHELP" msgid "same as 'follow'" -msgstr "" +msgstr "те ж саме, що й «follow»" #. TRANS: Help message for IM/SMS command "unsub " msgctxt "COMMANDHELP" msgid "same as 'leave'" -msgstr "" +msgstr "те ж саме, що й «leave»" #. TRANS: Help message for IM/SMS command "last " msgctxt "COMMANDHELP" msgid "same as 'get'" -msgstr "" +msgstr "те ж саме, що й «get»" #. TRANS: Help message for IM/SMS command "on " #. TRANS: Help message for IM/SMS command "off " @@ -7309,15 +7557,14 @@ msgstr "" #. TRANS: Help message for IM/SMS command "untrack all" #. TRANS: Help message for IM/SMS command "tracks" #. TRANS: Help message for IM/SMS command "tracking" -#, fuzzy msgctxt "COMMANDHELP" msgid "not yet implemented." -msgstr "Виконання команди ще не завершено." +msgstr "ще не запроваджено." #. TRANS: Help message for IM/SMS command "nudge " msgctxt "COMMANDHELP" msgid "remind a user to update." -msgstr "" +msgstr "нагадати користувачеві, аби щось написав" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. msgid "No configuration file found." @@ -7337,13 +7584,19 @@ msgstr "Запустіть файл інсталяції, аби полагод msgid "Go to the installer." msgstr "Іти до файлу інсталяції." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Помилка бази даних" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Загал" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Видалити" @@ -7351,6 +7604,7 @@ msgstr "Видалити" msgid "Delete this user" msgstr "Видалити цього користувача" +#. TRANS: Form legend of form for changing the page design. msgid "Change design" msgstr "Змінити дизайн" @@ -7362,14 +7616,6 @@ msgstr "Змінити кольори" msgid "Use defaults" msgstr "За замовч." -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Оновити налаштування за замовчуванням" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Повернутись до початкових налаштувань" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7377,9 +7623,10 @@ msgstr "Завантажити файл" #. TRANS: Instructions for form on profile design page. msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" -"Ви можете завантажити власне фонове зображення. Максимум становить 2Мб." +"Ви можете завантажити власне фонове зображення. Максимальний розмір файлу " +"становить 2Мб." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. msgctxt "RADIO" @@ -7391,15 +7638,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Вимк." -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "Не вдалося оновити дизайн." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Дизайн за замовчуванням відновлено." @@ -7429,46 +7667,62 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Обрати" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -msgid "Not an atom feed." -msgstr "Не є стрічкою у форматі Atom." - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "Немає автора в цій стрічці." -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +#, fuzzy +msgid "Cannot import without a user." msgstr "Неможливо імпортувати без користувача." #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Веб-стрічки" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Всі" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Оберіть фільтр теґів" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Теґ" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Оберіть теґ до звуженого списку" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Вперед" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Надати цьому користувачеві роль «%s»" @@ -7488,9 +7742,8 @@ msgid "URL of the homepage or blog of the group or topic." msgstr "URL-адреса веб-сторінки або тематичного блоґу спільноти" #. TRANS: Text area title for group description when there is no text limit. -#, fuzzy msgid "Describe the group or topic." -msgstr "Опишіть спільноту або тему" +msgstr "Опишіть спільноту або тему." #. TRANS: Text area title for group description. #. TRANS: %d is the number of characters available for the description. @@ -7531,22 +7784,24 @@ msgstr[2] "" "— %d імен." #. TRANS: Dropdown fieldd label on group edit form. -#, fuzzy msgid "Membership policy" -msgstr "Реєстрація" +msgstr "Політика щодо членства" +#. TRANS: Group membership policy option. msgid "Open to all" -msgstr "" +msgstr "Відкрито для всіх" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" -msgstr "" +msgstr "Адміністратор має схвалити кандидатури всіх членів" #. TRANS: Dropdown field title on group edit form. msgid "Whether admin approval is required to join this group." msgstr "" +"Приєднатися до спільноти стане можливим, як тільки з’явиться підтвердження " +"адміністратора" #. TRANS: Indicator in group members list that this user is a group administrator. -#, fuzzy msgctxt "GROUPADMIN" msgid "Admin" msgstr "Адмін" @@ -7581,16 +7836,16 @@ msgstr "Учасники спільноти %s" msgctxt "MENU" msgid "Pending members (%d)" msgid_plural "Pending members (%d)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "В очікуванні учасників (%d)" +msgstr[1] "В очікуванні учасників (%d)" +msgstr[2] "В очікуванні учасників (%d)" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "%s pending members" -msgstr "Учасники спільноти %s" +msgstr "Очікують підтвердження в %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. msgctxt "MENU" @@ -7605,6 +7860,7 @@ msgid "%s blocked users" msgstr "Заблоковані користувачі %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Адмін" @@ -7708,28 +7964,51 @@ msgstr[0] "%d б" msgstr[1] "%d б" msgstr[2] "%d б" -#, php-format +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. +#, fuzzy, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" -"Користувач «%s» на сайті %s повідомив, що псевдонім %s належить йому. Якщо це " -"дійсно так, ви можете підтвердити це просто перейшовши за наступною ланкою: %" -"s. (Якщо ви не можете натиснути на посилання, то скопіюйте адресу до " -"адресного рядка вашого веб-оглядача.) Якщо ви не є згаданим користувачем, не " -"підтверджуйте нічого, просто проігноруйте це повідомлення." +"Користувач «%1$s» на сайті %s повідомив, що псевдонім %2$s належить йому. " +"Якщо це дійсно так, ви можете підтвердити це просто перейшовши за наступною " +"ланкою: %s. (Якщо ви не можете натиснути на посилання, то скопіюйте адресу " +"до адресного рядка вашого веб-оглядача.) Якщо ви не є згаданим користувачем, " +"не підтверджуйте нічого, просто проігноруйте це повідомлення." +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Невідоме джерело вхідного повідомлення %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Приєднатись" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Залишити" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Увійти" @@ -7790,10 +8069,26 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s тепер слідкує за вашими дописами на %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s тепер слідкує за вашими дописами на %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" +"%1$s має бажання долучитися до вашої спільноти %2$s на %3$s. Ви можете " +"прийняти або відхилити цей запит тут %4$s" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. -#, fuzzy, php-format +#, php-format msgid "" "Faithfully yours,\n" "%1$s.\n" @@ -7801,22 +8096,17 @@ msgid "" "----\n" "Change your email address or notification options at %2$s" msgstr "" -"%1$s тепер слідкує за вашими дописами на %2$s.\n" -"\n" -"%3$s\n" -"\n" -"%4$s%5$s%6$s\n" "Щиро ваші,\n" -"%2$s.\n" +"%1$s.\n" "\n" "----\n" -"Змінити електронну адресу або умови сповіщення — %7$s\n" +"Змінити електронну адресу або умови сповіщення — %2$s" #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Profile: %s" -msgstr "Профіль" +msgstr "Профіль: %s" #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is biographical information. @@ -7826,14 +8116,14 @@ msgstr "Про себе: %s" #. TRANS: This is a paragraph in a new-subscriber e-mail. #. TRANS: %s is a URL where the subscriber can be reported as abusive. -#, fuzzy, php-format +#, php-format msgid "" "If you believe this account is being used abusively, you can block them from " "your subscribers list and report as spam to site administrators at %s." msgstr "" "Якщо ви вважаєте, що цей акаунт використовується неправомірно, ви можете " "заблокувати його у списку своїх читачів і повідомити адміністраторів сайту " -"про факт спаму на %s" +"про факт спаму на %s." #. TRANS: Subject of notification mail for new posting email address. #. TRANS: %s is the StatusNet sitename. @@ -7844,7 +8134,7 @@ msgstr "Нова електронна адреса для надсилання #. TRANS: Body of notification mail for new posting email address. #. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send #. TRANS: to to post by e-mail, %3$s is a URL to more instructions. -#, fuzzy, php-format +#, php-format msgid "" "You have a new posting address on %1$s.\n" "\n" @@ -7856,10 +8146,7 @@ msgstr "" "\n" "Надсилайте листи на адресу %2$s, і ваші повідомлення будуть опубліковані.\n" "\n" -"Більше інформації про використання електронної пошти — %3$s.\n" -"\n" -"Щиро ваші,\n" -"%1$s" +"Більше інформації про використання електронної пошти — %3$s." #. TRANS: Subject line for SMS-by-email notification messages. #. TRANS: %s is the posting user's nickname. @@ -7888,7 +8175,7 @@ msgstr "Вас спробував «розштовхати» %s" #. TRANS: Body for 'nudge' notification email. #. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname, #. TRANS: %3$s is a URL to post notices at. -#, fuzzy, php-format +#, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " "to post some news.\n" @@ -7899,17 +8186,14 @@ msgid "" "\n" "Don't reply to this email; it won't get to them." msgstr "" -"%1$s (%2$s) цікавиться як ваші справи останнім часом і пропонує про це " -"написати.\n" +"%1$s (%2$s) щиро цікавиться, що в вас сталося нового останнім часом і чекає " +"новин від вас.\n" "\n" -"Може розповісте, що в вас нового? Задовольніть цікавість друзів! :)\n" +"Задовольніть цікавість друга :)\n" "\n" "%3$s\n" "\n" -"Не відповідайте на цей лист; відповідь ніхто не отримає.\n" -"\n" -"З найкращими побажаннями,\n" -"%4$s\n" +"Не відповідайте на цей лист; відповіді ніхто не отримає." #. TRANS: Subject for direct-message notification email. #. TRANS: %s is the sending user's nickname. @@ -7920,7 +8204,7 @@ msgstr "Нове приватне повідомлення від %s" #. TRANS: Body for direct-message notification email. #. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, #. TRANS: %3$s is the message content, %4$s a URL to the message, -#, fuzzy, php-format +#, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" "\n" @@ -7944,10 +8228,7 @@ msgstr "" "\n" "%4$s\n" "\n" -"Не відповідайте на цей лист; відповідь ніхто не отримає.\n" -"\n" -"З найкращими побажаннями,\n" -"%5$s\n" +"Не відповідайте на цей лист; відповіді ніхто не отримає." #. TRANS: Subject for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. @@ -7960,7 +8241,7 @@ msgstr "%1$s (@%2$s) додав(ла) ваш допис обраних" #. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text, #. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename, #. TRANS: %7$s is the adding user's nickname. -#, fuzzy, php-format +#, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" "\n" @@ -7976,7 +8257,8 @@ msgid "" "\n" "%5$s" msgstr "" -"%1$s (@%7$s) щойно додав(ла) ваш допис %2$s до обраних.\n" +"%1$s (@%7$s) щойно додав(ла) ваш допис %2$s до свого списку обраних " +"дописів.\n" "\n" "URL-адреса вашого допису:\n" "\n" @@ -7988,10 +8270,7 @@ msgstr "" "\n" "Ви можете переглянути список улюблених дописів %1$s тут:\n" "\n" -"%5$s\n" -"\n" -"Щиро ваші,\n" -"%6$s\n" +"%5$s" #. TRANS: Line in @-reply notification e-mail. %s is conversation URL. #, php-format @@ -8015,7 +8294,7 @@ msgstr "%1$s (@%2$s) пропонує до вашої уваги наступн #. TRANS: %3$s is a URL to the notice, %4$s is the notice text, #. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty), #. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replies for the addressed user, -#, fuzzy, php-format +#, php-format msgid "" "%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" "\n" @@ -8035,7 +8314,7 @@ msgid "" "\n" "%7$s" msgstr "" -"%1$s (@%9$s) щойно надіслав(ла) вам повідомлення («@-відповідь») на %2$s.\n" +"%1$s щойно надіслав(ла) вам повідомлення («@-відповідь») на %2$s.\n" "\n" "Повідомлення знаходиться тут:\n" "\n" @@ -8051,12 +8330,7 @@ msgstr "" "\n" "Список всіх @-відповідей, надісланих вам, знаходиться тут:\n" "\n" -"%7$s\n" -"\n" -"З повагою,\n" -"%2$s\n" -"\n" -"P.S. Ви можете вимкнути сповіщення електронною поштою тут: %8$s\n" +"%7$s" #. TRANS: Subject of group join notification e-mail. #. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. @@ -8064,15 +8338,15 @@ msgstr "" #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. #. TRANS: %5$s is a link to the addressed user's e-mail settings. -#, fuzzy, php-format +#, php-format msgid "%1$s has joined your group %2$s on %3$s." -msgstr "%1$s долучився до спільноти %2$s." +msgstr "%1$s долучився до спільноти %2$s на %3$s." #. TRANS: Subject of pending group join request notification e-mail. #. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "%1$s wants to join your group %2$s on %3$s." -msgstr "%1$s долучився до спільноти %2$s." +msgstr "%1$s має бажання долучитися до вашої спільноти %2$s на %3$s." #. TRANS: Main body of pending group join request notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, @@ -8082,11 +8356,15 @@ msgid "" "%1$s would like to join your group %2$s on %3$s. You may approve or reject " "their group membership at %4$s" msgstr "" +"%1$s має бажання долучитися до вашої спільноти %2$s на %3$s. Ви можете " +"прийняти або відхилити цей запит тут %4$s" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "" "Лише користувач має можливість переглядати свою власну поштову скриньку." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8095,33 +8373,47 @@ msgstr "" "повідомлення аби долучити користувачів до розмови. Такі повідомлення бачите " "лише ви." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +msgctxt "MENU" msgid "Inbox" msgstr "Вхідні" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Ваші вхідні повідомлення" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +msgctxt "MENU" msgid "Outbox" msgstr "Вихідні" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Надіслані вами повідомлення" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Не можна розібрати повідомлення." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Це незареєстрований користувач." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Вибачте, але це не є вашою електронною адресою для вхідної пошти." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "" "Вибачте, але не затверджено жодної електронної адреси для вхідної пошти." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Формат повідомлення не підтримується: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8173,10 +8465,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "Тип файлів «%s» тепер не підтримується на даному сервері." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Надіслати прямий допис" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "Оберіть одержувача:" @@ -8184,29 +8479,67 @@ msgstr "Оберіть одержувача:" msgid "No mutual subscribers." msgstr "Немає відповідних абонентів." +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "До" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Так" +#. TRANS: Header in message list. msgid "Messages" msgstr "Повідомлення" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "з" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "вебу" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Пошта" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +#, fuzzy +msgid "Cannot get author for activity." msgstr "Не вдається отримати автора для діяльності." +#. TRANS: Client exception. msgid "Bookmark not posted to this group." msgstr "Закладку не додано до цієї спільноти." +#. TRANS: Client exception. msgid "Object not posted to this user." msgstr "Об’єкт не додано до цього користувача." -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +#, fuzzy +msgid "Do not know how to handle this kind of target." msgstr "Не знаю, як обробити такого роду мету." #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8254,68 +8587,94 @@ msgstr "" "На жаль, отримання інформації щодо вашого розташування займе більше часу, " "ніж очікувалось; будь ласка, спробуйте пізніше" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +msgctxt "HEADER" +msgid "Notices" +msgstr "Дописи" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "Півн." -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "Півд." -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "Сх." -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "Зах." +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "в" -msgid "web" -msgstr "вебу" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "у контексті" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Повторено" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Відповісти на цей допис" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Відповісти" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Видалити допис" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Допис повторили" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "Оновити свій статус..." +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "«Розштовхати» користувача" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "«Розштовхати»" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Спробувати «розштовхати» цього користувача" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Помилка при додаванні нового профілю." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Помилка при додаванні аватари." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Помилка при додаванні віддаленого профілю." @@ -8323,18 +8682,48 @@ msgstr "Помилка при додаванні віддаленого проф msgid "Duplicate notice." msgstr "Дублікат допису." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Не вдалося додати нову підписку." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Profile" +msgstr "Профіль" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Профіль спільноти" +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" msgid "Replies" msgstr "Відповіді" +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" msgid "Favorites" msgstr "Обрані" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Користувач" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Повідомлення" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Ваші вхідні повідомлення" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8358,28 +8747,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "(Опис додатку недоступний, якщо даний додаток вимкнутий.)" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Налаштування СМС" -msgid "Change your personal settings" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Change your personal settings." msgstr "Змінити персональні налаштування" -msgid "Site configuration" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Site configuration." msgstr "Конфігурація сайту" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "Вийти" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Вийти з сайту" -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "Увійти на сайт" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "Пошук" -msgid "Search the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Search the site." msgstr "Пошук на сайті" #. TRANS: H2 text for user subscription statistics. @@ -8426,30 +8832,53 @@ msgstr "Всі спільноти" msgid "Unimplemented method." msgstr "Метод не виконується." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Спільноти" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Спільноти" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Нові теґи" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Нові теґи" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Постаті" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Популярне" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Немає аргументів return-to." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Повторити цей допис?" -msgid "Yes" -msgstr "Так" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Повторити цей допис" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Відкликати роль «%s» для цього користувача" @@ -8458,9 +8887,13 @@ msgstr "Відкликати роль «%s» для цього користув msgid "Page not found." msgstr "Сторінку не знайдено." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Пісочниця" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Ізолювати, відіслати користувача гратися у пісочниці" @@ -8478,128 +8911,273 @@ msgctxt "BUTTON" msgid "Search" msgstr "Пошук" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Люди" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Пошук людей на цьому сайті" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Дописи" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Пошук дописів за змістом" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Пошук спільнот на цьому сайті" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" -msgstr "Допомога" +msgstr "Довідка" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Про" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "ЧаП" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "Умови" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Приватність" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Джерело" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Версія" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Контакт" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Бедж" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Розділ без заголовку" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Ще..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Налаштування СМС" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Змінити налаштування профілю" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Аватара" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Завантаження аватари" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Пароль" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Змінити пароль" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Пошта" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Змінити електронну адресу" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Дизайн вашого профілю" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "Скорочення URL" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "IM" +msgstr "ІМ" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Оновлення за допомогою служби миттєвих повідомлень (ІМ)" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "SMS" +msgstr "СМС" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Оновлення через СМС" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" msgid "Connections" msgstr "З’єднання" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Авторизовані під’єднані додатки" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Нічичирк!" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Змусити користувача замовкнути, відправити у забуття" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Підписки" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "%s підписався до наступних людей" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Підписані" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Люди підписані до %s" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. +#, fuzzy, php-format +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "В очікуванні учасників (%d)" + +#. TRANS: Menu item title in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Спільноти, до яких залучений %s" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "Запросити" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Запросіть друзів та колег приєднатись до вас на %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Підписатись до цього користувача" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Хмарка теґів (позначки самих користувачів)" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Хмарка теґів (якими ви позначили користувачів)" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Пусто" @@ -8607,18 +9185,26 @@ msgstr "Пусто" msgid "Invalid theme name." msgstr "Невірне назва теми." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "Цей сервер не може опрацювати завантаження теми без підтримки ZIP." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Файл теми відсутній, або стався збій при завантаженні." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Помилка при збереженні теми." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Невірна тема: хибна структура каталогів." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8633,9 +9219,12 @@ msgstr[2] "" "Тема, що її було завантажено, надто велика; без компресії її розмір має " "становити менше ніж %d байтів." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "В архіві з темою є помилка: відсутній файл css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -8643,88 +9232,107 @@ msgstr "" "Тема містить неприпустиме ім’я файлу або теки. Використовуйте літери " "стандарту ASCII, цифри, знаки підкреслення та мінусу." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" "У темі містяться файли, що мають небезпечні розширення; це може виявитися " "небезпечним." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Тема містить файл типу «.%s», який є неприпустимим." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Помилка при відкритті архіву з темою." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Дописи" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. -#, fuzzy, php-format +#, php-format msgid "Show reply" msgid_plural "Show all %d replies" -msgstr[0] "Показати %d відповідь" +msgstr[0] "Показати відповідь" msgstr[1] "Показати %d відповіді" msgstr[2] "Показати %d відповідей" #. TRANS: Reference to the logged in user in favourite list. msgctxt "FAVELIST" msgid "You" -msgstr "" +msgstr "Ви" #. TRANS: Separator in list of user names like "You, Bob, Mary". msgid ", " -msgstr "" +msgstr ", " #. TRANS: For building a list such as "You, bob, mary and 5 others have favored this notice". #. TRANS: %1$s is a list of users, separated by a separator (default: ", "), %2$s is the last user in the list. -#, fuzzy, php-format +#, php-format msgctxt "FAVELIST" msgid "%1$s and %2$s" -msgstr "%1$s — %2$s" +msgstr "%1$s та %2$s" #. TRANS: List message for notice favoured by logged in user. -#, fuzzy msgctxt "FAVELIST" msgid "You have favored this notice." -msgstr "Позначити як обране" +msgstr "Ви вже обрали цей допис." +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." -msgstr[0] "Видалити з обраних" -msgstr[1] "Видалити з обраних" -msgstr[2] "Видалити з обраних" +msgstr[0] "Один користувач додав це до списку обраних." +msgstr[1] "%d користувачів додали це до списку обраних." +msgstr[2] "%d користувачів додали це до списку обраних." #. TRANS: List message for notice repeated by logged in user. -#, fuzzy msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Ви вже повторили цей допис." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." -msgstr[0] "Цей допис вже повторено." -msgstr[1] "Цей допис вже повторено." -msgstr[2] "Цей допис вже повторено." +msgstr[0] "Один користувач повторив цей допис." +msgstr[1] "%d користувачів повторили цей допис." +msgstr[2] "%d користувачів повторили цей допис." #. TRANS: Title for top posters section. msgid "Top posters" msgstr "Топ-дописувачі" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "До" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Невідоме дієслово: «%s»." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" msgstr "Розблокувати" #. TRANS: Title for unsandbox form. -#, fuzzy msgctxt "TITLE" msgid "Unsandbox" msgstr "Витягти з пісочниці" @@ -8747,7 +9355,6 @@ msgid "Unsubscribe from this user" msgstr "Відписатись від цього користувача" #. TRANS: Button text on unsubscribe form. -#, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Відписатись" @@ -8837,7 +9444,5 @@ msgstr "Неправильний XML, корінь XRD відсутній." msgid "Getting backup from file '%s'." msgstr "Отримання резервної копії файлу «%s»." -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "" -#~ "Повідомлення надто довге, максимум становить %1$d символів, натомість ви " -#~ "надсилаєте %2$d." +#~ msgid "Couldn't update your design." +#~ msgstr "Не вдалося оновити дизайн." diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 855ba5759d..e5473815c7 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -15,21 +15,55 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:15+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:23+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 (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\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-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "未知的" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "未知动作" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "访问" @@ -81,7 +115,9 @@ msgstr "保存访问设置" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -93,6 +129,7 @@ msgstr "保存" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "没有这个页面。" @@ -111,6 +148,7 @@ msgstr "没有这个页面。" #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -135,8 +173,11 @@ msgstr "没有这个页面。" #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "没有这个用户。" @@ -149,7 +190,15 @@ msgstr "%1$s 和好友,第%2$d页" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s 和好友们" @@ -217,28 +266,14 @@ msgstr "你和好友们" msgid "Updates from %1$s and friends on %2$s!" msgstr "%2$s上%1$s和好友们的更新!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API方法没有找到。" +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -273,6 +308,7 @@ msgstr "无法更新用户。" #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "用户没有个人信息。" @@ -307,6 +343,8 @@ msgstr "无法保存你的外观设置。" #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "无法更新你的外观。" @@ -671,9 +709,12 @@ msgstr "请求 token 已被授权了。" #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "你的 session 出现了一个问题,请重试。" @@ -821,16 +862,6 @@ msgstr "你不能删除其他用户的消息。" msgid "No such notice." msgstr "没有这条消息。" -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "不能转发你自己的消息。" - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "已转发了该消息。" - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -872,8 +903,11 @@ msgstr "删除消息 %d" msgid "Client must provide a 'status' parameter with a value." msgstr "客户端必须提供一个包含内容的“状态”参数。" +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -885,6 +919,8 @@ msgstr "没有找到父级的消息。" #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -953,6 +989,8 @@ msgstr " %1$s 条消息回复给来自 %2$s 的消息 / %3$s。" msgid "Repeats of %s" msgstr "%s 的转发" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%1$s 收藏了消息 %2$s 。" @@ -967,6 +1005,8 @@ msgstr "带 %s 标签的消息" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$s 上有 %1$s 标签的消息!" @@ -1081,11 +1121,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "丢失的个人信息。" #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1093,10 +1135,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "该小组的成员列表。" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1121,6 +1165,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "该小组的成员列表。" + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "无法把用户%1$s添加到%2$s小组" + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "%1$s在%2$s时发的消息" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "已授权关注" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "授权已取消。" + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1157,8 +1229,8 @@ msgstr "已经是一种收藏。" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "%s 组成员身份" #. TRANS: Subtitle for group membership feed. @@ -1171,8 +1243,7 @@ msgstr "组 %1$s 是在 %2$s 上的成员" msgid "Cannot add someone else's membership." msgstr "无法添加其他人的成员资格。" -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "只能处理加入活动。" @@ -1284,6 +1355,7 @@ msgstr "你可以上传你的个人头像。文件大小限制在%s以下。" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "用户没有相应个人信息。" @@ -1310,6 +1382,7 @@ msgstr "预览" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "删除" @@ -1423,6 +1496,7 @@ msgstr "不要屏蔽这个用户" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "是" @@ -1479,6 +1553,32 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "离开 %2$s 组的 %1$s" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "未登录。" + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "请求不含资料页 ID。" + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "此 ID 没有用户。" + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "已取消关注" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "没有确认码" @@ -1613,6 +1713,7 @@ msgstr "未找到应用。" msgid "You are not the owner of this application." msgstr "你不是该应用的拥有者。" +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "你的 session token 出现了问题。" @@ -1681,24 +1782,6 @@ msgstr "不要删除此组。" msgid "Delete this group." msgstr "删除此组。" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "未登录。" - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -1882,14 +1965,17 @@ msgid "Use defaults" msgstr "使用默认值" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." msgstr "还原默认设计。" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "重置回默认值。" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." msgstr "保存设计。" @@ -2216,6 +2302,7 @@ msgstr "不是赞成的最爱。" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "最新被收藏的消息" @@ -2251,6 +2338,8 @@ msgstr "现在就[注册一个账户](%%action.register%%)并成为第一个添 #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "%s收藏的消息" @@ -2263,6 +2352,7 @@ msgstr "%2$s 上被 %1$s 收藏的消息!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "推荐用户" @@ -2324,6 +2414,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "远程服务使用了未知版本的 OMB 协议。" #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "更新远程的个人信息时出错。" @@ -2361,14 +2452,6 @@ msgstr "用户已有此权限。" msgid "No profile specified." msgstr "没有指定的用户。" -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "此 ID 没有用户。" - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2964,6 +3047,7 @@ msgid "License selection" msgstr "许可协议选择" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "私有" @@ -3196,6 +3280,9 @@ msgid "Ajax Error" msgstr "Ajax错误" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "新消息" @@ -3497,7 +3584,6 @@ msgid "Password saved." msgstr "密码已保存。" #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "路径" @@ -3692,6 +3778,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "从不" @@ -3845,16 +3932,21 @@ 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). -#, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). +#, 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. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "描述你自己和你的兴趣" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3867,14 +3959,18 @@ msgid "Location" msgstr "位置" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "你的地理位置,格式类似\"城市,省份,国家\"" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "你在哪里,像\"城市、 国家(或地区)、国家\"。" #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" msgstr "当发布消息时分享我的地理位置" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "标签" @@ -3906,6 +4002,28 @@ msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "自动关注任何关注我的人(这个选项适合机器人)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "关注的" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "只能跟人。" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -3935,7 +4053,8 @@ msgstr "无效的标记: %s。" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -msgid "Could not update user for autosubscribe." +#, fuzzy +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "无法更新用户的自动关注。" #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -3943,6 +4062,7 @@ msgid "Could not save location prefs." msgstr "无法保存位置设置。" #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "无法保存标签。" @@ -3973,6 +4093,7 @@ msgid "Public timeline, page %d" msgstr "公共时间线,第%d页" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "公共时间线" @@ -4144,10 +4265,6 @@ msgstr "已请求密码恢复" msgid "Password saved" msgstr "密码已保存。" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "未知动作" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "至少6个字符,还有,别忘记它!" @@ -4239,6 +4356,7 @@ msgstr "不允许注册。" msgid "You cannot register if you do not agree to the license." msgstr "如果您不同意该许可,您不能注册。" +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "电子邮件地址已存在。" @@ -4272,24 +4390,7 @@ msgstr "仅用于更新、 公告及密码恢复。" msgid "Longer name, preferably your \"real\" name." msgstr "你最好是\"真正的\"的名字的长名称技术。" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, 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: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "描述你自己和你的兴趣" - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "你在哪里,像\"城市、 国家(或地区)、国家\"。" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4401,6 +4502,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "另一种兼容的微博客服务配置文件的 URL。" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4433,15 +4536,8 @@ msgstr "只有登录的用户才能重复发消息。" msgid "No notice specified." msgstr "没有指定的消息。" -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "你不能重复自己的消息。" - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "你已转发过了那个消息。" - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "已转发" @@ -4452,6 +4548,8 @@ msgstr "已转发!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "对 %s 的回复" @@ -4559,6 +4657,7 @@ msgid "System error uploading file." msgstr "上传文件时出错。" #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." msgstr "不是一个Atom源" @@ -4599,6 +4698,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "你不能在这个网站授予用户权限。" @@ -4790,6 +4890,8 @@ msgstr "小组成员" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(无)" @@ -4871,27 +4973,32 @@ msgstr "发送给 %1$s 的 %2$s 消息" msgid "Message from %1$s on %2$s" msgstr "来自 %1$s 的 %2$s 消息" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "IM 不可用。" + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "消息已删除" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" +#, fuzzy, php-format +msgid "Notices by %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, %3$d is the page number. -#, php-format -msgid "%1$s tagged %2$s, page %3$d" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%1$s 的标签 %2$s,第%3$d页" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s,第%2$d页" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "带%1$s标签的消息,第%2$d页" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -4976,6 +5083,7 @@ msgid "Repeat of %s" msgstr "%s 的转发" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "你不能在这个站点上将用户禁言。" @@ -5263,51 +5371,72 @@ msgstr "" msgid "No code entered." msgstr "没有输入的代码。" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "快照" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "管理快照配置" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "无效的快照运行值。" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "快照频率必须是一个数字。" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "无效的快照报告 URL。" +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "快照" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "被访问时随机" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "按照计划的作业" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "数据快照" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "什么时候将统计数据发送到 status.net 服务器" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "频率" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "每第N次访问是发送快照" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "报告 URL" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "快照将被发送到这个 URL" -#. TRANS: Submit button title. -msgid "Save" -msgstr "保存" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "保存访问设置" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5319,6 +5448,27 @@ msgstr "你没有关注这个用户" msgid "Could not save subscription." msgstr "无法保存关注。" +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s 组成员身份" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%s 的小组成员,第%2$d页" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "该小组的成员列表。" + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "你不能用这个操作关注一个 OMB 0.1 远程用户。" @@ -5436,31 +5586,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "带%1$s标签的消息,第%2$d页" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s标签的消息聚合 (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s标签的消息聚合 (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "%s标签的消息聚合 (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "没有 ID 冲突。" +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "将%s加为标签" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "用户页面" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "将用户加为标签" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5468,13 +5630,22 @@ msgid "" msgstr "" "给这个用户加注标签 (字母letters, 数字numbers, -, ., and _), 逗号或空格分隔" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "你只能给你关注或关注你的人添加标签。" +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "标签" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "使用这个表单给你的关注者或你关注的用户添加标签。" +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "没有此标签。" @@ -5482,23 +5653,29 @@ msgstr "没有此标签。" msgid "You haven't blocked that user." msgstr "你未屏蔽该用户。" +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "用户不在沙盒中。" +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "用户未被禁言。" -msgid "No profile ID in request." -msgstr "请求不含资料页 ID。" - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "已取消关注" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "Listenee stream 许可证“‘%1$s” 与本网站的许可证 “%2$s”不兼容。" +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "IM 设置" @@ -5513,10 +5690,12 @@ msgstr "管理其他选项。" msgid " (free service)" msgstr "(免费服务)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "无" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5528,15 +5707,19 @@ msgstr "缩短 URL 使用" msgid "Automatic shortening service to use." msgstr "要使用的自动短网址服务。" +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5545,17 +5728,21 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "短网址服务过长(不能超过50个字符)。" -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "无效的消息内容。" +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "无效的消息内容。" + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "用户" @@ -5578,6 +5765,9 @@ msgstr "无效的欢迎文字。最大长度255个字符。" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "无效的默认关注:“%1$s”不是一个用户。" +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "个人信息" @@ -5629,7 +5819,7 @@ msgstr "保存用户设置。" msgid "Authorize subscription" msgstr "授权关注" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5640,16 +5830,19 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "接受" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. msgid "Subscribe to this user." msgstr "订阅此用户。" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "拒绝" @@ -5666,9 +5859,10 @@ msgstr "没有授权请求!" msgid "Subscription authorized" msgstr "已授权关注" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "已授权关注,但是没有回传 URL。请到网站查看如何授权关注。你的 subscription " @@ -5678,9 +5872,10 @@ msgstr "" msgid "Subscription rejected" msgstr "关注已拒绝" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "关注已拒绝,但是没有回传 URL。请到网站查看如何完全拒绝关注。" @@ -5708,14 +5903,6 @@ msgstr "Listenee URI ‘%s’ 是一个本地用户。" msgid "Profile URL \"%s\" is for a local user." msgstr "个人信息 URL “%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. -#, 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. #, fuzzy, php-format @@ -5818,7 +6005,6 @@ msgid "Contributors" msgstr "贡献者" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "许可协议" @@ -5851,7 +6037,6 @@ msgid "" msgstr "你应该在本程序中收到了一份 GNU Affero GPL 的副本,如果没有收到请看%s。" #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "插件" @@ -5928,18 +6113,6 @@ msgstr[0] "这么大的文件会超过你%d字节的每月配额。" msgid "Invalid filename." msgstr "无效的文件名。" -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "加入小组失败。" - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "不是小组成员。" - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "离开小组失败。" - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -5952,6 +6125,18 @@ msgstr "无效的用户 ID %s。" msgid "Group ID %s is invalid." msgstr "小组 ID %s 无效。" +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "加入小组失败。" + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "不是小组成员。" + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "离开小组失败。" + #. TRANS: Activity title. msgid "Join" msgstr "加入" @@ -6022,6 +6207,35 @@ msgstr "你在短时间里发布了过多的重复消息,请深呼吸,过几 msgid "You are banned from posting notices on this site." msgstr "在这个网站你被禁止发布消息。" +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "不能转发你自己的消息。" + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "你不能重复自己的消息。" + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "不能转发你自己的消息。" + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "不能转发你自己的消息。" + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "你已转发过了那个消息。" + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "用户没有最后一条的消息。" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6047,16 +6261,13 @@ msgstr "无法保存回复,%1$d 对 %2$d。" msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "" - #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). #, php-format @@ -6078,6 +6289,7 @@ msgid "Unable to save tag." msgstr "无法保存标签。" #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "你被禁止添加关注。" @@ -6105,7 +6317,9 @@ msgstr "无法删除关注 OMB token。" msgid "Could not delete subscription." msgstr "无法取消关注。" -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "关注" @@ -6173,18 +6387,24 @@ msgid "User deletion in progress..." msgstr "用户删除处理中……" #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "编辑个人信息设置" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "编辑" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "给该用户发送私信" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "私信" @@ -6206,10 +6426,6 @@ msgctxt "role" msgid "Moderator" msgstr "审核员" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "关注" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6235,7 +6451,9 @@ msgstr "回复" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6350,8 +6568,9 @@ msgstr "不受信任的用户的信息不被重写。" msgid "No content for notice %s." msgstr "通知 %s 没有内容。" -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "没有这样的用户 %s。" #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6398,76 +6617,127 @@ msgstr "saveSettings() 尚未实现。" msgid "Unable to delete design setting." msgstr "无法删除外观设置。" +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "主页" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "主页" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "管理" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "基本网站配置" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "网站" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "外观配置" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "外观" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "用户配置" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "用户" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "访问配置" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Access" +msgstr "访问" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "路径配置" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "路径" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "会话配置" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "Sessions" msgstr "Sessions" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "编辑网站消息" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "网站消息" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "更改站点配置" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Snapshots" +msgstr "快照" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "设置网站许可协议" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "许可协议" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "路径配置" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "插件" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "API 资源需要读写的访问权限,但是你只有只读的权限。" @@ -6476,6 +6746,7 @@ msgstr "API 资源需要读写的访问权限,但是你只有只读的权限 msgid "No application for that consumer key." msgstr "没有应用使用这个 consumer key。" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6509,9 +6780,11 @@ msgstr "无法找到请求 token 对应的用户和应用。" msgid "Could not issue access token." msgstr "无法发行 access token。" +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "插入 OAuth 应用用户时数据库出错。" +#. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "插入 OAuth 应用用户时数据库出错。" @@ -6603,6 +6876,17 @@ msgstr "该应用默认的访问权限:只读或读写" msgid "Cancel" msgstr "取消" +#. TRANS: Submit button title. +msgid "Save" +msgstr "保存" + +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "未知动作" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr " by " @@ -6625,11 +6909,12 @@ msgstr "通过了%1$s - \"%2$s\"的访问权限。" msgid "Access token starting with: %s" msgstr "Access token 的开始:%s" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "取消" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "作者元素必须包含一个名称元素。" @@ -6666,6 +6951,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "所有关注的" + #. TRANS: Title for command results. msgid "Command results" msgstr "执行结果" @@ -6675,6 +6966,7 @@ msgid "AJAX error" msgstr "AJAX 错误" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "执行完毕" @@ -6793,6 +7085,8 @@ msgstr "%s是一个远程的用户;你只能给同一个服务器上的用户 #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -6812,10 +7106,6 @@ msgstr "发送消息出错。" msgid "Notice from %s repeated." msgstr "来自 %s 的消息已转发。" -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "转发消息时出错。" - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7114,13 +7404,19 @@ msgstr "或许你想运行安装程序来解决这个问题。" msgid "Go to the installer." msgstr "去安装程序。" +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "数据库错误" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "公共" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "删除" @@ -7128,6 +7424,7 @@ msgstr "删除" msgid "Delete this user" msgstr "删除这个用户" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "保存外观" @@ -7140,23 +7437,14 @@ msgstr "改变颜色" msgid "Use defaults" msgstr "使用默认值" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "恢复默认外观" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "重置到默认" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "上传文件" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "你可以上传你的个人页面背景。文件最大 2MB。" #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. @@ -7169,15 +7457,6 @@ msgctxt "RADIO" msgid "Off" msgstr "关闭" -#. TRANS: Title for button on profile design page to save settings. -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". -msgid "Couldn't update your design." -msgstr "无法更新你的外观。" - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "默认外观已恢复。" @@ -7207,46 +7486,62 @@ msgctxt "BUTTON" msgid "Favor" msgstr "请" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -msgid "Not an atom feed." -msgstr "不是一个Atom源" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "没有在源中的作者。" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +#, fuzzy +msgid "Cannot import without a user." msgstr "没有用户无法导入。" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Feeds" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "全部" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "选择要过滤的标签" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "标签" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "选择标签缩小清单" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "执行" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "给这个用户添加\\\"%s\\\"权限" @@ -7302,9 +7597,11 @@ msgstr[0] "该小组额外的昵称,用逗号或者空格分隔开,最多%d msgid "Membership policy" msgstr "注册时间" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7370,6 +7667,7 @@ msgid "%s blocked users" msgstr "%s 屏蔽的用户" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "管理" @@ -7467,23 +7765,46 @@ msgid "%dB" msgid_plural "%dB" msgstr[0] "%dB" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "未知的收件箱来源%d。" +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "加入" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "离开" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "登录" @@ -7544,6 +7865,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s 开始关注你在 %2$s 的消息。" +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s 开始关注你在 %2$s 的消息。" + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -7834,9 +8169,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "只有该用户才能查看自己的私信。" +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -7844,32 +8181,46 @@ msgstr "" "你没有任何私信。你可以试着发送私信给其他用户鼓励他们用私信和你交流。其他用户" "发给你你私信只有你看得到。" +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +msgctxt "MENU" msgid "Inbox" msgstr "收件箱" -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "你收到的私信" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +msgctxt "MENU" msgid "Outbox" msgstr "发件箱" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "你发送的私信" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "无法解析消息。" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "不是已注册用户。" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "抱歉,这个不是你的收信电子邮件地址。" +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "抱歉,现在不允许电子邮件发布。" -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "不支持的信息格式:%s" #. TRANS: Form legend for form to make a user a group admin. @@ -7919,10 +8270,13 @@ msgstr "此服务器不支持 “%1$s” 的文件格式,试下使用其他的 msgid "\"%s\" is not a supported file type on this server." msgstr "这个服务器不支持 %s 的文件格式。" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "发送一条私信" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "选择收件人:" @@ -7930,31 +8284,67 @@ msgstr "选择收件人:" msgid "No mutual subscribers." msgstr "没有共同的关注者。" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "到" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "发布" +#. TRANS: Header in message list. msgid "Messages" msgstr "消息" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "通过" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "网页" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "电子邮件" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "你不能删除这个小组。" +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "请不要删除该用户。" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -7999,68 +8389,95 @@ msgid "" "try again later" msgstr "抱歉,获取你的地理位置时间过长,请稍候重试" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "消息" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "E" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "W" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "位于" -msgid "web" -msgstr "网页" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "查看对话" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "转发来自" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "回复" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "回复" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "删除" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "消息已转发" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "呼叫用户" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "呼叫" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "呼叫这个用户" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "添加新个人信息出错。" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "添加头像出错。" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "添加远程个人信息时出错。" @@ -8068,18 +8485,48 @@ msgstr "添加远程个人信息时出错。" msgid "Duplicate notice." msgstr "复制消息。" -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "无法添加新的关注。" +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Profile" +msgstr "配置文件" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "小组资料" +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" msgid "Replies" msgstr "答复" +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" msgid "Favorites" msgstr "收藏夹" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "用户" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "消息" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "你收到的私信" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8103,31 +8550,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "SMS 设置" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "修改你的个人信息" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "用户配置" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Logout" msgstr "登出" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "从网站登出" -msgid "Login to the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Login to the site." msgstr "登录这个网站" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" msgid "Search" msgstr "搜索" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "搜索帮助" #. TRANS: H2 text for user subscription statistics. @@ -8174,30 +8635,53 @@ msgstr "所有小组" msgid "Unimplemented method." msgstr "未使用的方法。" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "小组" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "用户小组" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "最近标签" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "最近标签" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "推荐用户" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "热门收藏" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "没有 return-to 冲突。" +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "转发这个消息?" -msgid "Yes" -msgstr "是" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "转发" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "取消这个用户的\"%s\"权限" @@ -8206,9 +8690,13 @@ msgstr "取消这个用户的\"%s\"权限" msgid "Page not found." msgstr "没有找到页面。" +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "沙盒" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "将这个用户放入沙盒。" @@ -8226,128 +8714,273 @@ msgctxt "BUTTON" msgid "Search" msgstr "搜索" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "用户" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "搜索本站用户" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "消息" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "搜索消息内容" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "搜索本站小组" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" msgid "Help" msgstr "帮助" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "关于" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "FAQ" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "条款" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "隐私" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "源码" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "版本" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "联系" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "挂件" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "无标题章节" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "更多..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "SMS 设置" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "修改你的个人信息" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "头像" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "上传一个头像。" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "密码" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "修改密码" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "电子邮件" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "修改电子邮件" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "设计你的个人页面外观" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL 互联网地址" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "IM" +msgstr "即时通讯IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "使用即时通讯工具(IM)更新" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "使用 SMS 更新" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" msgid "Connections" msgstr "关联" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "被授权已连接的应用" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "禁言" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "将此用户禁言" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "关注的" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "%s关注的用户" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "关注者" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "关注了%s的用户" +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "%s 组是成员组成了" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" msgstr "邀请" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "邀请朋友和同事来%s一起和你交流" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "关注这个用户" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "自己添加标签的用户标签云" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "被添加标签的用户标签云" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "无" @@ -8355,49 +8988,58 @@ msgstr "无" msgid "Invalid theme name." msgstr "无效的主题名。" +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "服务器不支持 ZIP,无法处理上传的主题。" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "主题文件丢失或上传失败。" +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "保存主题失败" -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "无效的主题:目录结构损坏。" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" "Uploaded theme is too large; must be less than %d bytes uncompressed." msgstr[0] "上传的主题过大,解压后必须小于%d字节。" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "无效的主题存档:css/display.css 文件丢失" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" "主题包含无效的文件或文件夹的名称。请只使用 ASCII 字母,数字,下划线和减号。" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "主题包含不安全的文件扩展名,可能有危险。" -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "主题包含不允许的”.%s“格式文件。" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "打开主题文件时出错。" -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "消息" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -8427,8 +9069,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "收藏" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "取消收藏这个消息" @@ -8439,8 +9082,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "你已转发过了那个消息。" +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "已转发了该消息。" @@ -8449,6 +9093,28 @@ msgstr[0] "已转发了该消息。" msgid "Top posters" msgstr "灌水精英" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "到" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "未知的动词:“%s”" + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8560,5 +9226,5 @@ msgstr "不合法的XML, 缺少XRD根" msgid "Getting backup from file '%s'." msgstr "从文件'%s'获取备份。" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "消息包含%2$d个字符,超出长度限制 - 不能超过%1$d个字符。" +#~ msgid "Couldn't update your design." +#~ msgstr "无法更新你的外观。" diff --git a/plugins/APC/locale/APC.pot b/plugins/APC/locale/APC.pot index e8d890ccb6..a533aa454c 100644 --- a/plugins/APC/locale/APC.pot +++ b/plugins/APC/locale/APC.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po index b7587f9c73..ea577b311f 100644 --- a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:25+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/br/LC_MESSAGES/APC.po b/plugins/APC/locale/br/LC_MESSAGES/APC.po index f0d0528dc5..6609e3a7f4 100644 --- a/plugins/APC/locale/br/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/br/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:25+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/de/LC_MESSAGES/APC.po b/plugins/APC/locale/de/LC_MESSAGES/APC.po index bb8ad1af0b..4df1a93b3d 100644 --- a/plugins/APC/locale/de/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/de/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:25+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/es/LC_MESSAGES/APC.po b/plugins/APC/locale/es/LC_MESSAGES/APC.po index a8a67ab806..8ab00c2268 100644 --- a/plugins/APC/locale/es/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/es/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:25+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/fr/LC_MESSAGES/APC.po b/plugins/APC/locale/fr/LC_MESSAGES/APC.po index 3b82e8ece0..74342e8a6b 100644 --- a/plugins/APC/locale/fr/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/fr/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:25+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/gl/LC_MESSAGES/APC.po b/plugins/APC/locale/gl/LC_MESSAGES/APC.po index b090051416..5968c64ab9 100644 --- a/plugins/APC/locale/gl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/gl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:25+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/he/LC_MESSAGES/APC.po b/plugins/APC/locale/he/LC_MESSAGES/APC.po index 05f0b733c9..d85ae60392 100644 --- a/plugins/APC/locale/he/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/he/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/ia/LC_MESSAGES/APC.po b/plugins/APC/locale/ia/LC_MESSAGES/APC.po index 80ce60e050..c133b05e93 100644 --- a/plugins/APC/locale/ia/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ia/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/id/LC_MESSAGES/APC.po b/plugins/APC/locale/id/LC_MESSAGES/APC.po index d38c17ceda..2577b4c35e 100644 --- a/plugins/APC/locale/id/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/id/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/mk/LC_MESSAGES/APC.po b/plugins/APC/locale/mk/LC_MESSAGES/APC.po index f1ba6e0aba..00c2472e10 100644 --- a/plugins/APC/locale/mk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/mk/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/nb/LC_MESSAGES/APC.po b/plugins/APC/locale/nb/LC_MESSAGES/APC.po index 2b6b40b393..793aea6307 100644 --- a/plugins/APC/locale/nb/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nb/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/nl/LC_MESSAGES/APC.po b/plugins/APC/locale/nl/LC_MESSAGES/APC.po index 5d3bae13dd..1147b398b3 100644 --- a/plugins/APC/locale/nl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/pl/LC_MESSAGES/APC.po b/plugins/APC/locale/pl/LC_MESSAGES/APC.po index 7998f59012..dacbedb420 100644 --- a/plugins/APC/locale/pl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/pt/LC_MESSAGES/APC.po b/plugins/APC/locale/pt/LC_MESSAGES/APC.po index 2caad8318c..c7a2ed1dee 100644 --- a/plugins/APC/locale/pt/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po index 25c3545c3d..292f6dc79b 100644 --- a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/ru/LC_MESSAGES/APC.po b/plugins/APC/locale/ru/LC_MESSAGES/APC.po index 8403c3825b..778a8accae 100644 --- a/plugins/APC/locale/ru/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ru/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/tl/LC_MESSAGES/APC.po b/plugins/APC/locale/tl/LC_MESSAGES/APC.po index 1e58d80f69..0d59d29a85 100644 --- a/plugins/APC/locale/tl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/tl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/uk/LC_MESSAGES/APC.po b/plugins/APC/locale/uk/LC_MESSAGES/APC.po index 335e244922..29f9c3a893 100644 --- a/plugins/APC/locale/uk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/uk/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po index e8fdd706d3..ccc610f0c5 100644 --- a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/AccountManager/locale/AccountManager.pot b/plugins/AccountManager/locale/AccountManager.pot index 2b675a5fcf..826a2a210c 100644 --- a/plugins/AccountManager/locale/AccountManager.pot +++ b/plugins/AccountManager/locale/AccountManager.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po index 0c94eff621..6fc5415635 100644 --- a/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:09+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:20+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po new file mode 100644 index 0000000000..ddb4ec62ac --- /dev/null +++ b/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - AccountManager to Asturian (Asturianu) +# Exported from translatewiki.net +# +# Author: Xuacu +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AccountManager\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:54+0000\n" +"Language-Team: Asturian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ast\n" +"X-Message-Group: #out-statusnet-plugin-accountmanager\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "" +"The Account Manager plugin implements the Account Manager specification." +msgstr "" +"El complementu Alministrador de Cuenta encadarma la especificación " +"Alministrador de Cuenta." diff --git a/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po index 65c397896b..252cd48f10 100644 --- a/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:09+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:20+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po index 1f6da8b17c..0c7589036e 100644 --- a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:20+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:05:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po index b740efece3..63c812e890 100644 --- a/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:20+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:05:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po index 9645d53fb3..0647c97d7f 100644 --- a/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:09+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:20+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po index fdd785caf1..7790cff7e0 100644 --- a/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:09+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:20+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po index ceef824ba2..58d5067c74 100644 --- a/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:09+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:20+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po index e075074703..8c61de0284 100644 --- a/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:09+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:20+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po index 67c64b579c..d0e21e9df7 100644 --- a/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:16+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:20+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po index 11f4b036ba..fdeff3e996 100644 --- a/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:09+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:20+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/Adsense/locale/Adsense.pot b/plugins/Adsense/locale/Adsense.pot index a6b3cce819..e7a3ee4523 100644 --- a/plugins/Adsense/locale/Adsense.pot +++ b/plugins/Adsense/locale/Adsense.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po index b525784d2f..b0eb9fed5e 100644 --- a/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:21+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po index 7961e6064c..56222b3d21 100644 --- a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:21+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po index 5df51c487c..050ad17637 100644 --- a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po index e4c3975919..6f9ede700a 100644 --- a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po index d310bba025..2b784f48a9 100644 --- a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po index 2f67e906f9..4388d0aa34 100644 --- a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po index 1d45128588..153ac5a90a 100644 --- a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po index 14278605e5..a3f4f8c80e 100644 --- a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po index 3b0584d154..1b55029a3c 100644 --- a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ka\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po index 2a5964883d..f14eef3c43 100644 --- a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po index bbd6784288..dff5a616bd 100644 --- a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po index 316289d363..e7f44dd22a 100644 --- a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po index 3f14ccff9e..f4fd833083 100644 --- a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po index e915551c9e..cf35de86d9 100644 --- a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po index 484e9110ed..4a52e08680 100644 --- a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po index fc13ada543..d0c6c70f0c 100644 --- a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po index 697809377b..7d5148ef60 100644 --- a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po index 4c4aae5ddf..5b73cc56ca 100644 --- a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Aim/locale/Aim.pot b/plugins/Aim/locale/Aim.pot index a628d302e2..5264517fa5 100644 --- a/plugins/Aim/locale/Aim.pot +++ b/plugins/Aim/locale/Aim.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Aim/locale/af/LC_MESSAGES/Aim.po b/plugins/Aim/locale/af/LC_MESSAGES/Aim.po index 0d4ed7816a..d4d10da503 100644 --- a/plugins/Aim/locale/af/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/af/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:12+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:23+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po b/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po index c5b65b0c5e..cacf453467 100644 --- a/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:12+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po b/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po index f27a9692ac..bb354f9467 100644 --- a/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:12+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:23+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po b/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po index 8007943bea..1b085723b0 100644 --- a/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:12+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:23+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po b/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po index 7e35aace6f..815cd464af 100644 --- a/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:12+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:23+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po b/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po index 005f260479..1521074def 100644 --- a/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:12+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:23+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po b/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po index 5db514bbf0..d86ff6734e 100644 --- a/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:19+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po b/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po index c4c3dc96d2..58de2dc76e 100644 --- a/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:12+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/AnonymousFave/locale/AnonymousFave.pot b/plugins/AnonymousFave/locale/AnonymousFave.pot index b34b0ec3b5..adf35b1f77 100644 --- a/plugins/AnonymousFave/locale/AnonymousFave.pot +++ b/plugins/AnonymousFave/locale/AnonymousFave.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po index 8e9293b0b8..66cc40cba9 100644 --- a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:13+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:24+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po index e3b7ad49bc..72d907db8d 100644 --- a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:13+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:24+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po index 739646045e..b9d9a74652 100644 --- a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:13+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:24+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po index 0f1ec74697..06ec0b3c0b 100644 --- a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:13+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:24+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po index 13ec72888e..b53382767d 100644 --- a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:13+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:24+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po index 0662404e9d..2ab8567878 100644 --- a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:13+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:24+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po index a22ad4e30c..8f0c34a40d 100644 --- a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:13+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:24+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po index e6624fb419..e20f501e90 100644 --- a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:13+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:25+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po index e0a26e499b..222c33cf85 100644 --- a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:13+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:25+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po index 40f7d59e38..4b86692758 100644 --- a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:25+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/ru/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ru/LC_MESSAGES/AnonymousFave.po index 597690ae6b..b457a0769a 100644 --- a/plugins/AnonymousFave/locale/ru/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ru/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:25+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po index da583ee4b1..60587123b2 100644 --- a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:25+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po index 3d5f83689a..f34487840e 100644 --- a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:25+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AutoSandbox/locale/AutoSandbox.pot b/plugins/AutoSandbox/locale/AutoSandbox.pot index 5985b8e9a7..13e0b36836 100644 --- a/plugins/AutoSandbox/locale/AutoSandbox.pot +++ b/plugins/AutoSandbox/locale/AutoSandbox.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po index 9bde7d62c3..459b5c4916 100644 --- a/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:28+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po index 9d83e22db4..5f7cf9166e 100644 --- a/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:28+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po index 598d536df8..77c52148e3 100644 --- a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:28+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po index 8e444fe93e..e2ac061cf5 100644 --- a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:28+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po index 9eb28d2577..b8a5901ecc 100644 --- a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:28+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po index f3fa8946ee..c2e6aef7f9 100644 --- a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po index a6b3f1f5a0..03b0926473 100644 --- a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po index bf04dbc497..70c0838542 100644 --- a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po index 901c16a04d..b425b99a5e 100644 --- a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:28+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po index 718a7f44b2..8809d7c8ac 100644 --- a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:28+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po index 8a07f5f496..13c67c697a 100644 --- a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:28+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po index e79285127f..4fb609f9d7 100644 --- a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:28+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/Autocomplete/locale/Autocomplete.pot b/plugins/Autocomplete/locale/Autocomplete.pot index 2e1c107818..2912f6426e 100644 --- a/plugins/Autocomplete/locale/Autocomplete.pot +++ b/plugins/Autocomplete/locale/Autocomplete.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Autocomplete/locale/be-tarask/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/be-tarask/LC_MESSAGES/Autocomplete.po index 3233315fb2..5906e63952 100644 --- a/plugins/Autocomplete/locale/be-tarask/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/be-tarask/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/br/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/br/LC_MESSAGES/Autocomplete.po index 4b862e0670..106d146243 100644 --- a/plugins/Autocomplete/locale/br/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/br/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po index 73bddc672b..ac05b27a95 100644 --- a/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po index 3a0b30b939..1c4b4b3544 100644 --- a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/fi/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/fi/LC_MESSAGES/Autocomplete.po index 6e4affefc5..9f344c8935 100644 --- a/plugins/Autocomplete/locale/fi/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/fi/LC_MESSAGES/Autocomplete.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:12+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po index 4d2b5746b7..ab46e77cab 100644 --- a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po index 11055449f3..66955d2f28 100644 --- a/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po index 56f80dc111..e7a6101a64 100644 --- a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/id/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/id/LC_MESSAGES/Autocomplete.po index cc4cc0d18d..08cf3200f4 100644 --- a/plugins/Autocomplete/locale/id/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/id/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po index fa0a949bae..0af48d1c9d 100644 --- a/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po index b77a1a243a..f87f940a22 100644 --- a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po index f1a78ac834..b23cda5c2d 100644 --- a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/pt/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/pt/LC_MESSAGES/Autocomplete.po index 8853592b0e..b0bfeddbb8 100644 --- a/plugins/Autocomplete/locale/pt/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/pt/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/pt_BR/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/pt_BR/LC_MESSAGES/Autocomplete.po index 144e12d4df..e1af9c0e51 100644 --- a/plugins/Autocomplete/locale/pt_BR/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/pt_BR/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po index 94113990de..7c0b62fc48 100644 --- a/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po index cf31972397..3a0f38c296 100644 --- a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po index 09c11bd389..3fd8a04e75 100644 --- a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po index e55a039c10..0264875201 100644 --- a/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Awesomeness/locale/Awesomeness.pot b/plugins/Awesomeness/locale/Awesomeness.pot index cd0994288b..79214e2107 100644 --- a/plugins/Awesomeness/locale/Awesomeness.pot +++ b/plugins/Awesomeness/locale/Awesomeness.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po index 3b81540a7a..a0d8a6de5f 100644 --- a/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:29+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po index 01420bf59e..7993210b00 100644 --- a/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:29+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po index b7c6e9691c..9e294f6a47 100644 --- a/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:29+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po index 570da43e09..f9a86b2b73 100644 --- a/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:29+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po index 4fb3cbab06..e622154546 100644 --- a/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:29+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po index 617c2cb75e..c58b712d23 100644 --- a/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:29+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po index bc1377c7ff..2d5cfc7452 100644 --- a/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:29+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po index c9b1aed190..3e6d4b19a2 100644 --- a/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:29+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po index ad854bd44f..8012c9532a 100644 --- a/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:29+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po index ae886f19d0..147df16a17 100644 --- a/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:29+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/BitlyUrl/bitlyadminpanelaction.php b/plugins/BitlyUrl/bitlyadminpanelaction.php index 05b8e83267..70cb664b84 100644 --- a/plugins/BitlyUrl/bitlyadminpanelaction.php +++ b/plugins/BitlyUrl/bitlyadminpanelaction.php @@ -233,6 +233,10 @@ class BitlyAdminPanelForm extends AdminForm function formActions() { - $this->out->submit('submit', _('Save'), 'submit', null, _m('Save bit.ly settings')); + $this->out->submit('submit', + _m('BUTTON','Save'), + 'submit', + null, + _m('Save bit.ly settings')); } } diff --git a/plugins/BitlyUrl/locale/BitlyUrl.pot b/plugins/BitlyUrl/locale/BitlyUrl.pot index a6b29e5950..00da4aa4db 100644 --- a/plugins/BitlyUrl/locale/BitlyUrl.pot +++ b/plugins/BitlyUrl/locale/BitlyUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -55,7 +55,12 @@ msgstr "" msgid "API key" msgstr "" -#: bitlyadminpanelaction.php:236 +#: bitlyadminpanelaction.php:237 +msgctxt "BUTTON" +msgid "Save" +msgstr "" + +#: bitlyadminpanelaction.php:240 msgid "Save bit.ly settings" msgstr "" diff --git a/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po index f19d532c8c..b6f90c1c35 100644 --- a/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:18+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:30+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -61,6 +61,10 @@ msgstr "Імя карыстальніка" msgid "API key" msgstr "API-ключ" +msgctxt "BUTTON" +msgid "Save" +msgstr "" + msgid "Save bit.ly settings" msgstr "Захаваць устаноўкі bit.ly" diff --git a/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po index e44488355d..93e9441ac5 100644 --- a/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:18+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:30+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -55,6 +55,10 @@ msgstr "Nom de sessió" msgid "API key" msgstr "Clau API" +msgctxt "BUTTON" +msgid "Save" +msgstr "" + msgid "Save bit.ly settings" msgstr "Desa els paràmetres de bit.ly" diff --git a/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po index fbc054fd58..66978dd00b 100644 --- a/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:18+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:30+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -57,6 +57,10 @@ msgstr "Benutzername" msgid "API key" msgstr "API-Schlüssel" +msgctxt "BUTTON" +msgid "Save" +msgstr "" + msgid "Save bit.ly settings" msgstr "bit.ly-Einstellungen speichern" diff --git a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po index 012c99e91d..b0e685358c 100644 --- a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:18+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:30+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -58,6 +58,10 @@ msgstr "Nom d’utilisateur" msgid "API key" msgstr "Clé API" +msgctxt "BUTTON" +msgid "Save" +msgstr "" + msgid "Save bit.ly settings" msgstr "Sauvegarder les paramètres bit.ly" diff --git a/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po index f0e1d89f40..4280ca2057 100644 --- a/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:18+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:31+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -51,6 +51,10 @@ msgstr "Nome de usuario" msgid "API key" msgstr "" +msgctxt "BUTTON" +msgid "Save" +msgstr "" + msgid "Save bit.ly settings" msgstr "Gardar a configuración bit.ly" diff --git a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po index 2a2d07ff95..8a2a60555f 100644 --- a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:19+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:07+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:34+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -56,6 +56,10 @@ msgstr "Nomine de conto" msgid "API key" msgstr "Clave API" +msgctxt "BUTTON" +msgid "Save" +msgstr "Salveguardar" + msgid "Save bit.ly settings" msgstr "Salveguardar configurationes de bit.ly" diff --git a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po index 27af8f2bb3..8d5c2fd76a 100644 --- a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:19+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:07+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:34+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -56,6 +56,10 @@ msgstr "Корисничко име" msgid "API key" msgstr "API-клуч" +msgctxt "BUTTON" +msgid "Save" +msgstr "Зачувај" + msgid "Save bit.ly settings" msgstr "Зачувај нагодувања на bit.ly" diff --git a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po index f1b8871b6e..1b38c1ae7e 100644 --- a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:19+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:31+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -54,6 +54,10 @@ msgstr "Innloggingsnavn" msgid "API key" msgstr "API-nøkkel" +msgctxt "BUTTON" +msgid "Save" +msgstr "" + msgid "Save bit.ly settings" msgstr "Lagre bit.ly-innstillinger" diff --git a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po index 67f5f0a519..a357556c47 100644 --- a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:19+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:31+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -55,6 +55,10 @@ msgstr "Gebruikersnaam" msgid "API key" msgstr "API-sleutel" +msgctxt "BUTTON" +msgid "Save" +msgstr "Opslaan" + msgid "Save bit.ly settings" msgstr "bit.ly-instellingen opslaan" diff --git a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po index 98f264d908..893d59cea7 100644 --- a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:19+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:31+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -61,6 +61,10 @@ msgstr "Имя учётной записи" msgid "API key" msgstr "Ключ API" +msgctxt "BUTTON" +msgid "Save" +msgstr "" + msgid "Save bit.ly settings" msgstr "Сохранить настройки bit.ly" diff --git a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po index 201b8e76d7..2fc52ef57d 100644 --- a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:19+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:31+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -60,6 +60,10 @@ msgstr "Лоґін" msgid "API key" msgstr "API-ключ" +msgctxt "BUTTON" +msgid "Save" +msgstr "" + msgid "Save bit.ly settings" msgstr "Зберегти налаштування bit.ly" diff --git a/plugins/Blacklist/locale/Blacklist.pot b/plugins/Blacklist/locale/Blacklist.pot index e2bd9ffdb1..89f3854d5f 100644 --- a/plugins/Blacklist/locale/Blacklist.pot +++ b/plugins/Blacklist/locale/Blacklist.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po index 7b95c00ef9..45ce575127 100644 --- a/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:20+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:32+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/br/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/br/LC_MESSAGES/Blacklist.po index d848530f3f..833ff1c4df 100644 --- a/plugins/Blacklist/locale/br/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/br/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:20+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:32+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po index fdb8bba0bb..789df6af7b 100644 --- a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:20+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:32+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po index 14eaec7b66..e595a51b0b 100644 --- a/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:20+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:32+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po index 65a4d2d4d1..da12a39175 100644 --- a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:20+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:32+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po index 71beb0094a..488fe503ad 100644 --- a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:20+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:32+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po index 5593e348fd..8702fd75dd 100644 --- a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:20+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:32+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po index 71e8a2e05e..c63b6b7de8 100644 --- a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:20+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po index ee06097e81..a1dc935e00 100644 --- a/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po index bbe1c9ea1f..23d56b4565 100644 --- a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po index c5306851dd..e109d3d8d0 100644 --- a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/BlankAd/locale/BlankAd.pot b/plugins/BlankAd/locale/BlankAd.pot index 25849abf21..75f2e45a4b 100644 --- a/plugins/BlankAd/locale/BlankAd.pot +++ b/plugins/BlankAd/locale/BlankAd.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po index 3343b68da1..4113c77a09 100644 --- a/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po index c622979312..83b71cc10a 100644 --- a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po index bec996a454..3bf555dfeb 100644 --- a/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po index b4f863ee42..cab05cca48 100644 --- a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po index 27a86dadd3..056c7a7de2 100644 --- a/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po index 73a7381f8a..9942896b19 100644 --- a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po index 7303883874..a6e4bb1ebc 100644 --- a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po index d9e5f4863a..a2957654e1 100644 --- a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po index 6c62d1ebb2..dbd9f77a16 100644 --- a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po index a711540fb3..15cf032e80 100644 --- a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po index 4b3b10e44e..d8a55bb0af 100644 --- a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po index 1b03637489..bbe394c633 100644 --- a/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po index 3628a413c1..874991a7aa 100644 --- a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po index d835dfac8e..2e25792aea 100644 --- a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po index 9b6fab65b6..ef6d4450ba 100644 --- a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po index c51f220f74..053fce9787 100644 --- a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlogspamNet/BlogspamNetPlugin.php b/plugins/BlogspamNet/BlogspamNetPlugin.php index 51a86b4f36..06198e6c54 100644 --- a/plugins/BlogspamNet/BlogspamNetPlugin.php +++ b/plugins/BlogspamNet/BlogspamNetPlugin.php @@ -82,13 +82,13 @@ class BlogspamNetPlugin extends Plugin } else { common_debug("Blogspamnet results = " . $response); if (preg_match('/^ERROR(:(.*))?$/', $response, $match)) { - throw new ServerException(sprintf(_("Error from %s: %s"), $this->baseUrl, $match[2]), 500); + throw new ServerException(sprintf(_m("Error from %1$s: %2$s"), $this->baseUrl, $match[2]), 500); } else if (preg_match('/^SPAM(:(.*))?$/', $response, $match)) { - throw new ClientException(sprintf(_("Spam checker results: %s"), $match[2]), 400); + throw new ClientException(sprintf(_m("Spam checker results: %s"), $match[2]), 400); } else if (preg_match('/^OK$/', $response)) { // don't do anything } else { - throw new ServerException(sprintf(_("Unexpected response from %s: %s"), $this->baseUrl, $response), 500); + throw new ServerException(sprintf(_m("Unexpected response from %1$s: %2$s"), $this->baseUrl, $response), 500); } } return true; diff --git a/plugins/BlogspamNet/locale/BlogspamNet.pot b/plugins/BlogspamNet/locale/BlogspamNet.pot index 35bfb8e11d..bb77ea9da5 100644 --- a/plugins/BlogspamNet/locale/BlogspamNet.pot +++ b/plugins/BlogspamNet/locale/BlogspamNet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,11 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: BlogspamNetPlugin.php:87 +#, php-format +msgid "Spam checker results: %s" +msgstr "" + #: BlogspamNetPlugin.php:152 msgid "Plugin to check submitted notices with blogspam.net." msgstr "" diff --git a/plugins/BlogspamNet/locale/be-tarask/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/be-tarask/LC_MESSAGES/BlogspamNet.po index ad57835b14..71aed3b615 100644 --- a/plugins/BlogspamNet/locale/be-tarask/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/be-tarask/LC_MESSAGES/BlogspamNet.po @@ -9,19 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "" "Дапаўненьне для праверкі дасланых абвяшчэньняў з дапамогай blogspam.net." diff --git a/plugins/BlogspamNet/locale/br/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/br/LC_MESSAGES/BlogspamNet.po index 77fb96e2be..c7202ed28a 100644 --- a/plugins/BlogspamNet/locale/br/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/br/LC_MESSAGES/BlogspamNet.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "Astenn evit gwiriañ gant blogspam.net ar c'hmennoù kaset." diff --git a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po index 0da6d91fa2..6aac113fcc 100644 --- a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "Plugin zur Überprüfung von Nachrichten mit blogspam.net." diff --git a/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po index 1424af8664..5df7b49d70 100644 --- a/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "Extensión para revisar los mensajes enviados con blogspam.net." diff --git a/plugins/BlogspamNet/locale/fi/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/fi/LC_MESSAGES/BlogspamNet.po index a97cb31b11..9a3ce4d5d1 100644 --- a/plugins/BlogspamNet/locale/fi/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/fi/LC_MESSAGES/BlogspamNet.po @@ -10,17 +10,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:20+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "Liitännäinen viestien tarkastamiseen blogspam.net-palvelun avulla." diff --git a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po index b4f678b5bc..6690bd6c8b 100644 --- a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "Extension pour vérifier avec blogspam.net les avis soumis." diff --git a/plugins/BlogspamNet/locale/he/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/he/LC_MESSAGES/BlogspamNet.po index f35aab1e82..0dd922f062 100644 --- a/plugins/BlogspamNet/locale/he/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/he/LC_MESSAGES/BlogspamNet.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "תוסף לבדיקת ההתרעות הנשלחות מול blogspam.net." diff --git a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po index 5349f25373..ccf59219c3 100644 --- a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:12+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:34+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "Resultatos del controlo anti-spam: %s" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "Plug-in pro verificar notas submittite contra blogspam.net." diff --git a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po index 53e4a1cb7c..21004b1e4f 100644 --- a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:12+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:34+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "Резултати од проверката на спам: %s" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "Приклучок за проверка на поднесените забелешки со blogspam.net." diff --git a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po index 84808b8b83..441a042b03 100644 --- a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:35+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "Utvidelse for å sjekke innsendte notiser med blogspam.net." diff --git a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po index 301de3559d..5e9fef7956 100644 --- a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "Spamcontroleresultaten: %s" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "Plug-in om mededelingen te controleren tegen blogspam.net." diff --git a/plugins/BlogspamNet/locale/pt/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/pt/LC_MESSAGES/BlogspamNet.po index 88c8cf6033..a9a89dc37f 100644 --- a/plugins/BlogspamNet/locale/pt/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/pt/LC_MESSAGES/BlogspamNet.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:35+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "Plugin para verificar mensagens submetidas com o blogspam.net." diff --git a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po index c8dcf1876c..9a404fbeee 100644 --- a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:35+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "Плагин для проверки отправленных сообщений с помощью blogspam.net." diff --git a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po index 52ceeb6053..a086348f57 100644 --- a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:35+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "" "Pamasak upang masuri ang ipinasang mga pabatid sa pamamagitan ng blogspam." diff --git a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po index c48218b2b7..6756f6666f 100644 --- a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:35+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "Додаток для перевірки вказаних повідомлень на blogspam.net." diff --git a/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po index 32b13c7135..6a51cdc25f 100644 --- a/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:35+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=1; plural=0;\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "通过 blogspam.net 检查发布的消息的插件。" diff --git a/plugins/Bookmark/Bookmark.php b/plugins/Bookmark/Bookmark.php index 04cd8dbfa8..9ae4f7cfc6 100644 --- a/plugins/Bookmark/Bookmark.php +++ b/plugins/Bookmark/Bookmark.php @@ -199,7 +199,7 @@ class Bookmark extends Memcached_DataObject $nb = self::getByURL($profile, $url); if (!empty($nb)) { - throw new ClientException(_('Bookmark already exists.')); + throw new ClientException(_m('Bookmark already exists.')); } if (empty($options)) { @@ -209,7 +209,7 @@ class Bookmark extends Memcached_DataObject if (array_key_exists('uri', $options)) { $other = Bookmark::staticGet('uri', $options['uri']); if (!empty($other)) { - throw new ClientException(_('Bookmark already exists.')); + throw new ClientException(_m('Bookmark already exists.')); } } @@ -288,16 +288,19 @@ class Bookmark extends Memcached_DataObject $shortUrl = $url; } - $content = sprintf(_('"%s" %s %s %s'), + // @todo FIXME: i18n documentation. + // TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, + // TRANS: %4$s is space separated list of hash tags. + $content = sprintf(_m('"%1$s" %2$s %3$s %4$s'), $title, $shortUrl, $description, implode(' ', $hashtags)); - $rendered = sprintf(_(''. - '%s '. - '%s '. - '%s'. + $rendered = sprintf(_m(''. + '%2$s '. + '%3$s '. + '%4$s'. ''), htmlspecialchars($url), htmlspecialchars($title), diff --git a/plugins/Bookmark/BookmarkPlugin.php b/plugins/Bookmark/BookmarkPlugin.php index 4c13ec79cb..a24f207720 100644 --- a/plugins/Bookmark/BookmarkPlugin.php +++ b/plugins/Bookmark/BookmarkPlugin.php @@ -274,7 +274,7 @@ class BookmarkPlugin extends MicroAppPlugin $action->elementStart('li'); $action->element('a', array('href' => common_local_url('importdelicious')), - _('Import del.icio.us bookmarks')); + _m('Import del.icio.us bookmarks')); $action->elementEnd('li'); } @@ -379,7 +379,7 @@ class BookmarkPlugin extends MicroAppPlugin $relLinkEls = ActivityUtils::getLinks($bookmark->element, 'related'); if (count($relLinkEls) < 1) { - throw new ClientException(_('Expected exactly 1 link '. + throw new ClientException(_m('Expected exactly 1 link '. 'rel=related in a Bookmark.')); } @@ -472,7 +472,7 @@ class BookmarkPlugin extends MicroAppPlugin $attachments = $notice->attachments(); if (count($attachments) != 1) { - throw new ServerException(_('Bookmark notice with the '. + throw new ServerException(_m('Bookmark notice with the '. 'wrong number of attachments.')); } diff --git a/plugins/Bookmark/bookmarkform.php b/plugins/Bookmark/bookmarkform.php index d8cf1f7f5b..074571e162 100644 --- a/plugins/Bookmark/bookmarkform.php +++ b/plugins/Bookmark/bookmarkform.php @@ -121,30 +121,30 @@ class BookmarkForm extends Form $this->li(); $this->out->input('title', - _('Title'), + _m('LABEL','Title'), $this->_title, - _('Title of the bookmark')); + _m('Title of the bookmark')); $this->unli(); $this->li(); $this->out->input('url', - _('URL'), + _m('LABEL','URL'), $this->_url, - _('URL to bookmark')); + _m('URL to bookmark')); $this->unli(); $this->li(); $this->out->input('tags', - _('Tags'), + _m('LABEL','Tags'), $this->_tags, - _('Comma- or space-separated list of tags')); + _m('Comma- or space-separated list of tags')); $this->unli(); $this->li(); $this->out->input('description', - _('Description'), + _m('LABEL','Description'), $this->_description, - _('Description of the URL')); + _m('Description of the URL')); $this->unli(); $this->out->elementEnd('ul'); diff --git a/plugins/Bookmark/bookmarkpopup.php b/plugins/Bookmark/bookmarkpopup.php index 33f983a93a..f254557b81 100644 --- a/plugins/Bookmark/bookmarkpopup.php +++ b/plugins/Bookmark/bookmarkpopup.php @@ -55,7 +55,7 @@ class BookmarkpopupAction extends NewbookmarkAction // TRANS: Title for mini-posting window loaded from bookmarklet. // TRANS: %s is the StatusNet site name. $this->element('title', - null, sprintf(_('Bookmark on %s'), + null, sprintf(_m('Bookmark on %s'), common_config('site', 'name'))); } diff --git a/plugins/Bookmark/deliciousbackupimporter.php b/plugins/Bookmark/deliciousbackupimporter.php index 197c7a143b..a8d2819fe7 100644 --- a/plugins/Bookmark/deliciousbackupimporter.php +++ b/plugins/Bookmark/deliciousbackupimporter.php @@ -82,7 +82,7 @@ class DeliciousBackupImporter extends QueueHandler $dls = $doc->getElementsByTagName('dl'); if ($dls->length != 1) { - throw new ClientException(_("Bad import file.")); + throw new ClientException(_m("Bad import file.")); } $dl = $dls->item(0); @@ -165,7 +165,7 @@ class DeliciousBackupImporter extends QueueHandler $as = $dt->getElementsByTagName('a'); if ($as->length == 0) { - throw new ClientException(_("No tag in a
.")); + throw new ClientException(_m("No tag in a
.")); } $a = $as->item(0); @@ -173,7 +173,7 @@ class DeliciousBackupImporter extends QueueHandler $private = $a->getAttribute('private'); if ($private != 0) { - throw new ClientException(_('Skipping private bookmark.')); + throw new ClientException(_m('Skipping private bookmark.')); } if (!empty($dd)) { diff --git a/plugins/Bookmark/importbookmarks.php b/plugins/Bookmark/importbookmarks.php index 5518b00e97..e16cf9d633 100644 --- a/plugins/Bookmark/importbookmarks.php +++ b/plugins/Bookmark/importbookmarks.php @@ -75,7 +75,7 @@ function getBookmarksFile() } // TRANS: %s is the filename that contains a backup for a user. - printfv(_("Getting backup from file '%s'.")."\n", $filename); + printfv(_m("Getting backup from file \"%s\".")."\n", $filename); $html = file_get_contents($filename); diff --git a/plugins/Bookmark/importdelicious.php b/plugins/Bookmark/importdelicious.php index b98b215717..0d206e456d 100644 --- a/plugins/Bookmark/importdelicious.php +++ b/plugins/Bookmark/importdelicious.php @@ -58,7 +58,7 @@ class ImportdeliciousAction extends Action function title() { - return _("Import del.icio.us bookmarks"); + return _m("Import del.icio.us bookmarks"); } /** @@ -76,13 +76,13 @@ class ImportdeliciousAction extends Action $cur = common_current_user(); if (empty($cur)) { - throw new ClientException(_('Only logged-in users can '. + throw new ClientException(_m('Only logged-in users can '. 'import del.icio.us backups.'), 403); } if (!$cur->hasRight(BookmarkPlugin::IMPORTDELICIOUS)) { - throw new ClientException(_('You may not restore your account.'), 403); + throw new ClientException(_m('You may not restore your account.'), 403); } return true; @@ -121,7 +121,7 @@ class ImportdeliciousAction extends Action $this->checkSessionToken(); if (!isset($_FILES[ImportDeliciousForm::FILEINPUT]['error'])) { - throw new ClientException(_('No uploaded file.')); + throw new ClientException(_m('No uploaded file.')); } switch ($_FILES[ImportDeliciousForm::FILEINPUT]['error']) { @@ -129,42 +129,42 @@ class ImportdeliciousAction extends Action break; case UPLOAD_ERR_INI_SIZE: // TRANS: Client exception thrown when an uploaded file is too large. - throw new ClientException(_('The uploaded file exceeds the ' . + throw new ClientException(_m('The uploaded file exceeds the ' . 'upload_max_filesize directive in php.ini.')); return; case UPLOAD_ERR_FORM_SIZE: throw new ClientException( // TRANS: Client exception. - _('The uploaded file exceeds the MAX_FILE_SIZE directive' . + _m('The uploaded file exceeds the MAX_FILE_SIZE directive' . ' that was specified in the HTML form.')); return; case UPLOAD_ERR_PARTIAL: @unlink($_FILES[ImportDeliciousForm::FILEINPUT]['tmp_name']); // TRANS: Client exception. - throw new ClientException(_('The uploaded file was only' . + throw new ClientException(_m('The uploaded file was only' . ' partially uploaded.')); return; case UPLOAD_ERR_NO_FILE: // No file; probably just a non-AJAX submission. - throw new ClientException(_('No uploaded file.')); + throw new ClientException(_m('No uploaded file.')); return; case UPLOAD_ERR_NO_TMP_DIR: // TRANS: Client exception thrown when a temporary folder is not present - throw new ClientException(_('Missing a temporary folder.')); + throw new ClientException(_m('Missing a temporary folder.')); return; case UPLOAD_ERR_CANT_WRITE: // TRANS: Client exception thrown when writing to disk is not possible - throw new ClientException(_('Failed to write file to disk.')); + throw new ClientException(_m('Failed to write file to disk.')); return; case UPLOAD_ERR_EXTENSION: // TRANS: Client exception thrown when a file upload has been stopped - throw new ClientException(_('File upload stopped by extension.')); + throw new ClientException(_m('File upload stopped by extension.')); return; default: common_log(LOG_ERR, __METHOD__ . ": Unknown upload error " . $_FILES[ImportDeliciousForm::FILEINPUT]['error']); // TRANS: Client exception thrown when a file upload operation has failed - throw new ClientException(_('System error uploading file.')); + throw new ClientException(_m('System error uploading file.')); return; } @@ -183,7 +183,7 @@ class ImportdeliciousAction extends Action throw new ServerException("File '$filename' not readable."); } - common_debug(sprintf(_("Getting backup from file '%s'."), $filename)); + common_debug(sprintf(_m("Getting backup from file '%s'."), $filename)); $html = file_get_contents($filename); @@ -219,10 +219,10 @@ class ImportdeliciousAction extends Action { if ($this->success) { $this->element('p', null, - _('Bookmarks have been imported. Your bookmarks should now appear in search and your profile page.')); + _m('Bookmarks have been imported. Your bookmarks should now appear in search and your profile page.')); } else if ($this->inprogress) { $this->element('p', null, - _('Bookmarks are being imported. Please wait a few minutes for results.')); + _m('Bookmarks are being imported. Please wait a few minutes for results.')); } else { $form = new ImportDeliciousForm($this); $form->show(); @@ -310,7 +310,7 @@ class ImportDeliciousForm extends Form { $this->out->elementStart('p', 'instructions'); - $this->out->raw(_('You can upload a backed-up '. + $this->out->raw(_m('You can upload a backed-up '. 'delicious.com bookmarks file.')); $this->out->elementEnd('p'); @@ -340,6 +340,6 @@ class ImportDeliciousForm extends Form _m('BUTTON', 'Upload'), 'submit', null, - _('Upload the file')); + _m('Upload the file')); } } diff --git a/plugins/Bookmark/locale/Bookmark.pot b/plugins/Bookmark/locale/Bookmark.pot index 5ac2a225d7..568c8ecba6 100644 --- a/plugins/Bookmark/locale/Bookmark.pot +++ b/plugins/Bookmark/locale/Bookmark.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,20 +16,224 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: deliciousbackupimporter.php:85 +msgid "Bad import file." +msgstr "" + +#: deliciousbackupimporter.php:168 +msgid "No tag in a
." +msgstr "" + +#: deliciousbackupimporter.php:176 +msgid "Skipping private bookmark." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +#: showbookmark.php:60 showbookmark.php:68 +msgid "No such bookmark." +msgstr "" + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#: showbookmark.php:85 +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "" + #: BookmarkPlugin.php:233 msgid "Simple extension for supporting bookmarks." msgstr "" -#: BookmarkPlugin.php:642 +#: BookmarkPlugin.php:277 importdelicious.php:61 +msgid "Import del.icio.us bookmarks" +msgstr "" + +#: BookmarkPlugin.php:382 +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" + +#: BookmarkPlugin.php:475 +msgid "Bookmark notice with the wrong number of attachments." +msgstr "" + +#: BookmarkPlugin.php:643 msgid "Bookmark" msgstr "" +#: bookmarkpopup.php:58 +#, php-format +msgid "Bookmark on %s" +msgstr "" + +#: Bookmark.php:202 Bookmark.php:212 +msgid "Bookmark already exists." +msgstr "" + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#: Bookmark.php:294 +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "" + +#: Bookmark.php:300 +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" + +#: noticebyurl.php:70 +msgid "Unknown URL" +msgstr "" + +#: noticebyurl.php:92 +#, php-format +msgid "Notices linking to %s" +msgstr "" + +#: importdelicious.php:79 +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" + +#: importdelicious.php:85 +msgid "You may not restore your account." +msgstr "" + +#: importdelicious.php:124 importdelicious.php:149 +msgid "No uploaded file." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded file is too large. +#: importdelicious.php:132 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +#: importdelicious.php:138 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +#: importdelicious.php:144 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present +#: importdelicious.php:153 +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible +#: importdelicious.php:157 +msgid "Failed to write file to disk." +msgstr "" + +#. TRANS: Client exception thrown when a file upload has been stopped +#: importdelicious.php:161 +msgid "File upload stopped by extension." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has failed +#: importdelicious.php:167 +msgid "System error uploading file." +msgstr "" + +#: importdelicious.php:186 +#, php-format +msgid "Getting backup from file '%s'." +msgstr "" + +#: importdelicious.php:222 +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" + +#: importdelicious.php:225 +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" + +#: importdelicious.php:313 +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" + #: importdelicious.php:340 msgctxt "BUTTON" msgid "Upload" msgstr "" +#: importdelicious.php:343 +msgid "Upload the file" +msgstr "" + +#: bookmarkform.php:124 +msgctxt "LABEL" +msgid "Title" +msgstr "" + +#: bookmarkform.php:126 +msgid "Title of the bookmark" +msgstr "" + +#: bookmarkform.php:131 +msgctxt "LABEL" +msgid "URL" +msgstr "" + +#: bookmarkform.php:133 +msgid "URL to bookmark" +msgstr "" + +#: bookmarkform.php:138 +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +#: bookmarkform.php:140 +msgid "Comma- or space-separated list of tags" +msgstr "" + +#: bookmarkform.php:145 +msgctxt "LABEL" +msgid "Description" +msgstr "" + +#: bookmarkform.php:147 +msgid "Description of the URL" +msgstr "" + #: bookmarkform.php:162 msgctxt "BUTTON" msgid "Save" msgstr "" + +#: newbookmark.php:65 +msgid "New bookmark" +msgstr "" + +#: newbookmark.php:83 +msgid "Must be logged in to post a bookmark." +msgstr "" + +#: newbookmark.php:133 +msgid "Bookmark must have a title." +msgstr "" + +#: newbookmark.php:137 +msgid "Bookmark must have an URL." +msgstr "" + +#. TRANS: Page title after sending a notice. +#: newbookmark.php:159 +msgid "Notice posted" +msgstr "" + +#. TRANS: %s is the filename that contains a backup for a user. +#: importbookmarks.php:78 +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "" diff --git a/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po index 2389a45a01..5598bc0a68 100644 --- a/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:00+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -23,16 +23,179 @@ msgstr "" "2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " "99) ? 4 : 5 ) ) ) );\n" +msgid "Bad import file." +msgstr "" + +msgid "No tag in a
." +msgstr "" + +msgid "Skipping private bookmark." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "" + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "" + msgid "Simple extension for supporting bookmarks." msgstr "" +msgid "Import del.icio.us bookmarks" +msgstr "" + +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" + +msgid "Bookmark notice with the wrong number of attachments." +msgstr "" + msgid "Bookmark" msgstr "علّم" +#, fuzzy, php-format +msgid "Bookmark on %s" +msgstr "علّم" + +msgid "Bookmark already exists." +msgstr "" + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "" + +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" + +msgid "Unknown URL" +msgstr "" + +#, php-format +msgid "Notices linking to %s" +msgstr "" + +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" + +msgid "You may not restore your account." +msgstr "" + +msgid "No uploaded file." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible +msgid "Failed to write file to disk." +msgstr "" + +#. TRANS: Client exception thrown when a file upload has been stopped +msgid "File upload stopped by extension." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has failed +msgid "System error uploading file." +msgstr "" + +#, php-format +msgid "Getting backup from file '%s'." +msgstr "" + +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" + +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" + +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" + msgctxt "BUTTON" msgid "Upload" msgstr "ارفع" +msgid "Upload the file" +msgstr "" + +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +#, fuzzy +msgid "URL to bookmark" +msgstr "علّم" + +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +msgid "Comma- or space-separated list of tags" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the URL" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "احفظ" + +#, fuzzy +msgid "New bookmark" +msgstr "علّم" + +msgid "Must be logged in to post a bookmark." +msgstr "" + +msgid "Bookmark must have a title." +msgstr "" + +msgid "Bookmark must have an URL." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "" diff --git a/plugins/Bookmark/locale/br/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/br/LC_MESSAGES/Bookmark.po index 6c3d412efb..52f3cbc84e 100644 --- a/plugins/Bookmark/locale/br/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/br/LC_MESSAGES/Bookmark.po @@ -9,28 +9,189 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:23+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:00+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgid "Bad import file." +msgstr "" + +msgid "No tag in a
." +msgstr "" + +msgid "Skipping private bookmark." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "" + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "" + msgid "Simple extension for supporting bookmarks." msgstr "" +msgid "Import del.icio.us bookmarks" +msgstr "" + +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" + +msgid "Bookmark notice with the wrong number of attachments." +msgstr "" + msgid "Bookmark" msgstr "" +#, php-format +msgid "Bookmark on %s" +msgstr "" + +msgid "Bookmark already exists." +msgstr "" + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "" + +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" + +msgid "Unknown URL" +msgstr "" + +#, php-format +msgid "Notices linking to %s" +msgstr "" + +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" + +msgid "You may not restore your account." +msgstr "" + +msgid "No uploaded file." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible +msgid "Failed to write file to disk." +msgstr "" + +#. TRANS: Client exception thrown when a file upload has been stopped +msgid "File upload stopped by extension." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has failed +msgid "System error uploading file." +msgstr "" + +#, php-format +msgid "Getting backup from file '%s'." +msgstr "" + +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" + +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" + +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" + msgctxt "BUTTON" msgid "Upload" msgstr "Enporzhiañ" +msgid "Upload the file" +msgstr "" + +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL to bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +msgid "Comma- or space-separated list of tags" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the URL" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "Enrollañ" + +msgid "New bookmark" +msgstr "" + +msgid "Must be logged in to post a bookmark." +msgstr "" + +msgid "Bookmark must have a title." +msgstr "" + +msgid "Bookmark must have an URL." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "" diff --git a/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po index f8188b455a..5b55789ac1 100644 --- a/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po @@ -9,28 +9,189 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:23+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:00+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Bad import file." +msgstr "" + +msgid "No tag in a
." +msgstr "" + +msgid "Skipping private bookmark." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "" + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "" + msgid "Simple extension for supporting bookmarks." msgstr "Einfache Erweiterung zur Unterstützung von Lesezeichen." +msgid "Import del.icio.us bookmarks" +msgstr "" + +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" + +msgid "Bookmark notice with the wrong number of attachments." +msgstr "" + msgid "Bookmark" msgstr "" +#, php-format +msgid "Bookmark on %s" +msgstr "" + +msgid "Bookmark already exists." +msgstr "" + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "" + +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" + +msgid "Unknown URL" +msgstr "" + +#, php-format +msgid "Notices linking to %s" +msgstr "" + +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" + +msgid "You may not restore your account." +msgstr "" + +msgid "No uploaded file." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible +msgid "Failed to write file to disk." +msgstr "" + +#. TRANS: Client exception thrown when a file upload has been stopped +msgid "File upload stopped by extension." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has failed +msgid "System error uploading file." +msgstr "" + +#, php-format +msgid "Getting backup from file '%s'." +msgstr "" + +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" + +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" + +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" + msgctxt "BUTTON" msgid "Upload" msgstr "Hochladen" +msgid "Upload the file" +msgstr "" + +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL to bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +msgid "Comma- or space-separated list of tags" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the URL" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "Speichern" + +msgid "New bookmark" +msgstr "" + +msgid "Must be logged in to post a bookmark." +msgstr "" + +msgid "Bookmark must have a title." +msgstr "" + +msgid "Bookmark must have an URL." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "" diff --git a/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po index 9d04d357e8..11b9d33f80 100644 --- a/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po @@ -10,28 +10,191 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:00+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgid "Bad import file." +msgstr "" + +msgid "No tag in a
." +msgstr "" + +msgid "Skipping private bookmark." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "" + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "" + msgid "Simple extension for supporting bookmarks." msgstr "Simple extension pour supporter les signets." +msgid "Import del.icio.us bookmarks" +msgstr "" + +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" + +msgid "Bookmark notice with the wrong number of attachments." +msgstr "" + msgid "Bookmark" msgstr "Favoris" +#, fuzzy, php-format +msgid "Bookmark on %s" +msgstr "Favoris" + +msgid "Bookmark already exists." +msgstr "" + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "" + +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" + +msgid "Unknown URL" +msgstr "" + +#, php-format +msgid "Notices linking to %s" +msgstr "" + +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" + +msgid "You may not restore your account." +msgstr "" + +msgid "No uploaded file." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible +msgid "Failed to write file to disk." +msgstr "" + +#. TRANS: Client exception thrown when a file upload has been stopped +msgid "File upload stopped by extension." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has failed +msgid "System error uploading file." +msgstr "" + +#, php-format +msgid "Getting backup from file '%s'." +msgstr "" + +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" + +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" + +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" + msgctxt "BUTTON" msgid "Upload" msgstr "Téléverser" +msgid "Upload the file" +msgstr "" + +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +#, fuzzy +msgid "URL to bookmark" +msgstr "Favoris" + +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +msgid "Comma- or space-separated list of tags" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the URL" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "Sauvegarder" + +#, fuzzy +msgid "New bookmark" +msgstr "Favoris" + +msgid "Must be logged in to post a bookmark." +msgstr "" + +msgid "Bookmark must have a title." +msgstr "" + +msgid "Bookmark must have an URL." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "" diff --git a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po index ac08c24d9b..be2466170e 100644 --- a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po @@ -9,28 +9,203 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:23+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:15+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Bad import file." +msgstr "Mal file de importation." + +msgid "No tag in a
." +msgstr "Etiquetta mancante in un
." + +msgid "Skipping private bookmark." +msgstr "Salta un marcapaginas private." + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "Iste marcapaginas non existe." + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "Marcapaginas de %1$s pro \"%2$s\"" + msgid "Simple extension for supporting bookmarks." msgstr "Extension simple pro supportar marcapaginas." +msgid "Import del.icio.us bookmarks" +msgstr "Importar marcapaginas de del.icio.us" + +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" +"Es expectate exactemente 1 ligamine \"rel=related\" in un marcapaginas." + +msgid "Bookmark notice with the wrong number of attachments." +msgstr "Le nota de marcapaginas ha un numero erronee de annexos." + msgid "Bookmark" msgstr "Marcapaginas" +#, php-format +msgid "Bookmark on %s" +msgstr "Marcapaginas in %s" + +msgid "Bookmark already exists." +msgstr "Le marcapaginas ja existe." + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "\"%1$s\" %2$s %3$s %4$s" + +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" +"%2$s " +"%3$s %4$s" + +msgid "Unknown URL" +msgstr "URL incognite" + +#, php-format +msgid "Notices linking to %s" +msgstr "Notas ligante a %s" + +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" +"Es necessari aperir session pro poter importar le copias de reserva de del." +"icio.us." + +msgid "You may not restore your account." +msgstr "Tu non pote restaurar tu conto." + +msgid "No uploaded file." +msgstr "Nulle file incargate." + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "Le file incargate excede le directiva upload_max_filesize in php.ini." + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" +"Le file incargate excede le directiva MAX_FILE_SIZE specificate in le " +"formulario HTML." + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "Le file incargate ha solmente essite incargate partialmente." + +#. TRANS: Client exception thrown when a temporary folder is not present +msgid "Missing a temporary folder." +msgstr "Manca un dossier temporari." + +#. TRANS: Client exception thrown when writing to disk is not possible +msgid "Failed to write file to disk." +msgstr "Falleva de scriber le file in disco." + +#. TRANS: Client exception thrown when a file upload has been stopped +msgid "File upload stopped by extension." +msgstr "Incargamento de file stoppate per un extension." + +#. TRANS: Client exception thrown when a file upload operation has failed +msgid "System error uploading file." +msgstr "Error de systema durante le incargamento del file." + +#, php-format +msgid "Getting backup from file '%s'." +msgstr "Obtene copia de reserva ex file '%s'." + +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" +"Le marcapaginas ha essite importate. Tu marcapaginas debe ora apparer in " +"recercas e in tu pagina de profilo." + +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" +"Le marcapaginas es actualmente importate. Per favor attende alcun minutas " +"pro le resultatos." + +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" +"Tu pote incargar un copia de reserva de un file de marcapaginas de delicious." +"com." + msgctxt "BUTTON" msgid "Upload" msgstr "Incargar" +msgid "Upload the file" +msgstr "Incargar le file" + +msgctxt "LABEL" +msgid "Title" +msgstr "Titulo" + +msgid "Title of the bookmark" +msgstr "Titulo del marcapginas" + +msgctxt "LABEL" +msgid "URL" +msgstr "URL" + +msgid "URL to bookmark" +msgstr "URL pro marcapaginas" + +msgctxt "LABEL" +msgid "Tags" +msgstr "Etiquettas" + +msgid "Comma- or space-separated list of tags" +msgstr "Un lista de etiquettas separate per commas o spatios" + +msgctxt "LABEL" +msgid "Description" +msgstr "Description" + +msgid "Description of the URL" +msgstr "Description del URL" + msgctxt "BUTTON" msgid "Save" msgstr "Salveguardar" + +msgid "New bookmark" +msgstr "Nove marcapaginas" + +msgid "Must be logged in to post a bookmark." +msgstr "Es necessari aperir session pro inserer un marcapaginas." + +msgid "Bookmark must have a title." +msgstr "Le marcapaginas debe haber un titulo." + +msgid "Bookmark must have an URL." +msgstr "Le marcapaginas debe haber un URL." + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "Nota publicate" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "Obtene copia de reserva ex file \"%s\"." diff --git a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po index edf8af0487..d9b77be873 100644 --- a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po @@ -9,28 +9,200 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:23+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:15+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +msgid "Bad import file." +msgstr "Неправилна податотека за увоз." + +msgid "No tag in a
." +msgstr "Нема ознака во
." + +msgid "Skipping private bookmark." +msgstr "Прескокнувам приватнен одбележувач." + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "Нема таков одбележувач." + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "Одбележувачот на %1$s за „%2$s“" + msgid "Simple extension for supporting bookmarks." msgstr "Прост додаток за поддршка на обележувачи." +msgid "Import del.icio.us bookmarks" +msgstr "Увези одбележувачи del.icio.us" + +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "Очекував точно 1 врска rel=related во одбележувач." + +msgid "Bookmark notice with the wrong number of attachments." +msgstr "Одбележи забелешка со погрешен број на прилози." + msgid "Bookmark" msgstr "Одбележи" +#, php-format +msgid "Bookmark on %s" +msgstr "Одбележи на %s" + +msgid "Bookmark already exists." +msgstr "Одбележувачот веќе постои." + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "„%1$s“ %2$s %3$s %4$s" + +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" +"%2$s " +"%3$s %4$s" + +msgid "Unknown URL" +msgstr "Непозната URL-адреса" + +#, php-format +msgid "Notices linking to %s" +msgstr "Забелешки со врски до %s" + +msgid "Only logged-in users can import del.icio.us backups." +msgstr "Само најавени корисници можат да увезуваат резерви del.icio.us." + +msgid "You may not restore your account." +msgstr "Не можете да ја вратите Вашата сметка." + +msgid "No uploaded file." +msgstr "Нема подигната податотека." + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" +"Подигнатата податотека ја надминува директивата upload_max_filesize во php." +"ini." + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" +"Подигнатата податотека ја надминува директивата the MAX_FILE_SIZE назначена " +"во HTML-образецот." + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "Подигнатата податотека е само делумно подигната." + +#. TRANS: Client exception thrown when a temporary folder is not present +msgid "Missing a temporary folder." +msgstr "Недостасува привремена папка." + +#. TRANS: Client exception thrown when writing to disk is not possible +msgid "Failed to write file to disk." +msgstr "Податотеката не може да се запише на дискот." + +#. TRANS: Client exception thrown when a file upload has been stopped +msgid "File upload stopped by extension." +msgstr "Подигањето на податотеката е запрено од додатокот." + +#. TRANS: Client exception thrown when a file upload operation has failed +msgid "System error uploading file." +msgstr "Системска грешка при подигањето на податотеката." + +#, php-format +msgid "Getting backup from file '%s'." +msgstr "Земам резерва на податотеката „%s“." + +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" +"Одележувачите се увезени. Сега треба да се појават во пребарувањето и во " +"Вашата профилна страница." + +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "Одбележувачите се увезуваат. Почекајте неколку минути." + +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" +"Можете да подигнете резервен приемерок на податотека со одбележувачи backed-" +"up delicious.com" + msgctxt "BUTTON" msgid "Upload" msgstr "Подигни" +msgid "Upload the file" +msgstr "Подигни ја податотеката" + +msgctxt "LABEL" +msgid "Title" +msgstr "Назив" + +msgid "Title of the bookmark" +msgstr "Назив на одбележувачот" + +msgctxt "LABEL" +msgid "URL" +msgstr "URL" + +msgid "URL to bookmark" +msgstr "URL за одбележување" + +msgctxt "LABEL" +msgid "Tags" +msgstr "Ознаки" + +msgid "Comma- or space-separated list of tags" +msgstr "Список на ознаки одделен со запирки или празни места" + +msgctxt "LABEL" +msgid "Description" +msgstr "Опис" + +msgid "Description of the URL" +msgstr "Опис на URL-адресата" + msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" + +msgid "New bookmark" +msgstr "Ново бележење" + +msgid "Must be logged in to post a bookmark." +msgstr "Мора да сте најавени за да објавите одбележувач." + +msgid "Bookmark must have a title." +msgstr "Одбележувачот мора да има наслов." + +msgid "Bookmark must have an URL." +msgstr "Одбележувачот мора да има URL-адреса." + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "Забелешката е објавена" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "Земам резерва на податотеката „%s“." diff --git a/plugins/Bookmark/locale/my/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/my/LC_MESSAGES/Bookmark.po index 3d8b573447..e58bc0e31c 100644 --- a/plugins/Bookmark/locale/my/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/my/LC_MESSAGES/Bookmark.po @@ -9,28 +9,189 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:23+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:00+0000\n" "Language-Team: Burmese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: my\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Bad import file." +msgstr "" + +msgid "No tag in a
." +msgstr "" + +msgid "Skipping private bookmark." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "" + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "" + msgid "Simple extension for supporting bookmarks." msgstr "" +msgid "Import del.icio.us bookmarks" +msgstr "" + +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" + +msgid "Bookmark notice with the wrong number of attachments." +msgstr "" + msgid "Bookmark" msgstr "" +#, php-format +msgid "Bookmark on %s" +msgstr "" + +msgid "Bookmark already exists." +msgstr "" + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "" + +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" + +msgid "Unknown URL" +msgstr "" + +#, php-format +msgid "Notices linking to %s" +msgstr "" + +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" + +msgid "You may not restore your account." +msgstr "" + +msgid "No uploaded file." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible +msgid "Failed to write file to disk." +msgstr "" + +#. TRANS: Client exception thrown when a file upload has been stopped +msgid "File upload stopped by extension." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has failed +msgid "System error uploading file." +msgstr "" + +#, php-format +msgid "Getting backup from file '%s'." +msgstr "" + +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" + +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" + +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" + msgctxt "BUTTON" msgid "Upload" msgstr "Upload တင်ရန်" +msgid "Upload the file" +msgstr "" + +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL to bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +msgid "Comma- or space-separated list of tags" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the URL" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "သိမ်းရန်" + +msgid "New bookmark" +msgstr "" + +msgid "Must be logged in to post a bookmark." +msgstr "" + +msgid "Bookmark must have a title." +msgstr "" + +msgid "Bookmark must have an URL." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "" diff --git a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po index ba8a9b99b6..2ed1e17167 100644 --- a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po @@ -9,28 +9,202 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:23+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:37+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Bad import file." +msgstr "Ongeldig importbestand." + +msgid "No tag in a
." +msgstr "Geen label in een
." + +msgid "Skipping private bookmark." +msgstr "Privébladwijzer wordt overgeslagen." + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "De bladwijzer bestaat niet." + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "Bladwijzer van %1$s voor \"%2$s\"" + msgid "Simple extension for supporting bookmarks." msgstr "Eenvoudige extensie voor de ondersteuning van bladwijzers." +msgid "Import del.icio.us bookmarks" +msgstr "Bladwijzers van del.icio.us importeren" + +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" +"Er wordt precies 1 verwijzing \"rel=related\" verwacht in een bladwijzer." + +msgid "Bookmark notice with the wrong number of attachments." +msgstr "Bladwijzermededeling met het verkeerde aantal bijlagen." + msgid "Bookmark" msgstr "Bladwijzer" +#, php-format +msgid "Bookmark on %s" +msgstr "Bladwijzer op %s" + +msgid "Bookmark already exists." +msgstr "De bladwijzer bestaat al." + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "\"%1$s\" %2$s %3$s %4$s" + +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" +"%2$s " +"%3$s %4$s" + +msgid "Unknown URL" +msgstr "Onbekende URL" + +#, php-format +msgid "Notices linking to %s" +msgstr "Mededeling die verwijzen naar %s" + +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" +"Alleen aangemelde gebruikers kunnen back-ups van del-icio.us importeren." + +msgid "You may not restore your account." +msgstr "U mag uw gebruiker niet terugladen van back-up." + +msgid "No uploaded file." +msgstr "Er is geen geüpload bestand." + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" +"Het te uploaden bestand is groter dan de ingestelde upload_max_filesize in " +"php.ini." + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" +"Het te uploaden bestand is groter dan de ingestelde MAX_FILE_SIZE in het " +"HTML-formulier." + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "De upload is slechts gedeeltelijk voltooid." + +#. TRANS: Client exception thrown when a temporary folder is not present +msgid "Missing a temporary folder." +msgstr "De tijdelijke map is niet aanwezig." + +#. TRANS: Client exception thrown when writing to disk is not possible +msgid "Failed to write file to disk." +msgstr "Het was niet mogelijk naar schijf te schrijven." + +#. TRANS: Client exception thrown when a file upload has been stopped +msgid "File upload stopped by extension." +msgstr "Het uploaden van het bestand is tegengehouden door een uitbreiding." + +#. TRANS: Client exception thrown when a file upload operation has failed +msgid "System error uploading file." +msgstr "Er is een systeemfout opgetreden tijdens het uploaden van het bestand." + +#, php-format +msgid "Getting backup from file '%s'." +msgstr "De back-up wordt uit het bestand \"%s\" geladen." + +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" +"De bladwijzers zijn geïmporteerd. Uw bladwijzers horen nu te verschijnen in " +"zoekopdrachten en op uw profielpagina." + +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" +"De bladwijzers worden geïmporteerd. Wacht een aantal minuten tot dit is " +"afgerond." + +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "U kunt een back-upbestand met bladwijzers van delicious.com uploaden." + msgctxt "BUTTON" msgid "Upload" msgstr "Uploaden" +msgid "Upload the file" +msgstr "Bestand uploaden" + +msgctxt "LABEL" +msgid "Title" +msgstr "Naam" + +msgid "Title of the bookmark" +msgstr "Naam van de bladwijzer" + +msgctxt "LABEL" +msgid "URL" +msgstr "URL" + +msgid "URL to bookmark" +msgstr "URL voor bladwijzer" + +msgctxt "LABEL" +msgid "Tags" +msgstr "Labels" + +msgid "Comma- or space-separated list of tags" +msgstr "Lijst met labels door komma's of spaties gescheiden" + +msgctxt "LABEL" +msgid "Description" +msgstr "Beschrijving" + +msgid "Description of the URL" +msgstr "Beschrijving van de URL" + msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" + +msgid "New bookmark" +msgstr "Nieuwe bladwijzer" + +msgid "Must be logged in to post a bookmark." +msgstr "U moet aangemeld zijn om een bladwijzer te kunnen toevoegen." + +msgid "Bookmark must have a title." +msgstr "Een bladwijzer moet een naam hebben." + +msgid "Bookmark must have an URL." +msgstr "Een bladwijzer moet een URL hebben." + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "De mededeling is verzonden" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "De back-up wordt uit het bestand \"%s\" geladen." diff --git a/plugins/Bookmark/locale/ru/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ru/LC_MESSAGES/Bookmark.po index a43a7c65ed..3bd8d9a5a2 100644 --- a/plugins/Bookmark/locale/ru/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ru/LC_MESSAGES/Bookmark.po @@ -9,29 +9,190 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:23+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:00+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-bookmark\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" +msgid "Bad import file." +msgstr "" + +msgid "No tag in a
." +msgstr "" + +msgid "Skipping private bookmark." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "" + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "" + msgid "Simple extension for supporting bookmarks." msgstr "" +msgid "Import del.icio.us bookmarks" +msgstr "" + +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" + +msgid "Bookmark notice with the wrong number of attachments." +msgstr "" + msgid "Bookmark" msgstr "" +#, php-format +msgid "Bookmark on %s" +msgstr "" + +msgid "Bookmark already exists." +msgstr "" + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "" + +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" + +msgid "Unknown URL" +msgstr "" + +#, php-format +msgid "Notices linking to %s" +msgstr "" + +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" + +msgid "You may not restore your account." +msgstr "" + +msgid "No uploaded file." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible +msgid "Failed to write file to disk." +msgstr "" + +#. TRANS: Client exception thrown when a file upload has been stopped +msgid "File upload stopped by extension." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has failed +msgid "System error uploading file." +msgstr "" + +#, php-format +msgid "Getting backup from file '%s'." +msgstr "" + +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" + +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" + +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" + msgctxt "BUTTON" msgid "Upload" msgstr "Загрузить" +msgid "Upload the file" +msgstr "" + +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL to bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +msgid "Comma- or space-separated list of tags" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the URL" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "Сохранить" + +msgid "New bookmark" +msgstr "" + +msgid "Must be logged in to post a bookmark." +msgstr "" + +msgid "Bookmark must have a title." +msgstr "" + +msgid "Bookmark must have an URL." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "" diff --git a/plugins/Bookmark/locale/te/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/te/LC_MESSAGES/Bookmark.po index 65c6428e5a..5c8b483239 100644 --- a/plugins/Bookmark/locale/te/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/te/LC_MESSAGES/Bookmark.po @@ -9,28 +9,189 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:23+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:00+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Bad import file." +msgstr "" + +msgid "No tag in a
." +msgstr "" + +msgid "Skipping private bookmark." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "" + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "" + msgid "Simple extension for supporting bookmarks." msgstr "" +msgid "Import del.icio.us bookmarks" +msgstr "" + +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" + +msgid "Bookmark notice with the wrong number of attachments." +msgstr "" + msgid "Bookmark" msgstr "" +#, php-format +msgid "Bookmark on %s" +msgstr "" + +msgid "Bookmark already exists." +msgstr "" + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "" + +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" + +msgid "Unknown URL" +msgstr "" + +#, php-format +msgid "Notices linking to %s" +msgstr "" + +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" + +msgid "You may not restore your account." +msgstr "" + +msgid "No uploaded file." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible +msgid "Failed to write file to disk." +msgstr "" + +#. TRANS: Client exception thrown when a file upload has been stopped +msgid "File upload stopped by extension." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has failed +msgid "System error uploading file." +msgstr "" + +#, php-format +msgid "Getting backup from file '%s'." +msgstr "" + +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" + +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" + +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" + msgctxt "BUTTON" msgid "Upload" msgstr "ఎక్కించు" +msgid "Upload the file" +msgstr "" + +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL to bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +msgid "Comma- or space-separated list of tags" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the URL" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "భద్రపరచు" + +msgid "New bookmark" +msgstr "" + +msgid "Must be logged in to post a bookmark." +msgstr "" + +msgid "Bookmark must have a title." +msgstr "" + +msgid "Bookmark must have an URL." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "" diff --git a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po index 5f3339e233..43aac490c0 100644 --- a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po @@ -9,29 +9,192 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:23+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:00+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-bookmark\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" +msgid "Bad import file." +msgstr "" + +msgid "No tag in a
." +msgstr "" + +msgid "Skipping private bookmark." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "" + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "" + msgid "Simple extension for supporting bookmarks." msgstr "Простий додаток, що підтримує додавання закладок." +msgid "Import del.icio.us bookmarks" +msgstr "" + +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" + +msgid "Bookmark notice with the wrong number of attachments." +msgstr "" + msgid "Bookmark" msgstr "Закладка" +#, fuzzy, php-format +msgid "Bookmark on %s" +msgstr "Закладка" + +msgid "Bookmark already exists." +msgstr "" + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "" + +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" + +msgid "Unknown URL" +msgstr "" + +#, php-format +msgid "Notices linking to %s" +msgstr "" + +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" + +msgid "You may not restore your account." +msgstr "" + +msgid "No uploaded file." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible +msgid "Failed to write file to disk." +msgstr "" + +#. TRANS: Client exception thrown when a file upload has been stopped +msgid "File upload stopped by extension." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has failed +msgid "System error uploading file." +msgstr "" + +#, php-format +msgid "Getting backup from file '%s'." +msgstr "" + +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" + +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" + +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" + msgctxt "BUTTON" msgid "Upload" msgstr "Завантажити" +msgid "Upload the file" +msgstr "" + +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +#, fuzzy +msgid "URL to bookmark" +msgstr "Закладка" + +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +msgid "Comma- or space-separated list of tags" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the URL" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "Зберегти" + +#, fuzzy +msgid "New bookmark" +msgstr "Закладка" + +msgid "Must be logged in to post a bookmark." +msgstr "" + +msgid "Bookmark must have a title." +msgstr "" + +msgid "Bookmark must have an URL." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "" diff --git a/plugins/Bookmark/locale/zh_CN/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/zh_CN/LC_MESSAGES/Bookmark.po index cf9e1b4551..b080c13d8a 100644 --- a/plugins/Bookmark/locale/zh_CN/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/zh_CN/LC_MESSAGES/Bookmark.po @@ -9,29 +9,190 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:23+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:00+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgid "Bad import file." +msgstr "" + +msgid "No tag in a
." +msgstr "" + +msgid "Skipping private bookmark." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "" + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "" + msgid "Simple extension for supporting bookmarks." msgstr "支持书签的简单扩展。" +msgid "Import del.icio.us bookmarks" +msgstr "" + +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" + +msgid "Bookmark notice with the wrong number of attachments." +msgstr "" + msgid "Bookmark" msgstr "" +#, php-format +msgid "Bookmark on %s" +msgstr "" + +msgid "Bookmark already exists." +msgstr "" + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "" + +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" + +msgid "Unknown URL" +msgstr "" + +#, php-format +msgid "Notices linking to %s" +msgstr "" + +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" + +msgid "You may not restore your account." +msgstr "" + +msgid "No uploaded file." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible +msgid "Failed to write file to disk." +msgstr "" + +#. TRANS: Client exception thrown when a file upload has been stopped +msgid "File upload stopped by extension." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has failed +msgid "System error uploading file." +msgstr "" + +#, php-format +msgid "Getting backup from file '%s'." +msgstr "" + +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" + +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" + +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" + msgctxt "BUTTON" msgid "Upload" msgstr "上载" +msgid "Upload the file" +msgstr "" + +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL to bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +msgid "Comma- or space-separated list of tags" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the URL" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "保存" + +msgid "New bookmark" +msgstr "" + +msgid "Must be logged in to post a bookmark." +msgstr "" + +msgid "Bookmark must have a title." +msgstr "" + +msgid "Bookmark must have an URL." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "" diff --git a/plugins/Bookmark/newbookmark.php b/plugins/Bookmark/newbookmark.php index ebfdb6cb95..79266e52b2 100644 --- a/plugins/Bookmark/newbookmark.php +++ b/plugins/Bookmark/newbookmark.php @@ -62,7 +62,7 @@ class NewbookmarkAction extends Action function title() { - return _('New bookmark'); + return _m('New bookmark'); } /** @@ -80,7 +80,7 @@ class NewbookmarkAction extends Action $this->user = common_current_user(); if (empty($this->user)) { - throw new ClientException(_("Must be logged in to post a bookmark."), + throw new ClientException(_m("Must be logged in to post a bookmark."), 403); } @@ -130,11 +130,11 @@ class NewbookmarkAction extends Action } try { if (empty($this->title)) { - throw new ClientException(_('Bookmark must have a title.')); + throw new ClientException(_m('Bookmark must have a title.')); } if (empty($this->url)) { - throw new ClientException(_('Bookmark must have an URL.')); + throw new ClientException(_m('Bookmark must have an URL.')); } @@ -156,7 +156,7 @@ class NewbookmarkAction extends Action $this->elementStart('html'); $this->elementStart('head'); // TRANS: Page title after sending a notice. - $this->element('title', null, _('Notice posted')); + $this->element('title', null, _m('Notice posted')); $this->elementEnd('head'); $this->elementStart('body'); $this->showNotice($saved); diff --git a/plugins/Bookmark/noticebyurl.php b/plugins/Bookmark/noticebyurl.php index 226c7a32bf..b8bea78051 100644 --- a/plugins/Bookmark/noticebyurl.php +++ b/plugins/Bookmark/noticebyurl.php @@ -67,7 +67,7 @@ class NoticebyurlAction extends Action $this->file = File::staticGet('id', $this->trimmed('id')); if (empty($this->file)) { - throw new ClientException(_('Unknown URL')); + throw new ClientException(_m('Unknown URL')); } $pageArg = $this->trimmed('page'); @@ -89,9 +89,9 @@ class NoticebyurlAction extends Action function title() { if ($this->page == 1) { - return sprintf(_("Notices linking to %s"), $this->file->url); + return sprintf(_m("Notices linking to %s"), $this->file->url); } else { - return sprintf(_("Notices linking to %s, page %d"), + return sprintf(_m("Notices linking to %1$s, page %2$d"), $this->file->url, $this->page); } diff --git a/plugins/Bookmark/showbookmark.php b/plugins/Bookmark/showbookmark.php index 40005c087f..6b9bf9bc25 100644 --- a/plugins/Bookmark/showbookmark.php +++ b/plugins/Bookmark/showbookmark.php @@ -82,7 +82,7 @@ class ShowbookmarkAction extends ShownoticeAction { // TRANS: Title for bookmark. // TRANS: %1$s is a user nickname, %2$s is a bookmark title. - return sprintf(_('%1$s\'s bookmark for "%2$s"'), + return sprintf(_m('%1$s\'s bookmark for "%2$s"'), $this->user->nickname, $this->bookmark->title); } diff --git a/plugins/CacheLog/locale/CacheLog.pot b/plugins/CacheLog/locale/CacheLog.pot index eb3b1c6de7..8dcb6fbc7e 100644 --- a/plugins/CacheLog/locale/CacheLog.pot +++ b/plugins/CacheLog/locale/CacheLog.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po index 5b0c029c6b..0b6c62c963 100644 --- a/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po index a89fe457e6..46c1483345 100644 --- a/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po index f0eb2bcfac..2f2267db25 100644 --- a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po index bf5c27ce23..34f0c4ec1c 100644 --- a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po index 61d8bd11cb..d889370f4e 100644 --- a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po index 4ff55a662f..846ec125fb 100644 --- a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po index e37bfd9aec..b738d9faa7 100644 --- a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po index 2821a1540f..bbc42de2f2 100644 --- a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po index d4278c1bac..b0265d5c55 100644 --- a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po index eaa0dc6ee8..7ec26f2941 100644 --- a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po index a39a67ee7a..43ea0585c0 100644 --- a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po index dd8fcb6b4c..3122c79827 100644 --- a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po index 8052a249a7..7b39fe229c 100644 --- a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po index 00d771d55e..cb0068c9d0 100644 --- a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CasAuthentication/locale/CasAuthentication.pot b/plugins/CasAuthentication/locale/CasAuthentication.pot index d87ffe786a..3213485e27 100644 --- a/plugins/CasAuthentication/locale/CasAuthentication.pot +++ b/plugins/CasAuthentication/locale/CasAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po index 138f513524..bcf1de70c4 100644 --- a/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:39+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po index c2c7ce2df7..425afa0b6d 100644 --- a/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:39+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po index 9d4f7041c9..7486d29213 100644 --- a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:39+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po index 0324c705fb..fb3b690663 100644 --- a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:39+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po index c0de64c6f6..ec55f0c4e0 100644 --- a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:39+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po index af129318b8..deba36eb25 100644 --- a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:39+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po index 5f97bc3baa..9ee484c004 100644 --- a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:40+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po index 07d66e76e9..dd9912a216 100644 --- a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:40+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po index 96806440bd..aaf3483b83 100644 --- a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:40+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po index bb8235cfab..76c9893d3a 100644 --- a/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:40+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po index 3a58ee78de..01c8a89f1f 100644 --- a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:40+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po index c8e1c9f299..290e056bdf 100644 --- a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:40+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/ClientSideShorten/locale/ClientSideShorten.pot b/plugins/ClientSideShorten/locale/ClientSideShorten.pot index 2e0da97cb3..dbf84b6f3b 100644 --- a/plugins/ClientSideShorten/locale/ClientSideShorten.pot +++ b/plugins/ClientSideShorten/locale/ClientSideShorten.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po index ae2d1e0515..abf5428b54 100644 --- a/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:40+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/br/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/br/LC_MESSAGES/ClientSideShorten.po index 6baf68612a..e6c1e6f21c 100644 --- a/plugins/ClientSideShorten/locale/br/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/br/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:40+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po index 747a5d758b..0ef0ba70b0 100644 --- a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:40+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po index 32ac40fd33..fe0636a165 100644 --- a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:40+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po index 898076322b..ca1209b6df 100644 --- a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:40+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po index 1ef6aab59a..013c54a1b7 100644 --- a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:40+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po index 6c59721f61..6bbb012e22 100644 --- a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:41+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po index d9c51cf5cc..b4474ab59c 100644 --- a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:41+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po index 4dca23b0e4..9f5011d264 100644 --- a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:41+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po index ff63f9b199..6552b84567 100644 --- a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:41+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po index 57645e479f..cd62009372 100644 --- a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:41+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po index 9d9e4343e7..da95328cf7 100644 --- a/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:41+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po index b492226b54..a85fd6da23 100644 --- a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:41+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po index 6fca22a77e..2c859cd4af 100644 --- a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:41+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po index 87cd57cca4..024578064e 100644 --- a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:41+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/Comet/locale/Comet.pot b/plugins/Comet/locale/Comet.pot index 740d416f6a..47bc73a9f2 100644 --- a/plugins/Comet/locale/Comet.pot +++ b/plugins/Comet/locale/Comet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,8 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: CometPlugin.php:114 -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#: CometPlugin.php:116 +msgid "Plugin to make updates using Comet and Bayeux." msgstr "" diff --git a/plugins/Comet/locale/be-tarask/LC_MESSAGES/Comet.po b/plugins/Comet/locale/be-tarask/LC_MESSAGES/Comet.po index 97fdf8605f..a7bac13abf 100644 --- a/plugins/Comet/locale/be-tarask/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/be-tarask/LC_MESSAGES/Comet.po @@ -9,19 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "" "Дапаўненьне для абнаўленьняў у «рэальным часе» з выкарыстаньнем Comet/Bayeux." diff --git a/plugins/Comet/locale/br/LC_MESSAGES/Comet.po b/plugins/Comet/locale/br/LC_MESSAGES/Comet.po index 8568e7a0cf..173b899346 100644 --- a/plugins/Comet/locale/br/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/br/LC_MESSAGES/Comet.po @@ -9,19 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "" "Un astenn evit ober hizivadennoù \"war ar prim\" en ur implijout Comet/" "Bayeux." diff --git a/plugins/Comet/locale/de/LC_MESSAGES/Comet.po b/plugins/Comet/locale/de/LC_MESSAGES/Comet.po index 60e883e0cd..43978d6728 100644 --- a/plugins/Comet/locale/de/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/de/LC_MESSAGES/Comet.po @@ -9,17 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "Plugin für Echtzeit-Aktualisierungen mit Comet/Bayeux." diff --git a/plugins/Comet/locale/es/LC_MESSAGES/Comet.po b/plugins/Comet/locale/es/LC_MESSAGES/Comet.po index d9063144d7..f77e757f53 100644 --- a/plugins/Comet/locale/es/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/es/LC_MESSAGES/Comet.po @@ -9,19 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "" "Extensión para hacer actualizaciones en \"tiempo real\" utilizando Comet/" "Bayeux." diff --git a/plugins/Comet/locale/fi/LC_MESSAGES/Comet.po b/plugins/Comet/locale/fi/LC_MESSAGES/Comet.po index bb6bbb2d11..9b911941b0 100644 --- a/plugins/Comet/locale/fi/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/fi/LC_MESSAGES/Comet.po @@ -10,19 +10,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:25+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "" "Liitännäinen \"reaaliaikaisten\" päivitysten tekemiseen Comet/Bayeux-" "yhteyskäytäntöjä käyttäen." diff --git a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po index eb998d1a07..6dbe1699e4 100644 --- a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po @@ -9,19 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "" "Extension pour réaliser des mises à jour « en temps réel » en utilisant Comet/" "Bayeux." diff --git a/plugins/Comet/locale/he/LC_MESSAGES/Comet.po b/plugins/Comet/locale/he/LC_MESSAGES/Comet.po index 2bf2befedf..3dc3915e1c 100644 --- a/plugins/Comet/locale/he/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/he/LC_MESSAGES/Comet.po @@ -9,17 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "תוסף לביצוע עדכונים \"בזמן אמת\" באמצעות Comet/Bayeux." diff --git a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po index 3d29d12892..8ff71de11c 100644 --- a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po @@ -9,17 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:20+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." -msgstr "Plug-in pro facer actualisationes \"in directo\" usante Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +msgid "Plugin to make updates using Comet and Bayeux." +msgstr "Plug-in pro facer actualisationes usante Comet e Bayeux." diff --git a/plugins/Comet/locale/id/LC_MESSAGES/Comet.po b/plugins/Comet/locale/id/LC_MESSAGES/Comet.po index 40289d9b9f..6ac73b6f53 100644 --- a/plugins/Comet/locale/id/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/id/LC_MESSAGES/Comet.po @@ -9,17 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "Pengaya untuk membuat pemutakhiran langsung menggunakan Comet/Bayeux." diff --git a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po index f24b91cc0e..7704e0366b 100644 --- a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po @@ -9,17 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." -msgstr "Приклучок за вршење на поднови „во живо“ со Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +msgid "Plugin to make updates using Comet and Bayeux." +msgstr "Приклучок за вршење на поднови „во живо“ со Comet и Bayeux." diff --git a/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po index 3895422090..dde5795b68 100644 --- a/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po @@ -9,17 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "Utvidelse for å gjøre «sanntids»-oppdateringer med Comet/Bayeux." diff --git a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po index 182742f975..58dcc3d5ab 100644 --- a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po @@ -9,17 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:41+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." -msgstr "Plug-in om \"real time\" updates te brengen via Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +msgid "Plugin to make updates using Comet and Bayeux." +msgstr "Plug-in om updates te maken via Comet en Bayeux." diff --git a/plugins/Comet/locale/pt/LC_MESSAGES/Comet.po b/plugins/Comet/locale/pt/LC_MESSAGES/Comet.po index 72f711d52f..ff362e9b8e 100644 --- a/plugins/Comet/locale/pt/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/pt/LC_MESSAGES/Comet.po @@ -9,18 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "" "Plugin para fazer actualizações em \"tempo real\" utilizando Comet/Bayeux." diff --git a/plugins/Comet/locale/pt_BR/LC_MESSAGES/Comet.po b/plugins/Comet/locale/pt_BR/LC_MESSAGES/Comet.po index 22f4d86cfa..d3e959bcfb 100644 --- a/plugins/Comet/locale/pt_BR/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/pt_BR/LC_MESSAGES/Comet.po @@ -9,19 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "" "Plugin para realizar atualizações em \"tempo real\" usando Comet/Bayeux." diff --git a/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po b/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po index bc8275ad61..6bb1550381 100644 --- a/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po @@ -9,18 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-comet\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" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "Плагин для обновлений в «реальном времени» с помощью Comet/Bayeux." diff --git a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po index 7fed0c8e40..1d9b629bb5 100644 --- a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po @@ -9,19 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "" "Pamasak upang makagawa ng mga pagsasapanahong nasa \"tunay na panahon\" na " "ginagamitan ng Comet/Bayeux." diff --git a/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po b/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po index 93a2bbea58..ab66ac1297 100644 --- a/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po @@ -9,19 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-comet\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" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "" "Додаток для оновлення стрічки у «реальному часі» використовуючи Comet/Bayeux." diff --git a/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po b/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po index 404f4a4db4..94a3cd4e2d 100644 --- a/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po @@ -9,18 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "通过 Comet/Bayeux 实现“实时更新”的插件。" diff --git a/plugins/DirectionDetector/locale/DirectionDetector.pot b/plugins/DirectionDetector/locale/DirectionDetector.pot index ff64256ff2..271b7c77cc 100644 --- a/plugins/DirectionDetector/locale/DirectionDetector.pot +++ b/plugins/DirectionDetector/locale/DirectionDetector.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po index 9eb2d14fee..8e47d2ec47 100644 --- a/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po index 77fe975b1f..42f5872bdc 100644 --- a/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po index 2734a4b0e4..695fae3bf9 100644 --- a/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po index 1e0f6b9283..750195988c 100644 --- a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po index 520dcc867f..b38c3644c0 100644 --- a/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po index 9c1afd69e6..6cc23092a5 100644 --- a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po index 36ad0fa93e..06779d2603 100644 --- a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po index 7e159f6806..5c87b3f8ba 100644 --- a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po index 8c65db1391..5c843b824d 100644 --- a/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po index 011e8fa528..dca9284db9 100644 --- a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po index a1d30d407e..ad3d6bd819 100644 --- a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po index 6d08841575..73d06bdf39 100644 --- a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po index 5ae0e535cf..42fb7fcefa 100644 --- a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po index 8fe05b4308..aa1015cdf9 100644 --- a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po @@ -9,16 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po index fe143af83b..e9c43d97b0 100644 --- a/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po index f51bb33d3d..098204fa70 100644 --- a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po index 6b137cd883..c938162a6c 100644 --- a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po index 97af058d6f..de441531d3 100644 --- a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po index 6c7d41d014..9e93cc5cf8 100644 --- a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:29+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/Directory/DirectoryPlugin.php b/plugins/Directory/DirectoryPlugin.php index 541ec556bf..cba75802e5 100644 --- a/plugins/Directory/DirectoryPlugin.php +++ b/plugins/Directory/DirectoryPlugin.php @@ -165,8 +165,8 @@ class DirectoryPlugin extends Plugin $nav->out->menuItem( common_local_url('userdirectory'), - _('Directory'), - _('User Directory'), + _m('Directory'), + _m('User Directory'), $actionName == 'userdirectory', 'nav_directory' ); diff --git a/plugins/Directory/actions/userdirectory.php b/plugins/Directory/actions/userdirectory.php index 85835e2c1f..6532f03c02 100644 --- a/plugins/Directory/actions/userdirectory.php +++ b/plugins/Directory/actions/userdirectory.php @@ -116,7 +116,7 @@ class UserdirectoryAction extends Action function getInstructions() { // TRANS: %%site.name%% is the name of the StatusNet site. - return _( + return _m( 'Search for people on %%site.name%% by their name, ' . 'location, or interests. Separate the terms by spaces; ' . ' they must be 3 characters or more.' @@ -256,11 +256,11 @@ class UserdirectoryAction extends Action $this->elementStart('fieldset'); - $this->element('legend', null, _('Search site')); + $this->element('legend', null, _m('Search site')); $this->elementStart('ul', 'form_data'); $this->elementStart('li'); - $this->input('q', _('Keyword(s)'), $this->q); + $this->input('q', _m('Keyword(s)'), $this->q); $this->submit('search', _m('BUTTON','Search')); $this->elementEnd('li'); @@ -372,7 +372,7 @@ class UserdirectoryAction extends Action ) ); } else { - $this->element('p', 'error', _('No results.')); + $this->element('p', 'error', _m('No results.')); $message = _m(<<\n" "Language-Team: LANGUAGE \n" @@ -35,6 +35,21 @@ msgstr "" msgid "User directory - %s, page %d" msgstr "" +#: actions/userdirectory.php:120 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#: actions/userdirectory.php:259 +msgid "Search site" +msgstr "" + +#: actions/userdirectory.php:263 +msgid "Keyword(s)" +msgstr "" + #: actions/userdirectory.php:265 msgctxt "BUTTON" msgid "Search" @@ -45,6 +60,18 @@ msgstr "" msgid "No users starting with %s" msgstr "" +#: actions/userdirectory.php:375 +msgid "No results." +msgstr "" + +#: DirectoryPlugin.php:168 +msgid "Directory" +msgstr "" + +#: DirectoryPlugin.php:169 +msgid "User Directory" +msgstr "" + #: DirectoryPlugin.php:187 msgid "Add a user directory." msgstr "" diff --git a/plugins/Directory/locale/br/LC_MESSAGES/Directory.po b/plugins/Directory/locale/br/LC_MESSAGES/Directory.po new file mode 100644 index 0000000000..fa92a7ded8 --- /dev/null +++ b/plugins/Directory/locale/br/LC_MESSAGES/Directory.po @@ -0,0 +1,75 @@ +# Translation of StatusNet - Directory to Breton (Brezhoneg) +# Exported from translatewiki.net +# +# Author: Y-M D +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Directory\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:48+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-03 13:41:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-directory\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#, php-format +msgid "User Directory, page %d" +msgstr "" + +msgid "User directory" +msgstr "" + +#, php-format +msgid "User directory - %s" +msgstr "" + +#, php-format +msgid "User directory - %s, page %d" +msgstr "" + +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +msgid "Search site" +msgstr "Klask el lec'hienn" + +msgid "Keyword(s)" +msgstr "Ger(ioù) alc'hwez" + +msgctxt "BUTTON" +msgid "Search" +msgstr "Klask" + +#, php-format +msgid "No users starting with %s" +msgstr "N'eus implijer ebet o kregiñ gant %s" + +msgid "No results." +msgstr "Disoc'h ebet." + +msgid "Directory" +msgstr "" + +msgid "User Directory" +msgstr "" + +msgid "Add a user directory." +msgstr "" + +msgid "Nickname" +msgstr "Lesanv" + +msgid "Created" +msgstr "Krouet" diff --git a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po index ea8ac123b4..44aa5bde51 100644 --- a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:29+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:24+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-directory\n" @@ -36,6 +36,20 @@ msgstr "Catalogo de usatores - %s" msgid "User directory - %s, page %d" msgstr "Catalogo de usatores - %s, pagina %d" +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Cerca personas in %%site.name%% per nomine, loco o interesses. Separa le " +"terminos per spatios; illos debe haber 3 characteres o plus." + +msgid "Search site" +msgstr "Cercar in sito" + +msgid "Keyword(s)" +msgstr "Parola(s)-clave" + msgctxt "BUTTON" msgid "Search" msgstr "Cercar" @@ -44,6 +58,15 @@ msgstr "Cercar" msgid "No users starting with %s" msgstr "Il non ha usatores de qui le nomine comencia con \"%s\"" +msgid "No results." +msgstr "Nulle resultato." + +msgid "Directory" +msgstr "Directorio" + +msgid "User Directory" +msgstr "Catalogo de usatores" + msgid "Add a user directory." msgstr "Adder un catalogo de usatores." diff --git a/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po b/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po index 643b122f81..995712ee49 100644 --- a/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:29+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:24+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-directory\n" @@ -36,6 +36,20 @@ msgstr "Кориснички именик - %s" msgid "User directory - %s, page %d" msgstr "Кориснички именик - %s, стр. %d" +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Пребарајте луѓе на %%site.name%% по име, местоположба или интереси. Одделете " +"ги поимите со празни места; зборовите мора да имаат барем по 3 букви." + +msgid "Search site" +msgstr "Пребарај" + +msgid "Keyword(s)" +msgstr "Клучни зборови" + msgctxt "BUTTON" msgid "Search" msgstr "Пребарај" @@ -44,6 +58,15 @@ msgstr "Пребарај" msgid "No users starting with %s" msgstr "Нема корисници што почнуваат на %s" +msgid "No results." +msgstr "Нема резултати." + +msgid "Directory" +msgstr "Именик" + +msgid "User Directory" +msgstr "Кориснички именик" + msgid "Add a user directory." msgstr "Додај кориснички именик." diff --git a/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po index 7b187674f3..4becfcfac8 100644 --- a/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:29+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:24+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-directory\n" @@ -37,6 +37,21 @@ msgstr "Gebruikerslijst - %s" msgid "User directory - %s, page %d" msgstr "Gebruikerslijst - %s, pagina %d" +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Zoeken naar gebruikers op %%site.name%% op basis van hun naam, locatie of " +"interesses. Scheid de zoektermen met spaties. Zoektermen moeten uit drie of " +"meer tekens bestaan." + +msgid "Search site" +msgstr "Site doorzoeken" + +msgid "Keyword(s)" +msgstr "Trefwoord(en)" + msgctxt "BUTTON" msgid "Search" msgstr "Zoeken" @@ -45,6 +60,15 @@ msgstr "Zoeken" msgid "No users starting with %s" msgstr "Er zijn geen gebruikers wiens naam begint met \"%s\"" +msgid "No results." +msgstr "Geen resultaten." + +msgid "Directory" +msgstr "Gebruikerslijst" + +msgid "User Directory" +msgstr "Gebruikerslijst" + msgid "Add a user directory." msgstr "Een gebruikerslijst toevoegen." diff --git a/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po index 08c4f28ffc..6bd8ba2b0e 100644 --- a/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:28+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:24+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-directory\n" @@ -36,6 +36,19 @@ msgstr "Direktoryo ng tagagamit - %s" msgid "User directory - %s, page %d" msgstr "Direktoryo ng tagagamit - %s, pahina %d" +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#, fuzzy +msgid "Search site" +msgstr "Hanapin" + +msgid "Keyword(s)" +msgstr "" + msgctxt "BUTTON" msgid "Search" msgstr "Hanapin" @@ -44,6 +57,17 @@ msgstr "Hanapin" msgid "No users starting with %s" msgstr "Walang mga tagagamit na nagsisimula sa %s" +msgid "No results." +msgstr "" + +#, fuzzy +msgid "Directory" +msgstr "Direktoryo ng tagagamit" + +#, fuzzy +msgid "User Directory" +msgstr "Direktoryo ng tagagamit" + msgid "Add a user directory." msgstr "Magdagdag ng isang direktoryo ng tagagamit." diff --git a/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po b/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po index b8f9c3bffe..e2148d22e8 100644 --- a/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:29+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:24+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-directory\n" @@ -37,6 +37,19 @@ msgstr "Каталог користувача — %s" msgid "User directory - %s, page %d" msgstr "Каталог користувача — %s, сторінка %d" +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#, fuzzy +msgid "Search site" +msgstr "Пошук" + +msgid "Keyword(s)" +msgstr "" + msgctxt "BUTTON" msgid "Search" msgstr "Пошук" @@ -45,6 +58,17 @@ msgstr "Пошук" msgid "No users starting with %s" msgstr "Немає користувачів, починаючи з %s" +msgid "No results." +msgstr "" + +#, fuzzy +msgid "Directory" +msgstr "Каталог користувача" + +#, fuzzy +msgid "User Directory" +msgstr "Каталог користувача" + msgid "Add a user directory." msgstr "Додати каталог користувача." diff --git a/plugins/DiskCache/locale/DiskCache.pot b/plugins/DiskCache/locale/DiskCache.pot index 6666fa2ac2..38c3ab3563 100644 --- a/plugins/DiskCache/locale/DiskCache.pot +++ b/plugins/DiskCache/locale/DiskCache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po index d8374fbc30..d48b3b2cce 100644 --- a/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:24+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po index 12be183e5b..a89e41049e 100644 --- a/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po index d3bc60ad06..facb15f269 100644 --- a/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po index 599a1fe58e..548d42be2c 100644 --- a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po index 6bdaf3aa3a..3aca3784fb 100644 --- a/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:28+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po index cb68a4d21d..a547072b28 100644 --- a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po index 4d81dc634e..702de4f2d5 100644 --- a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po index b2ce1ccc14..62195053b5 100644 --- a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po index 98e25b6ca7..06cd5a8097 100644 --- a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po index a9786b41b2..482b3b8d37 100644 --- a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po index b2fece1137..eab6a133dc 100644 --- a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po index b9aeb6fbbb..325ac500ad 100644 --- a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po index 6335ccf56b..31b0b571aa 100644 --- a/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po index 72fa63a153..f12e35eb97 100644 --- a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po index 9676b8a25c..17eb01c841 100644 --- a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po index 8497d0ba62..78568693e6 100644 --- a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po index 0f76a4e223..6e62354031 100644 --- a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:26+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po index 241c3cf2a6..d42e29f3e3 100644 --- a/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:26+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/Disqus/locale/Disqus.pot b/plugins/Disqus/locale/Disqus.pot index 12b30631d8..5bdfdbc484 100644 --- a/plugins/Disqus/locale/Disqus.pot +++ b/plugins/Disqus/locale/Disqus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po index e3878b49f1..c2351a3742 100644 --- a/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:26+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po index 9acc17064e..edc119565b 100644 --- a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:26+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po index 11cfdde82a..b3eb8e35e2 100644 --- a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:26+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po index 1e13b6014e..5e85a3cb92 100644 --- a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:27+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po index 25114540f8..657eb83785 100644 --- a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:27+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po index 640b740a05..1db70d0f14 100644 --- a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:27+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po index 0391b36bcb..280304b390 100644 --- a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:27+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po index 809f5e9eec..fbb18355c5 100644 --- a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:27+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po index fb0dbaac11..01bd75bac0 100644 --- a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:27+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po index f8b6155ce5..d37bfee003 100644 --- a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:27+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po index 495ae57051..c9ae4bf3f1 100644 --- a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:27+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po index 09ba7d8cd4..e0743a8761 100644 --- a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po index c0e1ad9ea2..c5521c4678 100644 --- a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po index e103fc42c7..d653adb6ba 100644 --- a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:27+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Echo/locale/Echo.pot b/plugins/Echo/locale/Echo.pot index 459876c3c2..03b137adf1 100644 --- a/plugins/Echo/locale/Echo.pot +++ b/plugins/Echo/locale/Echo.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po index aa0935ed47..37ea83a50e 100644 --- a/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:27+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po b/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po index a50c9c65dc..96ce55c589 100644 --- a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po index 08af98a138..d7c35e6c8c 100644 --- a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po index a9d2d98179..97e48f4ccc 100644 --- a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po index bae981f221..72c46b2ada 100644 --- a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po index 22257b5925..656cfdaeb8 100644 --- a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po index ff05df8e5b..197e2615dc 100644 --- a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po index 5628b12b90..4fecb39248 100644 --- a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po index 56579edb24..6839c9530d 100644 --- a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po index 984afb5160..c16e63cb42 100644 --- a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po index 2720935ab7..39eb28aaf4 100644 --- a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po index 038dcb84c0..7ea917f2d1 100644 --- a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po index feebcab1be..ce7f20ad57 100644 --- a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po index 9cc84cf749..e108f24b76 100644 --- a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po index 7ee08fad60..59ebe9a91e 100644 --- a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:29+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po index dd40d19933..63f2ea408d 100644 --- a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:29+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po index a33bbf3acb..9a9866fcbe 100644 --- a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:29+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po index 980e654950..f9692a4c22 100644 --- a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:29+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po index 7de560475a..4dbd21bb17 100644 --- a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:29+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po index 4a5af86329..895fd7e595 100644 --- a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:29+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/EmailAuthentication/locale/EmailAuthentication.pot b/plugins/EmailAuthentication/locale/EmailAuthentication.pot index 0dbf75d121..b45a464f55 100644 --- a/plugins/EmailAuthentication/locale/EmailAuthentication.pot +++ b/plugins/EmailAuthentication/locale/EmailAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po index 36ff8c78b7..5d36758f3f 100644 --- a/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:29+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po index 965d58afb2..a30584f577 100644 --- a/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:29+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po index ac2f807dd8..3d54d87ec8 100644 --- a/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:29+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po index 12a6dfd96e..cbb781bd62 100644 --- a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po index dd565d0a17..f0c76496d0 100644 --- a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po index ce56401ec8..69b4ecf201 100644 --- a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po index cdd89a401f..2483d9bc76 100644 --- a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po index 194579f571..2db8060070 100644 --- a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po index 60ec87df82..283861c8df 100644 --- a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po index d386263492..a73cbe83ac 100644 --- a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po index 40a6b93590..c15bfaa4a9 100644 --- a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po index 61bb50610e..b7115a96aa 100644 --- a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po index c14665521c..66de734a97 100644 --- a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po index 15c3c24df0..254f3ee73e 100644 --- a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po index 85ff221918..2f02d88597 100644 --- a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po index 6ab2cb5f41..4a93f3c137 100644 --- a/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po index 1cdee04560..3e54b8fd4f 100644 --- a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:31+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po index 7a55e29423..29429360a1 100644 --- a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:31+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po index e37ecef10d..d5b743258c 100644 --- a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:31+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po index 13f26fe914..9ed3d7ebb7 100644 --- a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:31+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailSummary/EmailSummaryPlugin.php b/plugins/EmailSummary/EmailSummaryPlugin.php index c37e4864d1..66c1214106 100644 --- a/plugins/EmailSummary/EmailSummaryPlugin.php +++ b/plugins/EmailSummary/EmailSummaryPlugin.php @@ -151,7 +151,7 @@ class EmailSummaryPlugin extends Plugin $action->elementStart('li'); $action->checkbox('emailsummary', // TRANS: Checkbox label in e-mail preferences form. - _('Send me a periodic summary of updates from my network.'), + _m('Send me a periodic summary of updates from my network.'), Email_summary_status::getSendSummary($user->id)); $action->elementEnd('li'); return true; diff --git a/plugins/EmailSummary/locale/EmailSummary.pot b/plugins/EmailSummary/locale/EmailSummary.pot index 03539fbbdc..f0167835b0 100644 --- a/plugins/EmailSummary/locale/EmailSummary.pot +++ b/plugins/EmailSummary/locale/EmailSummary.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,29 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: useremailsummaryhandler.php:131 +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +#: useremailsummaryhandler.php:187 +msgid "in context" +msgstr "" + +#: useremailsummaryhandler.php:197 +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +#: useremailsummaryhandler.php:207 +msgid "Updates from your network" +msgstr "" + #: EmailSummaryPlugin.php:120 msgid "Send an email summary of the inbox to users." msgstr "" + +#. TRANS: Checkbox label in e-mail preferences form. +#: EmailSummaryPlugin.php:154 +msgid "Send me a periodic summary of updates from my network." +msgstr "" diff --git a/plugins/EmailSummary/locale/be-tarask/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/be-tarask/LC_MESSAGES/EmailSummary.po index 5420b87b11..c27e2f1a9c 100644 --- a/plugins/EmailSummary/locale/be-tarask/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/be-tarask/LC_MESSAGES/EmailSummary.po @@ -9,19 +9,39 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "" "Дасылае агляд уваходзячых паведамленьняў на электронную пошту карыстальніка." + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "" +"Дасылае агляд уваходзячых паведамленьняў на электронную пошту карыстальніка." diff --git a/plugins/EmailSummary/locale/br/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/br/LC_MESSAGES/EmailSummary.po index 5c67669fbb..694af0e3dd 100644 --- a/plugins/EmailSummary/locale/br/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/br/LC_MESSAGES/EmailSummary.po @@ -9,17 +9,36 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "Kas d'an implijerien, dre bostel, un diverrañ eus ar voest degemer." + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "Kas d'an implijerien, dre bostel, un diverrañ eus ar voest degemer." diff --git a/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po index e42ce772c7..4e4ccd9f03 100644 --- a/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po @@ -9,17 +9,36 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\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" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "Envia un resum de correu a la safata d'entrada dels usuaris." + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "Envia un resum de correu a la safata d'entrada dels usuaris." diff --git a/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po index 282746326f..2228f4e46b 100644 --- a/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po @@ -9,18 +9,38 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "" "Eine E-Mail mit der Zusammenfassung des Posteingangs an die Nutzer senden." + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "" +"Eine E-Mail mit der Zusammenfassung des Posteingangs an die Nutzer senden." diff --git a/plugins/EmailSummary/locale/fr/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/fr/LC_MESSAGES/EmailSummary.po index 0590ca0ef8..eab6ce42cd 100644 --- a/plugins/EmailSummary/locale/fr/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/fr/LC_MESSAGES/EmailSummary.po @@ -9,19 +9,40 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "" "Envoyer un résumé de la boîte de réception par courrier électronique aux " "utilisateurs." + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "" +"Envoyer un résumé de la boîte de réception par courrier électronique aux " +"utilisateurs." diff --git a/plugins/EmailSummary/locale/he/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/he/LC_MESSAGES/EmailSummary.po index 9465c668e4..f37999c1f3 100644 --- a/plugins/EmailSummary/locale/he/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/he/LC_MESSAGES/EmailSummary.po @@ -9,17 +9,36 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:13+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "שליחת תקציר של תיבת הדואר הנכנס בדוא״ל למשתמשים." + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "שליחת תקציר של תיבת הדואר הנכנס בדוא״ל למשתמשים." diff --git a/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po index e119aab19f..95c267b125 100644 --- a/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po @@ -9,17 +9,36 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:31+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "Actualisationes recente de %1s pro %2s:" + +msgid "in context" +msgstr "in contexto" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" +"

modificar tu configuration de e-mail pro %2s

" + +msgid "Updates from your network" +msgstr "Actualisationes de tu rete" + msgid "Send an email summary of the inbox to users." msgstr "Inviar in e-mail un summario del cassa de entrata al usatores." + +#. TRANS: Checkbox label in e-mail preferences form. +msgid "Send me a periodic summary of updates from my network." +msgstr "Inviar me un summario periodic del actualisationes de mi rete." diff --git a/plugins/EmailSummary/locale/id/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/id/LC_MESSAGES/EmailSummary.po index 354d7775f3..17a4c94e15 100644 --- a/plugins/EmailSummary/locale/id/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/id/LC_MESSAGES/EmailSummary.po @@ -9,17 +9,36 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:13+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=1; plural=0;\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "Kirim surel ringkasan kotak masuk ke pengguna." + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "Kirim surel ringkasan kotak masuk ke pengguna." diff --git a/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po index 9933441147..c6d715d38d 100644 --- a/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po @@ -9,17 +9,36 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:32+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "Скорешни поднови од %1s за %2s:" + +msgid "in context" +msgstr "во контекст" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" +"

сменете си ги нагодувањата за е-пошта на %2s

" + +msgid "Updates from your network" +msgstr "Поднови од Вашата мрежа" + msgid "Send an email summary of the inbox to users." msgstr "Испрати им на корисниците краток преглед на примената пошта." + +#. TRANS: Checkbox label in e-mail preferences form. +msgid "Send me a periodic summary of updates from my network." +msgstr "Испраќај ми повремен краток преглед на подновите од мојата мрежа." diff --git a/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po index ae9d41e7c4..e9d9b6e3f4 100644 --- a/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po @@ -9,17 +9,35 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:32+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "Recente updates van %1s voor %2s:" + +msgid "in context" +msgstr "in context" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "

wijzig uw e-mailinstellingen voor %2s

" + +msgid "Updates from your network" +msgstr "Updates uit uw netwerk" + msgid "Send an email summary of the inbox to users." msgstr "E-mailsamenvatting verzenden naar het Postvak IN van gebruikers." + +#. TRANS: Checkbox label in e-mail preferences form. +msgid "Send me a periodic summary of updates from my network." +msgstr "Stuur mij periodiek een samenvatting van de updates in mijn netwerk." diff --git a/plugins/EmailSummary/locale/pt/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/pt/LC_MESSAGES/EmailSummary.po index 9e88528356..2a35a8035c 100644 --- a/plugins/EmailSummary/locale/pt/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/pt/LC_MESSAGES/EmailSummary.po @@ -9,17 +9,36 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:13+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "Enviar por email um resumo da caixa de entrada aos utilizadores." + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "Enviar por email um resumo da caixa de entrada aos utilizadores." diff --git a/plugins/EmailSummary/locale/ru/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/ru/LC_MESSAGES/EmailSummary.po index e7d075dd7d..5c89ac90f8 100644 --- a/plugins/EmailSummary/locale/ru/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ru/LC_MESSAGES/EmailSummary.po @@ -9,19 +9,39 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:13+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "" "Отправляет обзор входящих сообщений на электронную почту пользователей." + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "" +"Отправляет обзор входящих сообщений на электронную почту пользователей." diff --git a/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po index 5337c4656f..c9eec8e9d6 100644 --- a/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po @@ -9,20 +9,41 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:35+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:13+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "" "Надсилає електронною поштою перелік вхідних приватних повідомлень, " "адресованих користувачеві." + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "" +"Надсилає електронною поштою перелік вхідних приватних повідомлень, " +"адресованих користувачеві." diff --git a/plugins/EmailSummary/locale/zh_CN/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/zh_CN/LC_MESSAGES/EmailSummary.po index b4e1175355..5d39d1a67e 100644 --- a/plugins/EmailSummary/locale/zh_CN/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/zh_CN/LC_MESSAGES/EmailSummary.po @@ -9,18 +9,37 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:35+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:13+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=1; plural=0;\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "发送到用户的收件箱的电子邮件综述。" + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "发送到用户的收件箱的电子邮件综述。" diff --git a/plugins/EmailSummary/useremailsummaryhandler.php b/plugins/EmailSummary/useremailsummaryhandler.php index 8ba8a7a20b..5e10af40eb 100644 --- a/plugins/EmailSummary/useremailsummaryhandler.php +++ b/plugins/EmailSummary/useremailsummaryhandler.php @@ -128,7 +128,7 @@ class UserEmailSummaryHandler extends QueueHandler 'style' => 'background-color: #ffffff; border: 4px solid #4c609a; padding: 10px;')); $out->elementStart('div', array('style' => 'color: #ffffff; background-color: #4c609a; font-weight: bold; margin-bottom: 10px; padding: 4px;')); - $out->raw(sprintf(_('Recent updates from %1s for %2s:'), + $out->raw(sprintf(_m('Recent updates from %1s for %2s:'), common_config('site', 'name'), $profile->getBestName())); $out->elementEnd('div'); @@ -184,7 +184,7 @@ class UserEmailSummaryHandler extends QueueHandler $out->text(' '); $out->element('a', array('href' => $convurl.'#notice-'.$notice->id), - _('in context')); + _m('in context')); } } $out->elementEnd('div'); @@ -194,7 +194,7 @@ class UserEmailSummaryHandler extends QueueHandler $out->elementEnd('table'); - $out->raw(sprintf(_('

change your email settings for %2s

'), + $out->raw(sprintf(_m('

change your email settings for %2s

'), common_local_url('emailsettings'), common_config('site', 'name'))); @@ -204,7 +204,7 @@ class UserEmailSummaryHandler extends QueueHandler // FIXME: do something for people who don't like HTML email - mail_to_user($user, _('Updates from your network'), $body, + mail_to_user($user, _m('Updates from your network'), $body, array('Content-Type' => 'text/html; charset=UTF-8')); if (empty($ess)) { diff --git a/plugins/Event/EventPlugin.php b/plugins/Event/EventPlugin.php index 1ee6ef4309..528c855bda 100644 --- a/plugins/Event/EventPlugin.php +++ b/plugins/Event/EventPlugin.php @@ -168,7 +168,7 @@ class EventPlugin extends MicroappPlugin $happeningObj = $activity->objects[0]; if ($happeningObj->type != Happening::OBJECT_TYPE) { - throw new Exception('Wrong type for object.'); + throw new Exception(_m('Wrong type for object.')); } $notice = null; @@ -189,12 +189,12 @@ class EventPlugin extends MicroappPlugin $happening = Happening::staticGet('uri', $happeningObj->id); if (empty($happening)) { // FIXME: save the event - throw new Exception("RSVP for unknown event."); + throw new Exception(_m('RSVP for unknown event.')); } $notice = RSVP::saveNew($actor, $happening, $activity->verb, $options); break; default: - throw new Exception("Unknown verb for events"); + throw new Exception(_m('Unknown verb for events')); } return $notice; @@ -225,13 +225,13 @@ class EventPlugin extends MicroappPlugin } if (empty($happening)) { - throw new Exception("Unknown object type."); + throw new Exception(_m('Unknown object type.')); } $notice = $happening->getNotice(); if (empty($notice)) { - throw new Exception("Unknown event notice."); + throw new Exception(_m('Unknown event notice.')); } $obj = new ActivityObject(); @@ -365,7 +365,7 @@ class EventPlugin extends MicroappPlugin $out->elementStart('div', 'event-times'); // VEVENT/EVENT-TIMES IN - $out->element('strong', null, _('Time:')); + $out->element('strong', null, _m('Time:')); $out->element('abbr', array('class' => 'dtstart', 'title' => common_date_iso8601($event->start_time)), @@ -385,14 +385,14 @@ class EventPlugin extends MicroappPlugin if (!empty($event->location)) { $out->elementStart('div', 'event-location'); - $out->element('strong', null, _('Location: ')); + $out->element('strong', null, _m('Location:')); $out->element('span', 'location', $event->location); $out->elementEnd('div'); } if (!empty($event->description)) { $out->elementStart('div', 'event-description'); - $out->element('strong', null, _('Description: ')); + $out->element('strong', null, _m('Description:')); $out->element('span', 'description', $event->description); $out->elementEnd('div'); } @@ -400,9 +400,11 @@ class EventPlugin extends MicroappPlugin $rsvps = $event->getRSVPs(); $out->elementStart('div', 'event-rsvps'); - $out->element('strong', null, _('Attending: ')); + $out->element('strong', null, _m('Attending:')); $out->element('span', 'event-rsvps', - sprintf(_('Yes: %d No: %d Maybe: %d'), + // TRANS: RSVP counts. + // TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. + sprintf(_m('Yes: %1$d No: %2$d Maybe: %3$d'), count($rsvps[RSVP::POSITIVE]), count($rsvps[RSVP::NEGATIVE]), count($rsvps[RSVP::POSSIBLE]))); diff --git a/plugins/Event/Happening.php b/plugins/Event/Happening.php index 376f27c698..bbea213a1a 100644 --- a/plugins/Event/Happening.php +++ b/plugins/Event/Happening.php @@ -122,7 +122,7 @@ class Happening extends Managed_DataObject if (array_key_exists('uri', $options)) { $other = Happening::staticGet('uri', $options['uri']); if (!empty($other)) { - throw new ClientException(_('Event already exists.')); + throw new ClientException(_m('Event already exists.')); } } @@ -154,25 +154,27 @@ class Happening extends Managed_DataObject // XXX: does this get truncated? - $content = sprintf(_('"%s" %s - %s (%s): %s'), + // TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, + // TRANS: %4$s is location, %5$s is a description. + $content = sprintf(_m('"%1$s" %2$s - %3$s (%4$s): %5$s'), $title, - common_exact_date($start_time), - common_exact_date($end_time), + common_exact_date($ev->start_time), + common_exact_date($ev->end_time), $location, $description); - $rendered = sprintf(_(''. - '%s '. - '%s - '. - '%s '. - '(%s): '. - '%s '. + $rendered = sprintf(_m(''. + '%1$s '. + '%3$s - '. + '%5$s '. + '(%6$s): '. + '%7$s '. ''), htmlspecialchars($title), - htmlspecialchars(common_date_iso8601($start_time)), - htmlspecialchars(common_exact_date($start_time)), - htmlspecialchars(common_date_iso8601($end_time)), - htmlspecialchars(common_exact_date($end_time)), + htmlspecialchars(common_date_iso8601($ev->start_time)), + htmlspecialchars(common_exact_date($ev->start_time)), + htmlspecialchars(common_date_iso8601($ev->end_time)), + htmlspecialchars(common_exact_date($ev->end_time)), htmlspecialchars($location), htmlspecialchars($description)); diff --git a/plugins/Event/RSVP.php b/plugins/Event/RSVP.php index beb377c5bc..314d297a36 100644 --- a/plugins/Event/RSVP.php +++ b/plugins/Event/RSVP.php @@ -143,7 +143,7 @@ class RSVP extends Managed_DataObject if (array_key_exists('uri', $options)) { $other = RSVP::staticGet('uri', $options['uri']); if (!empty($other)) { - throw new ClientException(_('RSVP already exists.')); + throw new ClientException(_m('RSVP already exists.')); } } @@ -151,7 +151,7 @@ class RSVP extends Managed_DataObject 'event_id' => $event->id)); if (!empty($other)) { - throw new ClientException(_('RSVP already exists.')); + throw new ClientException(_m('RSVP already exists.')); } $rsvp = new RSVP(); @@ -219,7 +219,7 @@ class RSVP extends Managed_DataObject return '?'; break; default: - throw new Exception("Unknown verb {$verb}"); + throw new Exception(sprintf(_m('Unknown verb "%s"'),$verb)); } } @@ -236,7 +236,7 @@ class RSVP extends Managed_DataObject return RSVP::POSSIBLE; break; default: - throw new Exception("Unknown code {$code}"); + throw new Exception(sprintf(_m('Unknown code "%s".'),$code)); } } @@ -244,7 +244,7 @@ class RSVP extends Managed_DataObject { $notice = Notice::staticGet('uri', $this->uri); if (empty($notice)) { - throw new ServerException("RSVP {$this->id} does not correspond to a notice in the DB."); + throw new ServerException(sprintf(_m('RSVP %s does not correspond to a notice in the database.'),$this->id)); } return $notice; } @@ -278,7 +278,7 @@ class RSVP extends Managed_DataObject { $profile = Profile::staticGet('id', $this->profile_id); if (empty($profile)) { - throw new Exception("No profile with ID {$this->profile_id}"); + throw new Exception(sprintf(_m('No profile with ID %s.'),$this->profile_id)); } return $profile; } @@ -287,7 +287,7 @@ class RSVP extends Managed_DataObject { $event = Happening::staticGet('id', $this->event_id); if (empty($event)) { - throw new Exception("No event with ID {$this->event_id}"); + throw new Exception(sprintf(_m('No event with ID %s.'),$this->event_id)); } return $event; } @@ -316,22 +316,22 @@ class RSVP extends Managed_DataObject switch ($response) { case 'Y': - $fmt = _("%2s is attending %4s."); + $fmt = _m("%2\$s is attending %4\$s."); break; case 'N': - $fmt = _("%2s is not attending %4s."); + $fmt = _m("%2\$s is not attending %4\$s."); break; case '?': - $fmt = _("%2s might attend %4s."); + $fmt = _m("%2\$s might attend %4\$s."); break; default: - throw new Exception("Unknown response code {$response}"); + throw new Exception(sprintf(_m('Unknown response code %s.'),$response)); break; } if (empty($event)) { $eventUrl = '#'; - $eventTitle = _('an unknown event'); + $eventTitle = _m('an unknown event'); } else { $notice = $event->getNotice(); $eventUrl = $notice->bestUrl(); @@ -351,21 +351,21 @@ class RSVP extends Managed_DataObject switch ($response) { case 'Y': - $fmt = _("%1s is attending %2s."); + $fmt = _m('%1$s is attending %2$s.'); break; case 'N': - $fmt = _("%1s is not attending %2s."); + $fmt = _m('%1$s is not attending %2$s.'); break; case '?': - $fmt = _("%1s might attend %2s.>"); + $fmt = _m('%1$s might attend %2$s.'); break; default: - throw new Exception("Unknown response code {$response}"); + throw new Exception(sprintf(_m('Unknown response code %s.'),$response)); break; } if (empty($event)) { - $eventTitle = _('an unknown event'); + $eventTitle = _m('an unknown event'); } else { $notice = $event->getNotice(); $eventTitle = $event->title; diff --git a/plugins/Event/cancelrsvp.php b/plugins/Event/cancelrsvp.php index 83dabe2de5..94f78bfca6 100644 --- a/plugins/Event/cancelrsvp.php +++ b/plugins/Event/cancelrsvp.php @@ -58,7 +58,7 @@ class CancelrsvpAction extends Action function title() { - return _('Cancel RSVP'); + return _m('Cancel RSVP'); } /** @@ -79,25 +79,25 @@ class CancelrsvpAction extends Action $rsvpId = $this->trimmed('rsvp'); if (empty($rsvpId)) { - throw new ClientException(_('No such rsvp.')); + throw new ClientException(_m('No such RSVP.')); } $this->rsvp = RSVP::staticGet('id', $rsvpId); if (empty($this->rsvp)) { - throw new ClientException(_('No such rsvp.')); + throw new ClientException(_m('No such RSVP.')); } $this->event = Happening::staticGet('id', $this->rsvp->event_id); if (empty($this->event)) { - throw new ClientException(_('No such event.')); + throw new ClientException(_m('No such event.')); } $this->user = common_current_user(); if (empty($this->user)) { - throw new ClientException(_('You must be logged in to RSVP for an event.')); + throw new ClientException(_m('You must be logged in to RSVP for an event.')); } return true; @@ -154,7 +154,7 @@ class CancelrsvpAction extends Action $this->elementStart('html'); $this->elementStart('head'); // TRANS: Page title after sending a notice. - $this->element('title', null, _('Event saved')); + $this->element('title', null, _m('Event saved')); $this->elementEnd('head'); $this->elementStart('body'); $this->elementStart('body'); diff --git a/plugins/Event/cancelrsvpform.php b/plugins/Event/cancelrsvpform.php index 955a782e62..14161d1897 100644 --- a/plugins/Event/cancelrsvpform.php +++ b/plugins/Event/cancelrsvpform.php @@ -102,13 +102,13 @@ class CancelRSVPForm extends Form switch (RSVP::verbFor($this->rsvp->response)) { case RSVP::POSITIVE: - $this->out->text(_('You will attend this event.')); + $this->out->text(_m('You will attend this event.')); break; case RSVP::NEGATIVE: - $this->out->text(_('You will not attend this event.')); + $this->out->text(_m('You will not attend this event.')); break; case RSVP::POSSIBLE: - $this->out->text(_('You might attend this event.')); + $this->out->text(_m('You might attend this event.')); break; } diff --git a/plugins/Event/eventform.php b/plugins/Event/eventform.php index e6bc1e7016..31fecb1278 100644 --- a/plugins/Event/eventform.php +++ b/plugins/Event/eventform.php @@ -93,58 +93,58 @@ class EventForm extends Form $this->li(); $this->out->input('title', - _('Title'), + _m('LABEL','Title'), null, - _('Title of the event')); + _m('Title of the event.')); $this->unli(); $this->li(); $this->out->input('startdate', - _('Start date'), + _m('LABEL','Start date'), null, - _('Date the event starts')); + _m('Date the event starts.')); $this->unli(); $this->li(); $this->out->input('starttime', - _('Start time'), + _m('LABEL','Start time'), null, - _('Time the event starts')); + _m('Time the event starts.')); $this->unli(); $this->li(); $this->out->input('enddate', - _('End date'), + _m('LABEL','End date'), null, - _('Date the event ends')); + _m('Date the event ends.')); $this->unli(); $this->li(); $this->out->input('endtime', - _('End time'), + _m('LABEL','End time'), null, - _('Time the event ends')); + _m('Time the event ends.')); $this->unli(); $this->li(); $this->out->input('location', - _('Location'), + _m('LABEL','Location'), null, - _('Event location')); + _m('Event location.')); $this->unli(); $this->li(); $this->out->input('url', - _('URL'), + _m('LABEL','URL'), null, - _('URL for more information')); + _m('URL for more information.')); $this->unli(); $this->li(); $this->out->input('description', - _('Description'), + _m('LABEL','Description'), null, - _('Description of the event')); + _m('Description of the event.')); $this->unli(); $this->out->elementEnd('ul'); diff --git a/plugins/Event/locale/Event.pot b/plugins/Event/locale/Event.pot index 909f80149f..3e444d8854 100644 --- a/plugins/Event/locale/Event.pot +++ b/plugins/Event/locale/Event.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,11 +16,83 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: Happening.php:125 +msgid "Event already exists." +msgstr "" + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#: Happening.php:159 +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "" + +#: Happening.php:166 +#, php-format +msgid "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing RSVP. +#. TRANS: RSVP stands for "Please reply". +#: showrsvp.php:61 showrsvp.php:77 cancelrsvp.php:82 cancelrsvp.php:88 +msgid "No such RSVP." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +#: showrsvp.php:68 newrsvp.php:82 newrsvp.php:88 cancelrsvp.php:94 +#: showevent.php:60 showevent.php:68 +msgid "No such event." +msgstr "" + +#. TRANS: Title for event. +#. TRANS: %1$s is a user nickname, %2$s is an event title. +#: showrsvp.php:94 +#, php-format +msgid "%1$s's RSVP for \"%2$s\"" +msgstr "" + +#: cancelrsvpform.php:105 +msgid "You will attend this event." +msgstr "" + +#: cancelrsvpform.php:108 +msgid "You will not attend this event." +msgstr "" + +#: cancelrsvpform.php:111 +msgid "You might attend this event." +msgstr "" + #: cancelrsvpform.php:126 msgctxt "BUTTON" msgid "Cancel" msgstr "" +#: newrsvp.php:61 +msgid "New RSVP" +msgstr "" + +#: newrsvp.php:94 cancelrsvp.php:100 +msgid "You must be logged in to RSVP for an event." +msgstr "" + +#. TRANS: Page title after sending a notice. +#: newrsvp.php:162 cancelrsvp.php:157 newevent.php:219 +msgid "Event saved" +msgstr "" + +#: cancelrsvp.php:61 +msgid "Cancel RSVP" +msgstr "" + +#: rsvpform.php:101 +msgid "RSVP:" +msgstr "" + #: rsvpform.php:117 msgctxt "BUTTON" msgid "Yes" @@ -36,6 +108,78 @@ msgctxt "BUTTON" msgid "Maybe" msgstr "" +#: eventform.php:96 +msgctxt "LABEL" +msgid "Title" +msgstr "" + +#: eventform.php:98 +msgid "Title of the event." +msgstr "" + +#: eventform.php:103 +msgctxt "LABEL" +msgid "Start date" +msgstr "" + +#: eventform.php:105 +msgid "Date the event starts." +msgstr "" + +#: eventform.php:110 +msgctxt "LABEL" +msgid "Start time" +msgstr "" + +#: eventform.php:112 +msgid "Time the event starts." +msgstr "" + +#: eventform.php:117 +msgctxt "LABEL" +msgid "End date" +msgstr "" + +#: eventform.php:119 +msgid "Date the event ends." +msgstr "" + +#: eventform.php:124 +msgctxt "LABEL" +msgid "End time" +msgstr "" + +#: eventform.php:126 +msgid "Time the event ends." +msgstr "" + +#: eventform.php:131 +msgctxt "LABEL" +msgid "Location" +msgstr "" + +#: eventform.php:133 +msgid "Event location." +msgstr "" + +#: eventform.php:138 +msgctxt "LABEL" +msgid "URL" +msgstr "" + +#: eventform.php:140 +msgid "URL for more information." +msgstr "" + +#: eventform.php:145 +msgctxt "LABEL" +msgid "Description" +msgstr "" + +#: eventform.php:147 +msgid "Description of the event." +msgstr "" + #: eventform.php:162 msgctxt "BUTTON" msgid "Save" @@ -48,3 +192,157 @@ msgstr "" #: EventPlugin.php:138 msgid "Event" msgstr "" + +#: EventPlugin.php:171 +msgid "Wrong type for object." +msgstr "" + +#: EventPlugin.php:192 +msgid "RSVP for unknown event." +msgstr "" + +#: EventPlugin.php:197 +msgid "Unknown verb for events" +msgstr "" + +#: EventPlugin.php:228 +msgid "Unknown object type." +msgstr "" + +#: EventPlugin.php:234 +msgid "Unknown event notice." +msgstr "" + +#: EventPlugin.php:368 +msgid "Time:" +msgstr "" + +#: EventPlugin.php:388 +msgid "Location:" +msgstr "" + +#: EventPlugin.php:395 +msgid "Description:" +msgstr "" + +#: EventPlugin.php:403 +msgid "Attending:" +msgstr "" + +#. TRANS: RSVP counts. +#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. +#: EventPlugin.php:407 +#, php-format +msgid "Yes: %1$d No: %2$d Maybe: %3$d" +msgstr "" + +#: RSVP.php:146 RSVP.php:154 +msgid "RSVP already exists." +msgstr "" + +#: RSVP.php:222 +#, php-format +msgid "Unknown verb \"%s\"" +msgstr "" + +#: RSVP.php:239 +#, php-format +msgid "Unknown code \"%s\"." +msgstr "" + +#: RSVP.php:247 +#, php-format +msgid "RSVP %s does not correspond to a notice in the database." +msgstr "" + +#: RSVP.php:281 +#, php-format +msgid "No profile with ID %s." +msgstr "" + +#: RSVP.php:290 +#, php-format +msgid "No event with ID %s." +msgstr "" + +#: RSVP.php:319 +#, php-format +msgid "" +"%2$s is attending %4$s." +msgstr "" + +#: RSVP.php:322 +#, php-format +msgid "" +"%2$s is not attending " +"%4$s." +msgstr "" + +#: RSVP.php:325 +#, php-format +msgid "" +"%2$s might attend %4$s." +msgstr "" + +#: RSVP.php:328 RSVP.php:363 +#, php-format +msgid "Unknown response code %s." +msgstr "" + +#: RSVP.php:334 RSVP.php:368 +msgid "an unknown event" +msgstr "" + +#: RSVP.php:354 +#, php-format +msgid "%1$s is attending %2$s." +msgstr "" + +#: RSVP.php:357 +#, php-format +msgid "%1$s is not attending %2$s." +msgstr "" + +#: RSVP.php:360 +#, php-format +msgid "%1$s might attend %2$s." +msgstr "" + +#: newevent.php:66 +msgid "New event" +msgstr "" + +#: newevent.php:84 +msgid "Must be logged in to post a event." +msgstr "" + +#: newevent.php:95 +msgid "Title required." +msgstr "" + +#: newevent.php:105 +msgid "Start date required." +msgstr "" + +#: newevent.php:117 +msgid "End date required." +msgstr "" + +#: newevent.php:138 newevent.php:144 +#, php-format +msgid "Could not parse date \"%s\"." +msgstr "" + +#: newevent.php:182 +msgid "Event must have a title." +msgstr "" + +#: newevent.php:186 +msgid "Event must have a start time." +msgstr "" + +#: newevent.php:190 +msgid "Event must have an end time." +msgstr "" diff --git a/plugins/Event/locale/ar/LC_MESSAGES/Event.po b/plugins/Event/locale/ar/LC_MESSAGES/Event.po new file mode 100644 index 0000000000..2e45d2907d --- /dev/null +++ b/plugins/Event/locale/ar/LC_MESSAGES/Event.po @@ -0,0 +1,250 @@ +# Translation of StatusNet - Event to Arabic (العربية) +# Exported from translatewiki.net +# +# Author: OsamaK +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Event\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:14+0000\n" +"Language-Team: Arabic \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-03-24 15:25:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ar\n" +"X-Message-Group: #out-statusnet-plugin-event\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" + +msgid "Event already exists." +msgstr "" + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "" + +#, php-format +msgid "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing RSVP. +#. TRANS: RSVP stands for "Please reply". +msgid "No such RSVP." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such Event." +msgstr "" + +#. TRANS: Title for event. +#. TRANS: %1$s is a user nickname, %2$s is an event title. +#, php-format +msgid "%1$s's RSVP for \"%2$s\"" +msgstr "" + +msgid "You will attend this event." +msgstr "" + +msgid "You will not attend this event." +msgstr "" + +msgid "You might attend this event." +msgstr "" + +msgctxt "BUTTON" +msgid "Cancel" +msgstr "ألغِ" + +msgid "New RSVP" +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such event." +msgstr "" + +msgid "You must be logged in to RSVP for an event." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Event saved" +msgstr "" + +#, fuzzy +msgid "Cancel RSVP" +msgstr "ألغِ" + +msgid "RSVP:" +msgstr "" + +msgctxt "BUTTON" +msgid "Yes" +msgstr "نعم" + +msgctxt "BUTTON" +msgid "No" +msgstr "لا" + +msgctxt "BUTTON" +msgid "Maybe" +msgstr "" + +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the event" +msgstr "" + +msgctxt "LABEL" +msgid "Start date" +msgstr "" + +msgid "Date the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "Start time" +msgstr "" + +msgid "Time the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "End date" +msgstr "" + +msgid "Date the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "End time" +msgstr "" + +msgid "Time the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "Location" +msgstr "" + +msgid "Event location" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL for more information" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the event" +msgstr "" + +msgctxt "BUTTON" +msgid "Save" +msgstr "احفظ" + +msgid "Event invitations and RSVPs." +msgstr "" + +msgid "Event" +msgstr "" + +msgid "Time:" +msgstr "" + +msgid "Location:" +msgstr "" + +msgid "Description:" +msgstr "" + +msgid "Attending:" +msgstr "" + +#. TRANS: RSVP counts. +#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. +#, php-format +msgid "Yes: %1$d No: %2$d Maybe: %3$d" +msgstr "" + +msgid "RSVP already exists." +msgstr "" + +#, php-format +msgid "" +"%2s is attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s is not attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s might attend %4s." +msgstr "" + +msgid "an unknown event" +msgstr "" + +#, php-format +msgid "%1s is attending %2s." +msgstr "" + +#, php-format +msgid "%1s is not attending %2s." +msgstr "" + +#, php-format +msgid "%1s might attend %2s.>" +msgstr "" + +msgid "New event" +msgstr "" + +msgid "Must be logged in to post a event." +msgstr "" + +msgid "Title required." +msgstr "" + +msgid "Start date required." +msgstr "" + +msgid "End date required." +msgstr "" + +#, php-format +msgid "Could not parse date \"%s\"" +msgstr "" + +msgid "Event must have a title." +msgstr "" + +msgid "Event must have a start time." +msgstr "" + +msgid "Event must have an end time." +msgstr "" diff --git a/plugins/Event/locale/br/LC_MESSAGES/Event.po b/plugins/Event/locale/br/LC_MESSAGES/Event.po new file mode 100644 index 0000000000..b4011b7d8c --- /dev/null +++ b/plugins/Event/locale/br/LC_MESSAGES/Event.po @@ -0,0 +1,282 @@ +# Translation of StatusNet - Event to Breton (Brezhoneg) +# Exported from translatewiki.net +# +# Author: Y-M D +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Event\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:58+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-03 13:40:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-event\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +msgid "Event already exists." +msgstr "An darvoud zo anezhañ dija." + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "\"%1$s\" %2$s - %3$s (%4$s): %5$s" + +#, php-format +msgid "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing RSVP. +#. TRANS: RSVP stands for "Please reply". +msgid "No such RSVP." +msgstr "N'eus ket eus an RSVP-se." + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such event." +msgstr "N'eus ket eus an darvoud-se." + +#. TRANS: Title for event. +#. TRANS: %1$s is a user nickname, %2$s is an event title. +#, php-format +msgid "%1$s's RSVP for \"%2$s\"" +msgstr "" + +msgid "You will attend this event." +msgstr "" + +msgid "You will not attend this event." +msgstr "" + +msgid "You might attend this event." +msgstr "" + +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Nullañ" + +msgid "New RSVP" +msgstr "RSVP nevez" + +msgid "You must be logged in to RSVP for an event." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Event saved" +msgstr "" + +msgid "Cancel RSVP" +msgstr "Nullañ an RSVP" + +msgid "RSVP:" +msgstr "RSVP :" + +msgctxt "BUTTON" +msgid "Yes" +msgstr "Ya" + +msgctxt "BUTTON" +msgid "No" +msgstr "Ket" + +msgctxt "BUTTON" +msgid "Maybe" +msgstr "Marteze" + +msgctxt "LABEL" +msgid "Title" +msgstr "Titl" + +msgid "Title of the event." +msgstr "Titl an darvoud." + +msgctxt "LABEL" +msgid "Start date" +msgstr "Deiziad kregiñ" + +msgid "Date the event starts." +msgstr "An deiziad evit pehini e krog an darvoud." + +msgctxt "LABEL" +msgid "Start time" +msgstr "Eurvezh kregiñ" + +msgid "Time the event starts." +msgstr "" + +msgctxt "LABEL" +msgid "End date" +msgstr "Deiziad echuiñ" + +msgid "Date the event ends." +msgstr "An deiziad evit pehini ec'h echu an darvoud." + +msgctxt "LABEL" +msgid "End time" +msgstr "Eurvezh echuiñ" + +msgid "Time the event ends." +msgstr "" + +msgctxt "LABEL" +msgid "Location" +msgstr "Lec'hiadur" + +msgid "Event location." +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "URL" + +msgid "URL for more information." +msgstr "URL evit gouzout hiroc'h." + +msgctxt "LABEL" +msgid "Description" +msgstr "Deskrivadur" + +msgid "Description of the event." +msgstr "Deskrivadur an darvoud." + +msgctxt "BUTTON" +msgid "Save" +msgstr "Enrollañ" + +msgid "Event invitations and RSVPs." +msgstr "" + +msgid "Event" +msgstr "Darvoud" + +msgid "Wrong type for object." +msgstr "" + +msgid "RSVP for unknown event." +msgstr "" + +msgid "Unknown verb for events" +msgstr "" + +msgid "Unknown object type." +msgstr "" + +msgid "Unknown event notice." +msgstr "" + +msgid "Time:" +msgstr "Deiziad :" + +msgid "Location:" +msgstr "Lec'hiadur :" + +msgid "Description:" +msgstr "Deskrivadur :" + +msgid "Attending:" +msgstr "" + +#. TRANS: RSVP counts. +#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. +#, php-format +msgid "Yes: %1$d No: %2$d Maybe: %3$d" +msgstr "Ya : %1$d Nann : %2$d Marteze : %3$d" + +msgid "RSVP already exists." +msgstr "" + +#, php-format +msgid "Unknown verb \"%s\"" +msgstr "Verb dizanv \"%s\"" + +#, php-format +msgid "Unknown code \"%s\"." +msgstr "Kod dizanv \"%s\"." + +#, php-format +msgid "RSVP %s does not correspond to a notice in the database." +msgstr "" + +#, php-format +msgid "No profile with ID %s." +msgstr "N'eus profil ebet gant an ID %s." + +#, php-format +msgid "No event with ID %s." +msgstr "N'eus darvoud ebet gant an ID %s" + +#, php-format +msgid "" +"%2$s is attending %4$s." +msgstr "" + +#, php-format +msgid "" +"%2$s is not attending " +"%4$s." +msgstr "" + +#, php-format +msgid "" +"%2$s might attend %4$s." +msgstr "" + +#, php-format +msgid "Unknown response code %s." +msgstr "" + +msgid "an unknown event" +msgstr "" + +#, php-format +msgid "%1$s is attending %2$s." +msgstr "" + +#, php-format +msgid "%1$s is not attending %2$s." +msgstr "" + +#, php-format +msgid "%1$s might attend %2$s." +msgstr "" + +msgid "New event" +msgstr "Darvoud nevez" + +msgid "Must be logged in to post a event." +msgstr "" + +msgid "Title required." +msgstr "Ezhomm 'zo eus un titl." + +msgid "Start date required." +msgstr "" + +msgid "End date required." +msgstr "" + +#, php-format +msgid "Could not parse date \"%s\"." +msgstr "" + +msgid "Event must have a title." +msgstr "An darvoud a rank kaout un titl." + +msgid "Event must have a start time." +msgstr "" + +msgid "Event must have an end time." +msgstr "" diff --git a/plugins/Event/locale/ia/LC_MESSAGES/Event.po b/plugins/Event/locale/ia/LC_MESSAGES/Event.po index 9b8e3fd907..8ef6f2fb03 100644 --- a/plugins/Event/locale/ia/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ia/LC_MESSAGES/Event.po @@ -9,22 +9,83 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:36+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Event already exists." +msgstr "Le evento ja existe." + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "\"%1$s\" %2$s - %3$s (%4$s): %5$s" + +#, php-format +msgid "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " +msgstr "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " + +#. TRANS: Client exception thrown when referring to a non-existing RSVP. +#. TRANS: RSVP stands for "Please reply". +msgid "No such RSVP." +msgstr "Iste RSVP non existe." + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such event." +msgstr "Iste evento non existe." + +#. TRANS: Title for event. +#. TRANS: %1$s is a user nickname, %2$s is an event title. +#, php-format +msgid "%1$s's RSVP for \"%2$s\"" +msgstr "Le RSVP de %1$s pro \"%2$s\"" + +msgid "You will attend this event." +msgstr "Tu participara a iste evento." + +msgid "You will not attend this event." +msgstr "Tu non participara a iste evento." + +msgid "You might attend this event." +msgstr "Tu participara forsan a iste evento." + msgctxt "BUTTON" msgid "Cancel" msgstr "Cancellar" +msgid "New RSVP" +msgstr "Nove RSVP" + +msgid "You must be logged in to RSVP for an event." +msgstr "Es necessari aperir session pro responder a un invitation de evento." + +#. TRANS: Page title after sending a notice. +msgid "Event saved" +msgstr "Evento salveguardate" + +msgid "Cancel RSVP" +msgstr "Cancellar RSVP" + +msgid "RSVP:" +msgstr "RSVP:" + msgctxt "BUTTON" msgid "Yes" msgstr "Si" @@ -37,6 +98,62 @@ msgctxt "BUTTON" msgid "Maybe" msgstr "Forsan" +msgctxt "LABEL" +msgid "Title" +msgstr "Titulo" + +msgid "Title of the event." +msgstr "Le titulo del evento." + +msgctxt "LABEL" +msgid "Start date" +msgstr "Data de initio" + +msgid "Date the event starts." +msgstr "Le data a que le evento comencia." + +msgctxt "LABEL" +msgid "Start time" +msgstr "Hora de initio" + +msgid "Time the event starts." +msgstr "Le hora a que le evento comencia." + +msgctxt "LABEL" +msgid "End date" +msgstr "Data de fin" + +msgid "Date the event ends." +msgstr "Le data a que le evento fini." + +msgctxt "LABEL" +msgid "End time" +msgstr "Hora de fin" + +msgid "Time the event ends." +msgstr "Le hora a que le evento fini." + +msgctxt "LABEL" +msgid "Location" +msgstr "Loco" + +msgid "Event location." +msgstr "Le loco del evento." + +msgctxt "LABEL" +msgid "URL" +msgstr "URL" + +msgid "URL for more information." +msgstr "Le URL pro additional information." + +msgctxt "LABEL" +msgid "Description" +msgstr "Description" + +msgid "Description of the event." +msgstr "Description del evento." + msgctxt "BUTTON" msgid "Save" msgstr "Salveguardar" @@ -46,3 +163,130 @@ msgstr "Invitationes a eventos e responsas a illos." msgid "Event" msgstr "Evento" + +msgid "Wrong type for object." +msgstr "Typo errate pro iste objecto." + +msgid "RSVP for unknown event." +msgstr "RSVP pro evento incognite." + +msgid "Unknown verb for events" +msgstr "Verbo incognite pro eventos" + +msgid "Unknown object type." +msgstr "Typo de objecto incognite." + +msgid "Unknown event notice." +msgstr "Nota de evento incognite." + +msgid "Time:" +msgstr "Hora:" + +msgid "Location:" +msgstr "Loco:" + +msgid "Description:" +msgstr "Description:" + +msgid "Attending:" +msgstr "Presente:" + +#. TRANS: RSVP counts. +#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. +#, php-format +msgid "Yes: %1$d No: %2$d Maybe: %3$d" +msgstr "Si: %1$d No: %2$d Forsan: %3$d" + +msgid "RSVP already exists." +msgstr "Le RSVP ja existe." + +#, php-format +msgid "Unknown verb \"%s\"" +msgstr "Verbo incognite: \"%s\"." + +#, php-format +msgid "Unknown code \"%s\"." +msgstr "Codice incognite: \"%s\"." + +#, php-format +msgid "RSVP %s does not correspond to a notice in the database." +msgstr "Le RSVP %s non corresponde a un nota in le base de datos." + +#, php-format +msgid "No profile with ID %s." +msgstr "Non existe un profilo con le ID %s." + +#, php-format +msgid "No event with ID %s." +msgstr "Non existe un evento con le ID %s." + +#, php-format +msgid "" +"%2$s is attending %4$s." +msgstr "" +"%2$s essera presente a " +"%4$s." + +#, php-format +msgid "" +"%2$s is not attending " +"%4$s." +msgstr "" +"%2$s non essera " +"presente a %4$s." + +#, php-format +msgid "" +"%2$s might attend %4$s." +msgstr "" +"%2$s essera forsan " +"presente a %4$s." + +#, php-format +msgid "Unknown response code %s." +msgstr "Codice de responsa incognite: %s." + +msgid "an unknown event" +msgstr "un evento incognite" + +#, php-format +msgid "%1$s is attending %2$s." +msgstr "%1$s essera presente a %2$s." + +#, php-format +msgid "%1$s is not attending %2$s." +msgstr "%1$s non essera presente a %2$s." + +#, php-format +msgid "%1$s might attend %2$s." +msgstr "%1$s essera forsan presente a %2$s." + +msgid "New event" +msgstr "Nove evento" + +msgid "Must be logged in to post a event." +msgstr "Es necessari aperir session pro placiar un evento." + +msgid "Title required." +msgstr "Titulo requirite." + +msgid "Start date required." +msgstr "Data de initio requirite." + +msgid "End date required." +msgstr "Data de fin requirite." + +#, php-format +msgid "Could not parse date \"%s\"." +msgstr "Non poteva comprender le data \"%s\"." + +msgid "Event must have a title." +msgstr "Le evento debe haber un titulo." + +msgid "Event must have a start time." +msgstr "Le evento debe haber un hora de initio." + +msgid "Event must have an end time." +msgstr "Le evento debe haber un hora de fin." diff --git a/plugins/Event/locale/mk/LC_MESSAGES/Event.po b/plugins/Event/locale/mk/LC_MESSAGES/Event.po index fbf2dbee82..b65a0353b7 100644 --- a/plugins/Event/locale/mk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/mk/LC_MESSAGES/Event.po @@ -9,22 +9,83 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:36+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +msgid "Event already exists." +msgstr "Настанот веќе постои." + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "„%1$s“ %2$s - %3$s ч. (%4$s): %5$s" + +#, php-format +msgid "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " +msgstr "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " + +#. TRANS: Client exception thrown when referring to a non-existing RSVP. +#. TRANS: RSVP stands for "Please reply". +msgid "No such RSVP." +msgstr "Нема таков одѕив." + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such event." +msgstr "Нема таков настан." + +#. TRANS: Title for event. +#. TRANS: %1$s is a user nickname, %2$s is an event title. +#, php-format +msgid "%1$s's RSVP for \"%2$s\"" +msgstr "Одѕив на %1$s за „%2$s“" + +msgid "You will attend this event." +msgstr "Ќе присуствувате на настанов." + +msgid "You will not attend this event." +msgstr "Нема да присуствувате на настанов." + +msgid "You might attend this event." +msgstr "Можеби ќе присуствувате на настанов." + msgctxt "BUTTON" msgid "Cancel" msgstr "Откажи" +msgid "New RSVP" +msgstr "Нов одѕив" + +msgid "You must be logged in to RSVP for an event." +msgstr "Мора да се најавени за да се одзвете на настан" + +#. TRANS: Page title after sending a notice. +msgid "Event saved" +msgstr "Настанов е зачуван" + +msgid "Cancel RSVP" +msgstr "Откажи одѕив" + +msgid "RSVP:" +msgstr "Одѕив:" + msgctxt "BUTTON" msgid "Yes" msgstr "Да" @@ -37,6 +98,62 @@ msgctxt "BUTTON" msgid "Maybe" msgstr "Можеби" +msgctxt "LABEL" +msgid "Title" +msgstr "Назив" + +msgid "Title of the event." +msgstr "Назив на настанот." + +msgctxt "LABEL" +msgid "Start date" +msgstr "Почетен датум" + +msgid "Date the event starts." +msgstr "Кој датум почнува настанот." + +msgctxt "LABEL" +msgid "Start time" +msgstr "Време на почеток" + +msgid "Time the event starts." +msgstr "Во колку часот почнува настанот." + +msgctxt "LABEL" +msgid "End date" +msgstr "Завршен датум" + +msgid "Date the event ends." +msgstr "На кој датум завршува настанот." + +msgctxt "LABEL" +msgid "End time" +msgstr "Време на завршеток" + +msgid "Time the event ends." +msgstr "Во колку часот завршува настанот." + +msgctxt "LABEL" +msgid "Location" +msgstr "Место" + +msgid "Event location." +msgstr "Место на случување." + +msgctxt "LABEL" +msgid "URL" +msgstr "URL" + +msgid "URL for more information." +msgstr "URL за повеќе информации" + +msgctxt "LABEL" +msgid "Description" +msgstr "Опис" + +msgid "Description of the event." +msgstr "Опис на настанот." + msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" @@ -46,3 +163,130 @@ msgstr "Покани и одговори за настани" msgid "Event" msgstr "Настан" + +msgid "Wrong type for object." +msgstr "Погрешен тип на објект." + +msgid "RSVP for unknown event." +msgstr "Одѕив на непознат настан." + +msgid "Unknown verb for events" +msgstr "Непознат глагол за настани" + +msgid "Unknown object type." +msgstr "Непознат тип на објект." + +msgid "Unknown event notice." +msgstr "Непозната забелешка за настан." + +msgid "Time:" +msgstr "Време:" + +msgid "Location:" +msgstr "Место:" + +msgid "Description:" +msgstr "Опис:" + +msgid "Attending:" +msgstr "Присуство:" + +#. TRANS: RSVP counts. +#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. +#, php-format +msgid "Yes: %1$d No: %2$d Maybe: %3$d" +msgstr "Да: %1$d Не: %2$d Можеби: %3$d" + +msgid "RSVP already exists." +msgstr "Одѕивот веќе постои." + +#, php-format +msgid "Unknown verb \"%s\"" +msgstr "Непознат глагол: „%s“" + +#, php-format +msgid "Unknown code \"%s\"." +msgstr "Непознат код „%s“." + +#, php-format +msgid "RSVP %s does not correspond to a notice in the database." +msgstr "Одзивот %s не соодветствува на забелешка во базата." + +#, php-format +msgid "No profile with ID %s." +msgstr "Нема профил со ID %s." + +#, php-format +msgid "No event with ID %s." +msgstr "Нема настан со ID %s." + +#, php-format +msgid "" +"%2$s is attending %4$s." +msgstr "" +"%2$s ќе присуствува на " +"%4$s." + +#, php-format +msgid "" +"%2$s is not attending " +"%4$s." +msgstr "" +"%2$s нема да " +"присуствува на %4$s." + +#, php-format +msgid "" +"%2$s might attend %4$s." +msgstr "" +"%2$s можеби ќе " +"присуствува на %4$s." + +#, php-format +msgid "Unknown response code %s." +msgstr "Непознат одѕивен код %s." + +msgid "an unknown event" +msgstr "непознат настан" + +#, php-format +msgid "%1$s is attending %2$s." +msgstr "%1$s ќе присуствува на %2$s." + +#, php-format +msgid "%1$s is not attending %2$s." +msgstr "%1$s нема да присуствува на %2$s." + +#, php-format +msgid "%1$s might attend %2$s." +msgstr "%1$s можеби ќе присуствува на %2$s." + +msgid "New event" +msgstr "Нов настан" + +msgid "Must be logged in to post a event." +msgstr "Мора да сте најавени за да објавите настан." + +msgid "Title required." +msgstr "Се бара назив." + +msgid "Start date required." +msgstr "Се бара почетен датум." + +msgid "End date required." +msgstr "Се бара завршен датум." + +#, php-format +msgid "Could not parse date \"%s\"." +msgstr "Не можев да го парсирам датумот „%s“." + +msgid "Event must have a title." +msgstr "Настанот мора да има назив." + +msgid "Event must have a start time." +msgstr "Настанот мора да има почетно време." + +msgid "Event must have an end time." +msgstr "Настанот мора да има завршно време." diff --git a/plugins/Event/locale/ms/LC_MESSAGES/Event.po b/plugins/Event/locale/ms/LC_MESSAGES/Event.po new file mode 100644 index 0000000000..a2590097e0 --- /dev/null +++ b/plugins/Event/locale/ms/LC_MESSAGES/Event.po @@ -0,0 +1,293 @@ +# Translation of StatusNet - Event to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Event\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:37+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-01 21:05:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-event\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Event already exists." +msgstr "" + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "" + +#, php-format +msgid "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing RSVP. +#. TRANS: RSVP stands for "Please reply". +msgid "No such RSVP." +msgstr "RSVP ini tidak wujud." + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such event." +msgstr "Acara ini tidak wujud." + +#. TRANS: Title for event. +#. TRANS: %1$s is a user nickname, %2$s is an event title. +#, php-format +msgid "%1$s's RSVP for \"%2$s\"" +msgstr "RSVP %1$s untuk \"%2$s\"" + +msgid "You will attend this event." +msgstr "Anda akan menghadiri acara ini." + +msgid "You will not attend this event." +msgstr "Anda tidak akan menghadiri acara ini." + +msgid "You might attend this event." +msgstr "Anda mungkin menghadiri acara ini." + +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Batalkan" + +msgid "New RSVP" +msgstr "RSVP baru" + +msgid "You must be logged in to RSVP for an event." +msgstr "Anda mesti log masuk untuk membuat RSVP untuk acara." + +#. TRANS: Page title after sending a notice. +msgid "Event saved" +msgstr "Acara disimpan" + +msgid "Cancel RSVP" +msgstr "Batalkan RSVP" + +msgid "RSVP:" +msgstr "RSVP:" + +msgctxt "BUTTON" +msgid "Yes" +msgstr "Ya" + +msgctxt "BUTTON" +msgid "No" +msgstr "Tidak" + +msgctxt "BUTTON" +msgid "Maybe" +msgstr "Mungkin" + +msgctxt "LABEL" +msgid "Title" +msgstr "Tajuk" + +#, fuzzy +msgid "Title of the event." +msgstr "Nama acara" + +msgctxt "LABEL" +msgid "Start date" +msgstr "Tarikh mula" + +#, fuzzy +msgid "Date the event starts." +msgstr "Tarikh acara bermula" + +msgctxt "LABEL" +msgid "Start time" +msgstr "Waktu bermula" + +#, fuzzy +msgid "Time the event starts." +msgstr "Waktu acara bermula" + +msgctxt "LABEL" +msgid "End date" +msgstr "Tarikh tamat" + +#, fuzzy +msgid "Date the event ends." +msgstr "Tarikh acara berakhir" + +msgctxt "LABEL" +msgid "End time" +msgstr "Waktu tamat" + +#, fuzzy +msgid "Time the event ends." +msgstr "Waktu acara berakhir" + +msgctxt "LABEL" +msgid "Location" +msgstr "Lokasi" + +#, fuzzy +msgid "Event location." +msgstr "Lokasi acara" + +msgctxt "LABEL" +msgid "URL" +msgstr "URL" + +#, fuzzy +msgid "URL for more information." +msgstr "URL untuk keterangan lanjut" + +msgctxt "LABEL" +msgid "Description" +msgstr "Keterangan" + +#, fuzzy +msgid "Description of the event." +msgstr "Keterangan acara" + +msgctxt "BUTTON" +msgid "Save" +msgstr "Simpan" + +msgid "Event invitations and RSVPs." +msgstr "Jemputan dan RSVP acara." + +msgid "Event" +msgstr "Acara" + +msgid "Wrong type for object." +msgstr "" + +#, fuzzy +msgid "RSVP for unknown event." +msgstr "acara yang tidak dikenali" + +#, fuzzy +msgid "Unknown verb for events" +msgstr "acara yang tidak dikenali" + +msgid "Unknown object type." +msgstr "" + +#, fuzzy +msgid "Unknown event notice." +msgstr "acara yang tidak dikenali" + +msgid "Time:" +msgstr "Waktu:" + +msgid "Location:" +msgstr "Lokasi:" + +msgid "Description:" +msgstr "Keterangan:" + +msgid "Attending:" +msgstr "Hadir:" + +#. TRANS: RSVP counts. +#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. +#, php-format +msgid "Yes: %1$d No: %2$d Maybe: %3$d" +msgstr "Ya: %1$d Tidak: %2$d Mungkin: %3$d" + +msgid "RSVP already exists." +msgstr "RSVP sudah ada." + +#, php-format +msgid "Unknown verb \"%s\"" +msgstr "" + +#, php-format +msgid "Unknown code \"%s\"." +msgstr "" + +#, php-format +msgid "RSVP %s does not correspond to a notice in the database." +msgstr "" + +#, php-format +msgid "No profile with ID %s." +msgstr "" + +#, php-format +msgid "No event with ID %s." +msgstr "" + +#, php-format +msgid "" +"%2$s is attending %4$s." +msgstr "" + +#, php-format +msgid "" +"%2$s is not attending " +"%4$s." +msgstr "" + +#, php-format +msgid "" +"%2$s might attend %4$s." +msgstr "" + +#, php-format +msgid "Unknown response code %s." +msgstr "" + +msgid "an unknown event" +msgstr "acara yang tidak dikenali" + +#, php-format +msgid "%1$s is attending %2$s." +msgstr "" + +#, php-format +msgid "%1$s is not attending %2$s." +msgstr "" + +#, fuzzy, php-format +msgid "%1$s might attend %2$s." +msgstr "Anda mungkin menghadiri acara ini." + +msgid "New event" +msgstr "" + +msgid "Must be logged in to post a event." +msgstr "" + +msgid "Title required." +msgstr "" + +msgid "Start date required." +msgstr "" + +msgid "End date required." +msgstr "" + +#, php-format +msgid "Could not parse date \"%s\"." +msgstr "" + +msgid "Event must have a title." +msgstr "" + +msgid "Event must have a start time." +msgstr "" + +msgid "Event must have an end time." +msgstr "" diff --git a/plugins/Event/locale/nl/LC_MESSAGES/Event.po b/plugins/Event/locale/nl/LC_MESSAGES/Event.po index fcba279b74..da345995d2 100644 --- a/plugins/Event/locale/nl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/nl/LC_MESSAGES/Event.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Event to Dutch (Nederlands) # Exported from translatewiki.net # +# Author: McDutchie # Author: Siebrand # -- # This file is distributed under the same license as the StatusNet package. @@ -9,22 +10,84 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:37+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Event already exists." +msgstr "Evenement bestaat al." + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "\"%1$s\" %2$s - %3$s (%4$s): %5$s" + +#, php-format +msgid "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " +msgstr "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " + +#. TRANS: Client exception thrown when referring to a non-existing RSVP. +#. TRANS: RSVP stands for "Please reply". +msgid "No such RSVP." +msgstr "Het verzoek tot antwoorden kon niet worden gevonden." + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such event." +msgstr "Dat evenement bestaat niet." + +#. TRANS: Title for event. +#. TRANS: %1$s is a user nickname, %2$s is an event title. +#, php-format +msgid "%1$s's RSVP for \"%2$s\"" +msgstr "Antwoord van %1$s voor \"%2$s\"" + +msgid "You will attend this event." +msgstr "U neemt deel aan dit evenement." + +msgid "You will not attend this event." +msgstr "U neemt geen deel aan dit evenement." + +msgid "You might attend this event." +msgstr "U meent misschien deel aan dit evenement." + msgctxt "BUTTON" msgid "Cancel" msgstr "Annuleren" +msgid "New RSVP" +msgstr "Nieuw verzoek tot antwoorden" + +msgid "You must be logged in to RSVP for an event." +msgstr "" +"U moet zijn aangemeld zijn om te reageren op een verzoek tot antwoorden." + +#. TRANS: Page title after sending a notice. +msgid "Event saved" +msgstr "Het evenement is opgeslagen" + +msgid "Cancel RSVP" +msgstr "Verzoek tot antwoorden annuleren" + +msgid "RSVP:" +msgstr "Verzoek tot antwoorden:" + msgctxt "BUTTON" msgid "Yes" msgstr "Ja" @@ -37,6 +100,62 @@ msgctxt "BUTTON" msgid "Maybe" msgstr "Misschien" +msgctxt "LABEL" +msgid "Title" +msgstr "Naam" + +msgid "Title of the event." +msgstr "Naam van het evenement." + +msgctxt "LABEL" +msgid "Start date" +msgstr "Begindatum" + +msgid "Date the event starts." +msgstr "Datum waarop het evenement begint." + +msgctxt "LABEL" +msgid "Start time" +msgstr "Starttijd" + +msgid "Time the event starts." +msgstr "Tijd waarop het evenement begint." + +msgctxt "LABEL" +msgid "End date" +msgstr "Einddatum" + +msgid "Date the event ends." +msgstr "Datum waarop het evenement eindigt." + +msgctxt "LABEL" +msgid "End time" +msgstr "Eindtijd" + +msgid "Time the event ends." +msgstr "Tijd waarop het evenement eindigt." + +msgctxt "LABEL" +msgid "Location" +msgstr "Locatie" + +msgid "Event location." +msgstr "Locatie waar het evenement plaatsvindt." + +msgctxt "LABEL" +msgid "URL" +msgstr "URL" + +msgid "URL for more information." +msgstr "URL met meer gegevens." + +msgctxt "LABEL" +msgid "Description" +msgstr "Beschrijving" + +msgid "Description of the event." +msgstr "Beschrijving van het evenement." + msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" @@ -45,4 +164,133 @@ msgid "Event invitations and RSVPs." msgstr "Uitnodigingen en RVSP's." msgid "Event" -msgstr "Gebeurtenis" +msgstr "Evenement" + +msgid "Wrong type for object." +msgstr "Verkeerde type voor object." + +msgid "RSVP for unknown event." +msgstr "Antwoord gevraagd voor onbekend evenement." + +msgid "Unknown verb for events" +msgstr "Onbekend werkwoord voor evenementen" + +msgid "Unknown object type." +msgstr "Onbekend objecttype." + +msgid "Unknown event notice." +msgstr "Onbekend mededeling over evenement." + +msgid "Time:" +msgstr "Tijd:" + +msgid "Location:" +msgstr "Locatie:" + +msgid "Description:" +msgstr "Beschrijving:" + +msgid "Attending:" +msgstr "Aanwezig:" + +#. TRANS: RSVP counts. +#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. +#, php-format +msgid "Yes: %1$d No: %2$d Maybe: %3$d" +msgstr "Ja: %1$d Nee: %2$d Misschien: %3$d" + +msgid "RSVP already exists." +msgstr "Het verzoek tot antwoorden bestaat al." + +#, php-format +msgid "Unknown verb \"%s\"" +msgstr "Onbekend werkwoord: \"%s\"." + +#, php-format +msgid "Unknown code \"%s\"." +msgstr "Onbekende code \"%s\"." + +#, php-format +msgid "RSVP %s does not correspond to a notice in the database." +msgstr "" +"Verzoek tot antwoorden %s komt niet overeen met een mededeling in de " +"database." + +#, php-format +msgid "No profile with ID %s." +msgstr "Er is geen profiel met ID %s." + +#, php-format +msgid "No event with ID %s." +msgstr "Geen evenement met ID %s." + +#, php-format +msgid "" +"%2$s is attending %4$s." +msgstr "" +"%2$s is aanwezig bij " +"%4$s." + +#, php-format +msgid "" +"%2$s is not attending " +"%4$s." +msgstr "" +"%2$s is niet aanwezig " +"bij %4$s." + +#, php-format +msgid "" +"%2$s might attend %4$s." +msgstr "" +"%2$s is misschien " +"aanwezig bij %4$s." + +#, php-format +msgid "Unknown response code %s." +msgstr "Onbekende antwoordcode %s ." + +msgid "an unknown event" +msgstr "een onbekend evenement" + +#, php-format +msgid "%1$s is attending %2$s." +msgstr "%1$s is aanwezig bij %2$s." + +#, php-format +msgid "%1$s is not attending %2$s." +msgstr "%1$s is niet aanwezig bij %2$s." + +#, php-format +msgid "%1$s might attend %2$s." +msgstr "%1$s is misschien aanwezig bij %2$s." + +msgid "New event" +msgstr "Nieuw evenement" + +msgid "Must be logged in to post a event." +msgstr "U moet aangemeld zijn om een evenement te kunnen plaatsen." + +msgid "Title required." +msgstr "Naam is verplicht." + +msgid "Start date required." +msgstr "De begindatum is vereist." + +msgid "End date required." +msgstr "De einddatum is vereist." + +#, php-format +msgid "Could not parse date \"%s\"." +msgstr "Het was niet mogelijk de datum \"%s\" te verwerken." + +msgid "Event must have a title." +msgstr "Een evenement moet een naam hebben." + +msgid "Event must have a start time." +msgstr "Een evenement moet een begintijd hebben." + +msgid "Event must have an end time." +msgstr "Een evenement moet een eindtijd hebben." diff --git a/plugins/Event/locale/te/LC_MESSAGES/Event.po b/plugins/Event/locale/te/LC_MESSAGES/Event.po index 6a89e12dfc..220b059698 100644 --- a/plugins/Event/locale/te/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/te/LC_MESSAGES/Event.po @@ -9,22 +9,84 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:35+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:14+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Event already exists." +msgstr "" + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "" + +#, php-format +msgid "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing RSVP. +#. TRANS: RSVP stands for "Please reply". +msgid "No such RSVP." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such Event." +msgstr "" + +#. TRANS: Title for event. +#. TRANS: %1$s is a user nickname, %2$s is an event title. +#, php-format +msgid "%1$s's RSVP for \"%2$s\"" +msgstr "" + +msgid "You will attend this event." +msgstr "" + +msgid "You will not attend this event." +msgstr "" + +msgid "You might attend this event." +msgstr "" + msgctxt "BUTTON" msgid "Cancel" msgstr "రద్దుచేయి" +msgid "New RSVP" +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such event." +msgstr "" + +msgid "You must be logged in to RSVP for an event." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Event saved" +msgstr "" + +#, fuzzy +msgid "Cancel RSVP" +msgstr "రద్దుచేయి" + +msgid "RSVP:" +msgstr "" + msgctxt "BUTTON" msgid "Yes" msgstr "అవును" @@ -37,6 +99,62 @@ msgctxt "BUTTON" msgid "Maybe" msgstr "కావొచ్చు" +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the event" +msgstr "" + +msgctxt "LABEL" +msgid "Start date" +msgstr "" + +msgid "Date the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "Start time" +msgstr "" + +msgid "Time the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "End date" +msgstr "" + +msgid "Date the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "End time" +msgstr "" + +msgid "Time the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "Location" +msgstr "" + +msgid "Event location" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL for more information" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the event" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "భద్రపరచు" @@ -46,3 +164,85 @@ msgstr "" msgid "Event" msgstr "" + +msgid "Time:" +msgstr "" + +msgid "Location:" +msgstr "" + +msgid "Description:" +msgstr "" + +msgid "Attending:" +msgstr "" + +#. TRANS: RSVP counts. +#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. +#, php-format +msgid "Yes: %1$d No: %2$d Maybe: %3$d" +msgstr "" + +msgid "RSVP already exists." +msgstr "" + +#, php-format +msgid "" +"%2s is attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s is not attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s might attend %4s." +msgstr "" + +msgid "an unknown event" +msgstr "" + +#, php-format +msgid "%1s is attending %2s." +msgstr "" + +#, php-format +msgid "%1s is not attending %2s." +msgstr "" + +#, php-format +msgid "%1s might attend %2s.>" +msgstr "" + +msgid "New event" +msgstr "" + +msgid "Must be logged in to post a event." +msgstr "" + +msgid "Title required." +msgstr "" + +msgid "Start date required." +msgstr "" + +msgid "End date required." +msgstr "" + +#, php-format +msgid "Could not parse date \"%s\"" +msgstr "" + +msgid "Event must have a title." +msgstr "" + +msgid "Event must have a start time." +msgstr "" + +msgid "Event must have an end time." +msgstr "" diff --git a/plugins/Event/locale/tl/LC_MESSAGES/Event.po b/plugins/Event/locale/tl/LC_MESSAGES/Event.po index 4549122d4c..e5a4f5de16 100644 --- a/plugins/Event/locale/tl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/tl/LC_MESSAGES/Event.po @@ -9,22 +9,85 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:14+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Event already exists." +msgstr "" + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "" + +#, php-format +msgid "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing RSVP. +#. TRANS: RSVP stands for "Please reply". +msgid "No such RSVP." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such Event." +msgstr "" + +#. TRANS: Title for event. +#. TRANS: %1$s is a user nickname, %2$s is an event title. +#, php-format +msgid "%1$s's RSVP for \"%2$s\"" +msgstr "" + +msgid "You will attend this event." +msgstr "" + +msgid "You will not attend this event." +msgstr "" + +msgid "You might attend this event." +msgstr "" + msgctxt "BUTTON" msgid "Cancel" msgstr "Huwag ituloy" +msgid "New RSVP" +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such event." +msgstr "" + +msgid "You must be logged in to RSVP for an event." +msgstr "" + +#. TRANS: Page title after sending a notice. +#, fuzzy +msgid "Event saved" +msgstr "Kaganapan" + +#, fuzzy +msgid "Cancel RSVP" +msgstr "Huwag ituloy" + +msgid "RSVP:" +msgstr "" + msgctxt "BUTTON" msgid "Yes" msgstr "Oo" @@ -37,6 +100,62 @@ msgctxt "BUTTON" msgid "Maybe" msgstr "Siguro" +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the event" +msgstr "" + +msgctxt "LABEL" +msgid "Start date" +msgstr "" + +msgid "Date the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "Start time" +msgstr "" + +msgid "Time the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "End date" +msgstr "" + +msgid "Date the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "End time" +msgstr "" + +msgid "Time the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "Location" +msgstr "" + +msgid "Event location" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL for more information" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the event" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "Sagipin" @@ -46,3 +165,85 @@ msgstr "Mga paanyaya sa kaganapan at mga paghingi ng tugon." msgid "Event" msgstr "Kaganapan" + +msgid "Time:" +msgstr "" + +msgid "Location:" +msgstr "" + +msgid "Description:" +msgstr "" + +msgid "Attending:" +msgstr "" + +#. TRANS: RSVP counts. +#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. +#, php-format +msgid "Yes: %1$d No: %2$d Maybe: %3$d" +msgstr "" + +msgid "RSVP already exists." +msgstr "" + +#, php-format +msgid "" +"%2s is attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s is not attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s might attend %4s." +msgstr "" + +msgid "an unknown event" +msgstr "" + +#, php-format +msgid "%1s is attending %2s." +msgstr "" + +#, php-format +msgid "%1s is not attending %2s." +msgstr "" + +#, php-format +msgid "%1s might attend %2s.>" +msgstr "" + +msgid "New event" +msgstr "" + +msgid "Must be logged in to post a event." +msgstr "" + +msgid "Title required." +msgstr "" + +msgid "Start date required." +msgstr "" + +msgid "End date required." +msgstr "" + +#, php-format +msgid "Could not parse date \"%s\"" +msgstr "" + +msgid "Event must have a title." +msgstr "" + +msgid "Event must have a start time." +msgstr "" + +msgid "Event must have an end time." +msgstr "" diff --git a/plugins/Event/locale/tr/LC_MESSAGES/Event.po b/plugins/Event/locale/tr/LC_MESSAGES/Event.po index ebf6e07d38..a76375f1d1 100644 --- a/plugins/Event/locale/tr/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/tr/LC_MESSAGES/Event.po @@ -9,22 +9,83 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:14+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgid "Event already exists." +msgstr "" + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "" + +#, php-format +msgid "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing RSVP. +#. TRANS: RSVP stands for "Please reply". +msgid "No such RSVP." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such Event." +msgstr "" + +#. TRANS: Title for event. +#. TRANS: %1$s is a user nickname, %2$s is an event title. +#, php-format +msgid "%1$s's RSVP for \"%2$s\"" +msgstr "" + +msgid "You will attend this event." +msgstr "" + +msgid "You will not attend this event." +msgstr "" + +msgid "You might attend this event." +msgstr "" + msgctxt "BUTTON" msgid "Cancel" msgstr "" +msgid "New RSVP" +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such event." +msgstr "" + +msgid "You must be logged in to RSVP for an event." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Event saved" +msgstr "" + +msgid "Cancel RSVP" +msgstr "" + +msgid "RSVP:" +msgstr "" + msgctxt "BUTTON" msgid "Yes" msgstr "Evet" @@ -37,6 +98,62 @@ msgctxt "BUTTON" msgid "Maybe" msgstr "Belki" +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the event" +msgstr "" + +msgctxt "LABEL" +msgid "Start date" +msgstr "" + +msgid "Date the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "Start time" +msgstr "" + +msgid "Time the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "End date" +msgstr "" + +msgid "Date the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "End time" +msgstr "" + +msgid "Time the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "Location" +msgstr "" + +msgid "Event location" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL for more information" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the event" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "Kaydet" @@ -46,3 +163,85 @@ msgstr "" msgid "Event" msgstr "" + +msgid "Time:" +msgstr "" + +msgid "Location:" +msgstr "" + +msgid "Description:" +msgstr "" + +msgid "Attending:" +msgstr "" + +#. TRANS: RSVP counts. +#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. +#, php-format +msgid "Yes: %1$d No: %2$d Maybe: %3$d" +msgstr "" + +msgid "RSVP already exists." +msgstr "" + +#, php-format +msgid "" +"%2s is attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s is not attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s might attend %4s." +msgstr "" + +msgid "an unknown event" +msgstr "" + +#, php-format +msgid "%1s is attending %2s." +msgstr "" + +#, php-format +msgid "%1s is not attending %2s." +msgstr "" + +#, php-format +msgid "%1s might attend %2s.>" +msgstr "" + +msgid "New event" +msgstr "" + +msgid "Must be logged in to post a event." +msgstr "" + +msgid "Title required." +msgstr "" + +msgid "Start date required." +msgstr "" + +msgid "End date required." +msgstr "" + +#, php-format +msgid "Could not parse date \"%s\"" +msgstr "" + +msgid "Event must have a title." +msgstr "" + +msgid "Event must have a start time." +msgstr "" + +msgid "Event must have an end time." +msgstr "" diff --git a/plugins/Event/locale/uk/LC_MESSAGES/Event.po b/plugins/Event/locale/uk/LC_MESSAGES/Event.po index ce0e5613fe..65478ed690 100644 --- a/plugins/Event/locale/uk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/uk/LC_MESSAGES/Event.po @@ -9,23 +9,86 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:35+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:14+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-event\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" +msgid "Event already exists." +msgstr "" + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "" + +#, php-format +msgid "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing RSVP. +#. TRANS: RSVP stands for "Please reply". +msgid "No such RSVP." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such Event." +msgstr "" + +#. TRANS: Title for event. +#. TRANS: %1$s is a user nickname, %2$s is an event title. +#, php-format +msgid "%1$s's RSVP for \"%2$s\"" +msgstr "" + +msgid "You will attend this event." +msgstr "" + +msgid "You will not attend this event." +msgstr "" + +msgid "You might attend this event." +msgstr "" + msgctxt "BUTTON" msgid "Cancel" msgstr "Відміна" +msgid "New RSVP" +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such event." +msgstr "" + +msgid "You must be logged in to RSVP for an event." +msgstr "" + +#. TRANS: Page title after sending a notice. +#, fuzzy +msgid "Event saved" +msgstr "Подія" + +#, fuzzy +msgid "Cancel RSVP" +msgstr "Відміна" + +msgid "RSVP:" +msgstr "" + msgctxt "BUTTON" msgid "Yes" msgstr "Так" @@ -38,6 +101,62 @@ msgctxt "BUTTON" msgid "Maybe" msgstr "Можливо" +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the event" +msgstr "" + +msgctxt "LABEL" +msgid "Start date" +msgstr "" + +msgid "Date the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "Start time" +msgstr "" + +msgid "Time the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "End date" +msgstr "" + +msgid "Date the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "End time" +msgstr "" + +msgid "Time the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "Location" +msgstr "" + +msgid "Event location" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL for more information" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the event" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "Зберегти" @@ -47,3 +166,85 @@ msgstr "Запрошення на заходи та RSVP (підтверджен msgid "Event" msgstr "Подія" + +msgid "Time:" +msgstr "" + +msgid "Location:" +msgstr "" + +msgid "Description:" +msgstr "" + +msgid "Attending:" +msgstr "" + +#. TRANS: RSVP counts. +#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. +#, php-format +msgid "Yes: %1$d No: %2$d Maybe: %3$d" +msgstr "" + +msgid "RSVP already exists." +msgstr "" + +#, php-format +msgid "" +"%2s is attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s is not attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s might attend %4s." +msgstr "" + +msgid "an unknown event" +msgstr "" + +#, php-format +msgid "%1s is attending %2s." +msgstr "" + +#, php-format +msgid "%1s is not attending %2s." +msgstr "" + +#, php-format +msgid "%1s might attend %2s.>" +msgstr "" + +msgid "New event" +msgstr "" + +msgid "Must be logged in to post a event." +msgstr "" + +msgid "Title required." +msgstr "" + +msgid "Start date required." +msgstr "" + +msgid "End date required." +msgstr "" + +#, php-format +msgid "Could not parse date \"%s\"" +msgstr "" + +msgid "Event must have a title." +msgstr "" + +msgid "Event must have a start time." +msgstr "" + +msgid "Event must have an end time." +msgstr "" diff --git a/plugins/Event/newevent.php b/plugins/Event/newevent.php index 5551e0ce2c..082f12bb4b 100644 --- a/plugins/Event/newevent.php +++ b/plugins/Event/newevent.php @@ -63,7 +63,7 @@ class NeweventAction extends Action function title() { - return _('New event'); + return _m('New event'); } /** @@ -81,7 +81,7 @@ class NeweventAction extends Action $this->user = common_current_user(); if (empty($this->user)) { - throw new ClientException(_("Must be logged in to post a event."), + throw new ClientException(_m('Must be logged in to post a event.'), 403); } @@ -92,7 +92,7 @@ class NeweventAction extends Action $this->title = $this->trimmed('title'); if (empty($this->title)) { - throw new ClientException(_('Title required.')); + throw new ClientException(_m('Title required.')); } $this->location = $this->trimmed('location'); @@ -102,7 +102,7 @@ class NeweventAction extends Action $startDate = $this->trimmed('startdate'); if (empty($startDate)) { - throw new ClientException(_('Start date required.')); + throw new ClientException(_m('Start date required.')); } $startTime = $this->trimmed('starttime'); @@ -114,7 +114,7 @@ class NeweventAction extends Action $endDate = $this->trimmed('enddate'); if (empty($endDate)) { - throw new ClientException(_('End date required.')); + throw new ClientException(_m('End date required.')); } $endTime = $this->trimmed('endtime'); @@ -135,13 +135,13 @@ class NeweventAction extends Action $this->endTime = strtotime($end); if ($this->startTime == 0) { - throw new Exception(sprintf(_('Could not parse date "%s"'), + throw new Exception(sprintf(_m('Could not parse date "%s".'), $start)); } if ($this->endTime == 0) { - throw new Exception(sprintf(_('Could not parse date "%s"'), + throw new Exception(sprintf(_m('Could not parse date "%s".'), $end)); } @@ -179,15 +179,15 @@ class NeweventAction extends Action { try { if (empty($this->title)) { - throw new ClientException(_('Event must have a title.')); + throw new ClientException(_m('Event must have a title.')); } if (empty($this->startTime)) { - throw new ClientException(_('Event must have a start time.')); + throw new ClientException(_m('Event must have a start time.')); } if (empty($this->endTime)) { - throw new ClientException(_('Event must have an end time.')); + throw new ClientException(_m('Event must have an end time.')); } $profile = $this->user->getProfile(); @@ -216,7 +216,7 @@ class NeweventAction extends Action $this->elementStart('html'); $this->elementStart('head'); // TRANS: Page title after sending a notice. - $this->element('title', null, _('Event saved')); + $this->element('title', null, _m('Event saved')); $this->elementEnd('head'); $this->elementStart('body'); $this->showNotice($saved); diff --git a/plugins/Event/newrsvp.php b/plugins/Event/newrsvp.php index 2b28580b1d..cb7f72d49c 100644 --- a/plugins/Event/newrsvp.php +++ b/plugins/Event/newrsvp.php @@ -58,7 +58,7 @@ class NewrsvpAction extends Action function title() { - return _('New RSVP'); + return _m('New RSVP'); } /** @@ -79,19 +79,19 @@ class NewrsvpAction extends Action $eventId = $this->trimmed('event'); if (empty($eventId)) { - throw new ClientException(_('No such event.')); + throw new ClientException(_m('No such event.')); } $this->event = Happening::staticGet('id', $eventId); if (empty($this->event)) { - throw new ClientException(_('No such event.')); + throw new ClientException(_m('No such event.')); } $this->user = common_current_user(); if (empty($this->user)) { - throw new ClientException(_('You must be logged in to RSVP for an event.')); + throw new ClientException(_m('You must be logged in to RSVP for an event.')); } common_debug(print_r($this->args, true)); @@ -159,7 +159,7 @@ class NewrsvpAction extends Action $this->elementStart('html'); $this->elementStart('head'); // TRANS: Page title after sending a notice. - $this->element('title', null, _('Event saved')); + $this->element('title', null, _m('Event saved')); $this->elementEnd('head'); $this->elementStart('body'); $this->elementStart('body'); diff --git a/plugins/Event/rsvpform.php b/plugins/Event/rsvpform.php index acc8cd8d12..494e64929f 100644 --- a/plugins/Event/rsvpform.php +++ b/plugins/Event/rsvpform.php @@ -98,7 +98,7 @@ class RSVPForm extends Form { $this->out->elementStart('fieldset', array('id' => 'new_rsvp_data')); - $this->out->text(_('RSVP: ')); + $this->out->text(_m('RSVP:')); $this->out->hidden('event', $this->event->id); $this->out->hidden('submitvalue', ''); diff --git a/plugins/Event/showrsvp.php b/plugins/Event/showrsvp.php index 145788feea..7b129177e1 100644 --- a/plugins/Event/showrsvp.php +++ b/plugins/Event/showrsvp.php @@ -65,7 +65,7 @@ class ShowrsvpAction extends ShownoticeAction if (empty($this->event)) { // TRANS: Client exception thrown when referring to a non-existing event. - throw new ClientException(_m('No such Event.'), 404); + throw new ClientException(_m('No such event.'), 404); } $notice = $this->rsvp->getNotice(); @@ -91,7 +91,7 @@ class ShowrsvpAction extends ShownoticeAction { // TRANS: Title for event. // TRANS: %1$s is a user nickname, %2$s is an event title. - return sprintf(_('%1$s\'s RSVP for "%2$s"'), + return sprintf(_m('%1$s\'s RSVP for "%2$s"'), $this->user->nickname, $this->event->title); } diff --git a/plugins/ExtendedProfile/lib/extendedprofilewidget.php b/plugins/ExtendedProfile/lib/extendedprofilewidget.php index 53cb5d3b87..24c8b2f3d4 100644 --- a/plugins/ExtendedProfile/lib/extendedprofilewidget.php +++ b/plugins/ExtendedProfile/lib/extendedprofilewidget.php @@ -618,7 +618,7 @@ class ExtendedProfileWidget extends Form _m('BUTTON','Save'), 'submit form_action-secondary', 'save', - _('Save details') + _m('Save details') ); } diff --git a/plugins/ExtendedProfile/locale/ExtendedProfile.pot b/plugins/ExtendedProfile/locale/ExtendedProfile.pot index 2b81c0099f..919198cad7 100644 --- a/plugins/ExtendedProfile/locale/ExtendedProfile.pot +++ b/plugins/ExtendedProfile/locale/ExtendedProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -135,6 +135,10 @@ msgctxt "BUTTON" msgid "Save" msgstr "" +#: lib/extendedprofilewidget.php:621 +msgid "Save details" +msgstr "" + #: lib/extendedprofile.php:119 lib/extendedprofile.php:129 msgid "Phone" msgstr "" diff --git a/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po index 8318c760f6..0fde7cd0fe 100644 --- a/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:38+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:40+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 13:01:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -113,6 +113,9 @@ msgctxt "BUTTON" msgid "Save" msgstr "" +msgid "Save details" +msgstr "" + msgid "Phone" msgstr "Pellgomz" diff --git a/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po index 19007d0556..929fda261b 100644 --- a/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:38+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:40+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 13:01:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -115,6 +115,9 @@ msgctxt "BUTTON" msgid "Save" msgstr "Salveguardar" +msgid "Save details" +msgstr "Salveguardar detalios" + msgid "Phone" msgstr "Telephono" diff --git a/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po index e0cb453e7e..c1a7fbc7c6 100644 --- a/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:37+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:40+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -115,11 +115,14 @@ msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" +msgid "Save details" +msgstr "Зачувај податоци" + msgid "Phone" msgstr "Телефон" msgid "IM" -msgstr "IM" +msgstr "НП" msgid "Website" msgstr "Мреж. место" diff --git a/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po index e99378a457..d5b66e10f2 100644 --- a/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:38+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:40+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 13:01:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -117,6 +117,9 @@ msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" +msgid "Save details" +msgstr "Gegevens opslaan" + msgid "Phone" msgstr "Telefoonnummer" diff --git a/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po index 4feb491d32..a6de85c963 100644 --- a/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:38+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:40+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 13:01:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -113,6 +113,9 @@ msgctxt "BUTTON" msgid "Save" msgstr "" +msgid "Save details" +msgstr "" + msgid "Phone" msgstr "Telefon" diff --git a/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po index 8d3726485c..0af370c05c 100644 --- a/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:50+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:40+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -116,6 +116,9 @@ msgctxt "BUTTON" msgid "Save" msgstr "Sagipin" +msgid "Save details" +msgstr "" + msgid "Phone" msgstr "Telepono" diff --git a/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po index e24ccf9f2d..81ff420ae2 100644 --- a/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:38+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:40+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 13:01:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -29,51 +29,53 @@ msgstr "Розширені налаштування профілю" msgid "" "You can update your personal profile info here so people know more about you." msgstr "" +"Тут ви можете заповнити свій особистий профіль і люди знатимуть про вас " +"більше." msgid "There was a problem with your session token. Try again, please." -msgstr "" +msgstr "Виникли певні проблеми з токеном сесії. Спробуйте знов, будь ласка." #. TRANS: Message given submitting a form with an unknown action. msgid "Unexpected form submission." -msgstr "" +msgstr "Несподіване представлення форми." msgid "Details saved." -msgstr "" +msgstr "Подробиці збережено." #. TRANS: Exception thrown when no date was entered in a required date field. #. TRANS: %s is the field name. #, php-format msgid "You must supply a date for \"%s\"." -msgstr "" +msgstr "Слід вказати дату для «%s»." #. TRANS: Exception thrown on incorrect data input. #. TRANS: %1$s is a field name, %2$s is the incorrect input. #, php-format msgid "Invalid date entered for \"%1$s\": %2$s." -msgstr "" +msgstr "Неприпустиме значення дати для «%1$s»: %2$s." #. TRANS: Exception thrown when entering an invalid URL. #. TRANS: %s is the invalid URL. #, php-format msgid "Invalid URL: %s." -msgstr "" +msgstr "Невірний URL: %s." msgid "Could not save profile details." -msgstr "" +msgstr "Не вдалося зберегти деталі профілю." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. #, php-format msgid "Invalid tag: \"%s\"." -msgstr "" +msgstr "Невірний теґ: «%s»." #. TRANS: Server error thrown when user profile settings could not be saved. msgid "Could not save profile." -msgstr "" +msgstr "Не вдалося зберегти профіль." #. TRANS: Server error thrown when user profile settings tags could not be saved. msgid "Could not save tags." -msgstr "" +msgstr "Не вдалося зберегти теґи." #. TRANS: Link title for link on user profile. msgid "Edit extended profile settings" @@ -90,28 +92,31 @@ msgid "More details..." msgstr "Детальніше..." msgid "Company" -msgstr "" +msgstr "Компанія" msgid "Start" -msgstr "" +msgstr "Почати" msgid "End" -msgstr "" +msgstr "Кінець" msgid "Current" -msgstr "" +msgstr "Поточне" msgid "Institution" msgstr "Установа" msgid "Degree" -msgstr "" +msgstr "Ступінь" msgid "Description" -msgstr "" +msgstr "Опис" msgctxt "BUTTON" msgid "Save" +msgstr "Зберегти" + +msgid "Save details" msgstr "" msgid "Phone" @@ -120,9 +125,8 @@ msgstr "Телефон" msgid "IM" msgstr "ІМ" -#, fuzzy msgid "Website" -msgstr "Сайти" +msgstr "Веб-сайт" msgid "Employer" msgstr "Роботодавець" diff --git a/plugins/FacebookBridge/FacebookBridgePlugin.php b/plugins/FacebookBridge/FacebookBridgePlugin.php index d5a3f7c633..68e931e387 100644 --- a/plugins/FacebookBridge/FacebookBridgePlugin.php +++ b/plugins/FacebookBridge/FacebookBridgePlugin.php @@ -526,7 +526,7 @@ ENDOFSCRIPT; */ function onEndFavorNotice(Profile $profile, Notice $notice) { - $client = new Facebookclient($notice); + $client = new Facebookclient($notice, $profile); $client->like(); return true; @@ -542,7 +542,7 @@ ENDOFSCRIPT; */ function onEndDisfavorNotice(Profile $profile, Notice $notice) { - $client = new Facebookclient($notice); + $client = new Facebookclient($notice, $profile); $client->unLike(); return true; diff --git a/plugins/FacebookBridge/actions/facebookadminpanel.php b/plugins/FacebookBridge/actions/facebookadminpanel.php index 61b5441848..034b58b2fa 100644 --- a/plugins/FacebookBridge/actions/facebookadminpanel.php +++ b/plugins/FacebookBridge/actions/facebookadminpanel.php @@ -120,13 +120,13 @@ class FacebookadminpanelAction extends AdminPanelAction if (mb_strlen($values['facebook']['appid']) > 255) { $this->clientError( - _m("Invalid Facebook ID. Max length is 255 characters.") + _m("Invalid Facebook ID. Maximum length is 255 characters.") ); } if (mb_strlen($values['facebook']['secret']) > 255) { $this->clientError( - _m("Invalid Facebook secret. Max length is 255 characters.") + _m("Invalid Facebook secret. Maximum length is 255 characters.") ); } } @@ -182,7 +182,7 @@ class FacebookAdminPanelForm extends AdminForm $this->input( 'appid', _m('Application ID'), - _m('ID of your Facebook application'), + _m('ID of your Facebook application.'), 'facebook' ); $this->unli(); @@ -191,7 +191,7 @@ class FacebookAdminPanelForm extends AdminForm $this->input( 'secret', _m('Secret'), - _m('Application secret'), + _m('Application secret.'), 'facebook' ); $this->unli(); @@ -207,6 +207,6 @@ class FacebookAdminPanelForm extends AdminForm */ function formActions() { - $this->out->submit('submit', _m('Save'), 'submit', null, _m('Save Facebook settings')); + $this->out->submit('submit', _m('BUTTON','Save'), 'submit', null, _m('Save Facebook settings.')); } } diff --git a/plugins/FacebookBridge/actions/facebookfinishlogin.php b/plugins/FacebookBridge/actions/facebookfinishlogin.php index 7b2f274741..f952ad2e2b 100644 --- a/plugins/FacebookBridge/actions/facebookfinishlogin.php +++ b/plugins/FacebookBridge/actions/facebookfinishlogin.php @@ -147,7 +147,7 @@ class FacebookfinishloginAction extends Action if (!$this->boolean('license')) { $this->showForm( - _m('You can\'t register if you don\'t agree to the license.'), + _m('You cannot register if you do not agree to the license.'), $this->trimmed('newname') ); return; @@ -182,7 +182,7 @@ class FacebookfinishloginAction extends Action 'div', 'instructions', // TRANS: %s is the site name. sprintf( - _m('This is the first time you\'ve logged into %s so we must connect your Facebook to a local account. You can either create a new local account, or connect with an existing local account.'), + _m('This is the first time you have logged into %s so we must connect your Facebook to a local account. You can either create a new local account, or connect with an existing local account.'), common_config('site', 'name') ) ); @@ -265,7 +265,7 @@ class FacebookfinishloginAction extends Action // TRANS: Field label. $this->input('newname', _m('New nickname'), ($this->username) ? $this->username : '', - _m('1-64 lowercase letters or numbers, no punctuation or spaces')); + _m('1-64 lowercase letters or numbers, no punctuation or spaces.')); $this->elementEnd('li'); // Hook point for captcha etc diff --git a/plugins/FacebookBridge/actions/facebooksettings.php b/plugins/FacebookBridge/actions/facebooksettings.php index b9526c1269..7d45cc03e6 100644 --- a/plugins/FacebookBridge/actions/facebooksettings.php +++ b/plugins/FacebookBridge/actions/facebooksettings.php @@ -111,7 +111,7 @@ class FacebooksettingsAction extends SettingsAction { * @return instructions for use */ function getInstructions() { - return _('Facebook settings'); + return _m('Facebook settings'); } /* @@ -257,7 +257,7 @@ class FacebooksettingsAction extends SettingsAction { if ($result === false) { common_log_db_error($user, 'DELETE', __FILE__); - $this->serverError(_m('Couldn\'t delete link to Facebook.')); + $this->serverError(_m('Could not delete link to Facebook.')); return; } diff --git a/plugins/FacebookBridge/lib/facebookclient.php b/plugins/FacebookBridge/lib/facebookclient.php index 516f252d98..37d6a0a7a0 100644 --- a/plugins/FacebookBridge/lib/facebookclient.php +++ b/plugins/FacebookBridge/lib/facebookclient.php @@ -48,7 +48,12 @@ class Facebookclient protected $notice = null; // The user's notice protected $user = null; // Sender of the notice - function __construct($notice) + /** + * + * @param Notice $notice the notice to manipulate + * @param Profile $profile local user to act as; if left empty, the notice's poster will be used. + */ + function __construct($notice, $profile=null) { $this->facebook = self::getFacebook(); @@ -60,8 +65,9 @@ class Facebookclient $this->notice = $notice; + $profile_id = $profile ? $profile->id : $notice->profile_id; $this->flink = Foreign_link::getByUserID( - $notice->profile_id, + $profile_id, FACEBOOK_SERVICE ); diff --git a/plugins/FacebookBridge/locale/FacebookBridge.pot b/plugins/FacebookBridge/locale/FacebookBridge.pot index 9cf77481cc..45351b4b91 100644 --- a/plugins/FacebookBridge/locale/FacebookBridge.pot +++ b/plugins/FacebookBridge/locale/FacebookBridge.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -39,11 +39,11 @@ msgid "Facebook integration settings" msgstr "" #: actions/facebookadminpanel.php:123 -msgid "Invalid Facebook ID. Max length is 255 characters." +msgid "Invalid Facebook ID. Maximum length is 255 characters." msgstr "" #: actions/facebookadminpanel.php:129 -msgid "Invalid Facebook secret. Max length is 255 characters." +msgid "Invalid Facebook secret. Maximum length is 255 characters." msgstr "" #: actions/facebookadminpanel.php:178 @@ -55,7 +55,7 @@ msgid "Application ID" msgstr "" #: actions/facebookadminpanel.php:185 -msgid "ID of your Facebook application" +msgid "ID of your Facebook application." msgstr "" #: actions/facebookadminpanel.php:193 @@ -63,15 +63,17 @@ msgid "Secret" msgstr "" #: actions/facebookadminpanel.php:194 -msgid "Application secret" +msgid "Application secret." msgstr "" -#: actions/facebookadminpanel.php:210 +#. TRANS: Submit button to save synchronisation settings. +#: actions/facebookadminpanel.php:210 actions/facebooksettings.php:183 +msgctxt "BUTTON" msgid "Save" msgstr "" #: actions/facebookadminpanel.php:210 -msgid "Save Facebook settings" +msgid "Save Facebook settings." msgstr "" #: actions/facebooksettings.php:86 actions/facebookfinishlogin.php:141 @@ -80,7 +82,8 @@ msgstr "" #. TRANS: Page title for Facebook settings. #. TRANS: Tooltip for menu item "Facebook". -#: actions/facebooksettings.php:105 FacebookBridgePlugin.php:300 +#: actions/facebooksettings.php:105 actions/facebooksettings.php:114 +#: FacebookBridgePlugin.php:300 msgid "Facebook settings" msgstr "" @@ -96,12 +99,6 @@ msgstr "" msgid "Send \"@\" replies to Facebook." msgstr "" -#. TRANS: Submit button to save synchronisation settings. -#: actions/facebooksettings.php:183 -msgctxt "BUTTON" -msgid "Save" -msgstr "" - #. TRANS: Legend. #: actions/facebooksettings.php:192 msgid "Disconnect my account from Facebook" @@ -137,7 +134,7 @@ msgid "Sync preferences saved." msgstr "" #: actions/facebooksettings.php:260 -msgid "Couldn't delete link to Facebook." +msgid "Could not delete link to Facebook." msgstr "" #: actions/facebooksettings.php:264 @@ -154,7 +151,7 @@ msgid "There is already a local account linked with that Facebook account." msgstr "" #: actions/facebookfinishlogin.php:150 -msgid "You can't register if you don't agree to the license." +msgid "You cannot register if you do not agree to the license." msgstr "" #: actions/facebookfinishlogin.php:167 @@ -164,7 +161,7 @@ msgstr "" #: actions/facebookfinishlogin.php:185 #, php-format msgid "" -"This is the first time you've logged into %s so we must connect your " +"This is the first time you have logged into %s so we must connect your " "Facebook to a local account. You can either create a new local account, or " "connect with an existing local account." msgstr "" @@ -202,7 +199,7 @@ msgid "New nickname" msgstr "" #: actions/facebookfinishlogin.php:268 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" #. TRANS: Submit button. @@ -285,11 +282,11 @@ msgstr "" msgid "A plugin for integrating StatusNet with Facebook." msgstr "" -#: lib/facebookclient.php:786 +#: lib/facebookclient.php:792 msgid "Your Facebook connection has been removed" msgstr "" -#: lib/facebookclient.php:845 +#: lib/facebookclient.php:851 #, php-format msgid "Contact the %s administrator to retrieve your account" msgstr "" diff --git a/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po index b0d500ec10..4361b0ac79 100644 --- a/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:40+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:44+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -40,10 +40,10 @@ msgstr "" msgid "Facebook integration settings" msgstr "" -msgid "Invalid Facebook ID. Max length is 255 characters." +msgid "Invalid Facebook ID. Maximum length is 255 characters." msgstr "" -msgid "Invalid Facebook secret. Max length is 255 characters." +msgid "Invalid Facebook secret. Maximum length is 255 characters." msgstr "" msgid "Facebook application settings" @@ -52,19 +52,22 @@ msgstr "" msgid "Application ID" msgstr "" -msgid "ID of your Facebook application" +msgid "ID of your Facebook application." msgstr "" msgid "Secret" msgstr "" -msgid "Application secret" +msgid "Application secret." msgstr "" +#. TRANS: Submit button to save synchronisation settings. +msgctxt "BUTTON" msgid "Save" msgstr "احفظ" -msgid "Save Facebook settings" +#, fuzzy +msgid "Save Facebook settings." msgstr "احفظ إعدادات فيسبك" msgid "There was a problem with your session token. Try again, please." @@ -84,11 +87,6 @@ msgstr "انشر إشعاراتي على فيسبك." msgid "Send \"@\" replies to Facebook." msgstr "أرسل الردود \"@\" إلى فيسبك." -#. TRANS: Submit button to save synchronisation settings. -msgctxt "BUTTON" -msgid "Save" -msgstr "احفظ" - #. TRANS: Legend. msgid "Disconnect my account from Facebook" msgstr "اقطع اتصال حسابي بفيسبك." @@ -120,7 +118,8 @@ msgstr "" msgid "Sync preferences saved." msgstr "حُفظت تفضيلات المزامنة." -msgid "Couldn't delete link to Facebook." +#, fuzzy +msgid "Could not delete link to Facebook." msgstr "تعذر حذف وصلة فيسبك." msgid "You have disconnected from Facebook." @@ -133,7 +132,7 @@ msgstr "" msgid "There is already a local account linked with that Facebook account." msgstr "" -msgid "You can't register if you don't agree to the license." +msgid "You cannot register if you do not agree to the license." msgstr "" msgid "An unknown error has occured." @@ -141,7 +140,7 @@ msgstr "" #, php-format msgid "" -"This is the first time you've logged into %s so we must connect your " +"This is the first time you have logged into %s so we must connect your " "Facebook to a local account. You can either create a new local account, or " "connect with an existing local account." msgstr "" @@ -160,6 +159,8 @@ msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" +"تخضع نصوصي وملفات ل%s إلا البيانات الخاصة التالية: كلمة السر وعنوان البريد " +"الإلكتروني وعنوان المراسلة الفورية ورقم الهاتف." #. TRANS: Legend. msgid "Create new account" @@ -170,15 +171,15 @@ msgstr "" #. TRANS: Field label. msgid "New nickname" -msgstr "" +msgstr "الاسم المستعار الجديد" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" #. TRANS: Submit button. msgctxt "BUTTON" msgid "Create" -msgstr "" +msgstr "أنشئ" msgid "Connect existing account" msgstr "" @@ -198,7 +199,7 @@ msgstr "" #. TRANS: Submit button. msgctxt "BUTTON" msgid "Connect" -msgstr "" +msgstr "اربط" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. diff --git a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po index 54c83c8f5b..33d7683c1c 100644 --- a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:41+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:44+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -38,10 +38,10 @@ msgstr "Facebook" msgid "Facebook integration settings" msgstr "Arventennoù enframmañ Facebook" -msgid "Invalid Facebook ID. Max length is 255 characters." +msgid "Invalid Facebook ID. Maximum length is 255 characters." msgstr "" -msgid "Invalid Facebook secret. Max length is 255 characters." +msgid "Invalid Facebook secret. Maximum length is 255 characters." msgstr "" msgid "Facebook application settings" @@ -50,19 +50,24 @@ msgstr "Arventennoù poellad Facebook" msgid "Application ID" msgstr "ID ar poellad" -msgid "ID of your Facebook application" +#, fuzzy +msgid "ID of your Facebook application." msgstr "ID ho poellad Facebook" msgid "Secret" msgstr "Kuzh" -msgid "Application secret" -msgstr "" +#, fuzzy +msgid "Application secret." +msgstr "ID ar poellad" +#. TRANS: Submit button to save synchronisation settings. +msgctxt "BUTTON" msgid "Save" msgstr "Enrollañ" -msgid "Save Facebook settings" +#, fuzzy +msgid "Save Facebook settings." msgstr "Enrollañ arventennoù Facebook" msgid "There was a problem with your session token. Try again, please." @@ -82,11 +87,6 @@ msgstr "" msgid "Send \"@\" replies to Facebook." msgstr "Kas respontoù \"@\" da Facebook." -#. TRANS: Submit button to save synchronisation settings. -msgctxt "BUTTON" -msgid "Save" -msgstr "Enrollañ" - #. TRANS: Legend. msgid "Disconnect my account from Facebook" msgstr "Digevreañ ma c'hont deus Facebook" @@ -115,7 +115,8 @@ msgstr "" msgid "Sync preferences saved." msgstr "" -msgid "Couldn't delete link to Facebook." +#, fuzzy +msgid "Could not delete link to Facebook." msgstr "N'eus ket bet gallet diverkañ al liamm war-du Facebook." msgid "You have disconnected from Facebook." @@ -128,7 +129,8 @@ msgstr "" msgid "There is already a local account linked with that Facebook account." msgstr "Un implijer lec'hel liammet d'ar gont Facebook-se a zo dija." -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "" "Rankout a rit bezañ a-du gant termenoù an aotre-implijout evit krouiñ ur " "gont." @@ -138,7 +140,7 @@ msgstr "Ur gudenn dizanv a zo bet." #, php-format msgid "" -"This is the first time you've logged into %s so we must connect your " +"This is the first time you have logged into %s so we must connect your " "Facebook to a local account. You can either create a new local account, or " "connect with an existing local account." msgstr "" @@ -169,7 +171,8 @@ msgstr "Krouiñ un implijer nevez gant al lesanv-se." msgid "New nickname" msgstr "Lesanv nevez" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1 da 64 lizherenn vihan pe sifr, hep poentaouiñ nag esaouenn" #. TRANS: Submit button. diff --git a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po index 74acd27d1c..96c2ec4367 100644 --- a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:41+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:44+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -38,10 +38,12 @@ msgstr "Facebook" msgid "Facebook integration settings" msgstr "Paràmetres d'integració del Facebook" -msgid "Invalid Facebook ID. Max length is 255 characters." +#, fuzzy +msgid "Invalid Facebook ID. Maximum length is 255 characters." msgstr "L'ID del Facebook no és vàlid. La longitud màxima són 255 caràcters." -msgid "Invalid Facebook secret. Max length is 255 characters." +#, fuzzy +msgid "Invalid Facebook secret. Maximum length is 255 characters." msgstr "" "La clau secreta del Facebook no és vàlida. La longitud màxima són 255 " "caràcters." @@ -52,19 +54,24 @@ msgstr "Paràmetres d'aplicació del Facebook" msgid "Application ID" msgstr "ID de l'aplicació" -msgid "ID of your Facebook application" +#, fuzzy +msgid "ID of your Facebook application." msgstr "ID de la vostra aplicació de Facebook" msgid "Secret" msgstr "Clau secreta" -msgid "Application secret" +#, fuzzy +msgid "Application secret." msgstr "Clau secreta de l'aplicació" +#. TRANS: Submit button to save synchronisation settings. +msgctxt "BUTTON" msgid "Save" msgstr "Desa" -msgid "Save Facebook settings" +#, fuzzy +msgid "Save Facebook settings." msgstr "Desa els paràmetres del Facebook" msgid "There was a problem with your session token. Try again, please." @@ -84,11 +91,6 @@ msgstr "Publica els meus avisos al Facebook." msgid "Send \"@\" replies to Facebook." msgstr "Envia respostes amb «@» al Facebook." -#. TRANS: Submit button to save synchronisation settings. -msgctxt "BUTTON" -msgid "Save" -msgstr "Desa" - #. TRANS: Legend. msgid "Disconnect my account from Facebook" msgstr "Desconnecta el meu compte del Facebook" @@ -121,7 +123,8 @@ msgstr "S'ha produït un problema en desar les preferències de sincronització. msgid "Sync preferences saved." msgstr "S'han desat les preferències de sincronització." -msgid "Couldn't delete link to Facebook." +#, fuzzy +msgid "Could not delete link to Facebook." msgstr "No s'ha pogut eliminar l'enllaç al Facebook." msgid "You have disconnected from Facebook." @@ -136,15 +139,16 @@ msgstr "" msgid "There is already a local account linked with that Facebook account." msgstr "Ja hi ha un compte local enllaçat amb aquest compte del Facebook." -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "No podeu registrar-vos-hi si no accepteu la llicència." msgid "An unknown error has occured." msgstr "S'ha produït un error desconegut." -#, php-format +#, fuzzy, php-format msgid "" -"This is the first time you've logged into %s so we must connect your " +"This is the first time you have logged into %s so we must connect your " "Facebook to a local account. You can either create a new local account, or " "connect with an existing local account." msgstr "" @@ -181,7 +185,8 @@ msgstr "Crea un usuari nou amb aquest sobrenom" msgid "New nickname" msgstr "Nou sobrenom" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 lletres en minúscules o nombres, sense puntuacions o espais" #. TRANS: Submit button. diff --git a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po index e5af9b81c4..cd6e0bdcd6 100644 --- a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:44+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -38,10 +38,12 @@ msgstr "Facebook" msgid "Facebook integration settings" msgstr "Einstellungen der Facebook-Integration" -msgid "Invalid Facebook ID. Max length is 255 characters." +#, fuzzy +msgid "Invalid Facebook ID. Maximum length is 255 characters." msgstr "Ungültige Facebook-ID. Die maximale Länge beträgt 255 Zeichen." -msgid "Invalid Facebook secret. Max length is 255 characters." +#, fuzzy +msgid "Invalid Facebook secret. Maximum length is 255 characters." msgstr "Ungültiges Facebook-Geheimnis. Die maximale Länge beträgt 255 Zeichen." msgid "Facebook application settings" @@ -50,19 +52,24 @@ msgstr "Einstellungen der Facebook-Anwendung" msgid "Application ID" msgstr "Anwendungs-ID" -msgid "ID of your Facebook application" +#, fuzzy +msgid "ID of your Facebook application." msgstr "ID ihrer Facebook-Anwendung" msgid "Secret" msgstr "Geheimnis" -msgid "Application secret" +#, fuzzy +msgid "Application secret." msgstr "Anwendungs-Geheimnis" +#. TRANS: Submit button to save synchronisation settings. +msgctxt "BUTTON" msgid "Save" msgstr "Speichern" -msgid "Save Facebook settings" +#, fuzzy +msgid "Save Facebook settings." msgstr "Facebook-Einstellungen speichern" msgid "There was a problem with your session token. Try again, please." @@ -82,11 +89,6 @@ msgstr "Meine Nachrichten auf Facebook veröffentlichen." msgid "Send \"@\" replies to Facebook." msgstr "\"@\"-Antworten zu Facebook senden." -#. TRANS: Submit button to save synchronisation settings. -msgctxt "BUTTON" -msgid "Save" -msgstr "Speichern" - #. TRANS: Legend. msgid "Disconnect my account from Facebook" msgstr "Mein Konto von Facebook trennen" @@ -121,7 +123,8 @@ msgstr "" msgid "Sync preferences saved." msgstr "Synchronisations-Einstellungen gespeichert." -msgid "Couldn't delete link to Facebook." +#, fuzzy +msgid "Could not delete link to Facebook." msgstr "Konnte die Verbindung zu Facebook nicht löschen." msgid "You have disconnected from Facebook." @@ -138,16 +141,17 @@ msgstr "" "Es gibt bereits ein lokales Konto, das mit diesem Facebook-Konto verbunden " "ist." -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "" "Du kannst dich nicht registrieren, falls du die Lizenz nicht akzeptierst." msgid "An unknown error has occured." msgstr "Ein unbekannter Fehler ist aufgetreten." -#, php-format +#, fuzzy, php-format msgid "" -"This is the first time you've logged into %s so we must connect your " +"This is the first time you have logged into %s so we must connect your " "Facebook to a local account. You can either create a new local account, or " "connect with an existing local account." msgstr "" @@ -183,7 +187,8 @@ msgstr "Einen neuen Benutzer mit diesem Spitznamen erstellen." msgid "New nickname" msgstr "Neuer Spitzname" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1–64 Kleinbuchstaben oder Zahlen, keine Satz- oder Leerzeichen" #. TRANS: Submit button. diff --git a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po index c1b16d3c77..bc6550c5ac 100644 --- a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:45+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -38,11 +38,11 @@ msgstr "Facebook" msgid "Facebook integration settings" msgstr "Configurationes de integration de Facebook" -msgid "Invalid Facebook ID. Max length is 255 characters." -msgstr "ID de Facebook invalide. Longitude maximal es 255 characteres." +msgid "Invalid Facebook ID. Maximum length is 255 characters." +msgstr "ID de Facebook invalide. Longitude maxime es 255 characteres." -msgid "Invalid Facebook secret. Max length is 255 characters." -msgstr "Secreto de Facebook invalide. Longitude maximal es 255 characteres." +msgid "Invalid Facebook secret. Maximum length is 255 characters." +msgstr "Secreto de Facebook invalide. Longitude maxime es 255 characteres." msgid "Facebook application settings" msgstr "Configurationes del application de Facebook" @@ -50,20 +50,22 @@ msgstr "Configurationes del application de Facebook" msgid "Application ID" msgstr "ID de application" -msgid "ID of your Facebook application" -msgstr "Le ID de tu application Facebook" +msgid "ID of your Facebook application." +msgstr "Le ID de tu application Facebook." msgid "Secret" msgstr "Secreto" -msgid "Application secret" -msgstr "Secreto de application" +msgid "Application secret." +msgstr "Secreto del application." +#. TRANS: Submit button to save synchronisation settings. +msgctxt "BUTTON" msgid "Save" msgstr "Salveguardar" -msgid "Save Facebook settings" -msgstr "Salveguardar configuration Facebook" +msgid "Save Facebook settings." +msgstr "Salveguardar configuration Facebook." 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." @@ -82,11 +84,6 @@ msgstr "Publicar mi notas in Facebook." msgid "Send \"@\" replies to Facebook." msgstr "Inviar responsas \"@\" a Facebook." -#. TRANS: Submit button to save synchronisation settings. -msgctxt "BUTTON" -msgid "Save" -msgstr "Salveguardar" - #. TRANS: Legend. msgid "Disconnect my account from Facebook" msgstr "Disconnecter mi conto ab Facebook" @@ -121,7 +118,7 @@ msgstr "" msgid "Sync preferences saved." msgstr "Preferentias de synchronisation salveguardate." -msgid "Couldn't delete link to Facebook." +msgid "Could not delete link to Facebook." msgstr "Non poteva deler le ligamine a Facebook." msgid "You have disconnected from Facebook." @@ -136,7 +133,7 @@ msgstr "" msgid "There is already a local account linked with that Facebook account." msgstr "Il ha jam un conto local ligate a iste conto de Facebook." -msgid "You can't register if you don't agree to the license." +msgid "You cannot register if you do not agree to the license." msgstr "Tu non pote crear un conto si tu non accepta le licentia." msgid "An unknown error has occured." @@ -144,13 +141,13 @@ msgstr "Un error incognite ha occurrite." #, php-format msgid "" -"This is the first time you've logged into %s so we must connect your " +"This is the first time you have logged into %s so we must connect your " "Facebook to a local account. You can either create a new local account, or " "connect with an existing local account." msgstr "" "Isto es le prime vice que tu ha aperite un session in %s; dunque, nos debe " -"connecter tu Facebook a un conto local. Tu pote crear un nove conto local, o " -"connecter con un conto local existente." +"connecter tu conto de Facebook a un conto local. Tu pote crear un nove conto " +"local, o connecter con un conto local existente." #. TRANS: Page title. msgid "Facebook Setup" @@ -181,8 +178,8 @@ msgstr "Crear un nove usator con iste pseudonymo." msgid "New nickname" msgstr "Nove pseudonymo" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 minusculas o numeros, sin punctuation o spatios" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "1-64 minusculas o numeros, sin punctuation o spatios." #. TRANS: Submit button. msgctxt "BUTTON" diff --git a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po index 031f3b4414..323b46d11b 100644 --- a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:45+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -38,10 +38,10 @@ msgstr "Facebook" msgid "Facebook integration settings" msgstr "Поставки за обединување со Facebook" -msgid "Invalid Facebook ID. Max length is 255 characters." +msgid "Invalid Facebook ID. Maximum length is 255 characters." msgstr "Неважечка назнака (ID) за Facebook. Дозволени се највеќе 255 знаци." -msgid "Invalid Facebook secret. Max length is 255 characters." +msgid "Invalid Facebook secret. Maximum length is 255 characters." msgstr "Неважечка тајна за Facebook. Дозволени се највеќе 255 знаци." msgid "Facebook application settings" @@ -50,20 +50,22 @@ msgstr "Поставки за програм за Facebook" msgid "Application ID" msgstr "Назнака (ID) на програмот" -msgid "ID of your Facebook application" -msgstr "Назнака (ID) на Вашиот програм за Facebook" +msgid "ID of your Facebook application." +msgstr "Назнака (ID) на Вашиот приложен програм за Facebook." msgid "Secret" msgstr "Тајна" -msgid "Application secret" -msgstr "Тајна за програмот" +msgid "Application secret." +msgstr "Тајна за прилож. програм." +#. TRANS: Submit button to save synchronisation settings. +msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" -msgid "Save Facebook settings" -msgstr "Зачувај поставки за Facebook" +msgid "Save Facebook settings." +msgstr "Зачувај поставки за Facebook." msgid "There was a problem with your session token. Try again, please." msgstr "Се поајви проблем со Вашиот сесиски жетон. Обидете се повторно." @@ -82,11 +84,6 @@ msgstr "Објавувај ми ги забелешките на Facebook." msgid "Send \"@\" replies to Facebook." msgstr "Испраќај „@“-одговори на Facebook." -#. TRANS: Submit button to save synchronisation settings. -msgctxt "BUTTON" -msgid "Save" -msgstr "Зачувај" - #. TRANS: Legend. msgid "Disconnect my account from Facebook" msgstr "Исклучи ми ја сметката од Facebook" @@ -119,8 +116,8 @@ msgstr "Се појави проблем при зачувувањето на н msgid "Sync preferences saved." msgstr "Нагодувањата за усогласување се зачувани." -msgid "Couldn't delete link to Facebook." -msgstr "Не можев да ја избришам врската со Facebook." +msgid "Could not delete link to Facebook." +msgstr "Не можев да ја избришам врската до Facebook." msgid "You have disconnected from Facebook." msgstr "Сега сте исклучени од Facebook." @@ -134,7 +131,7 @@ msgstr "" msgid "There is already a local account linked with that Facebook account." msgstr "Веќе постои локална сметка поврзана со тааа сметка на Facebook." -msgid "You can't register if you don't agree to the license." +msgid "You cannot register if you do not agree to the license." msgstr "Не може да се регистрирате ако не ја прифаќате лиценцата." msgid "An unknown error has occured." @@ -142,7 +139,7 @@ msgstr "Се појави непозната грешка." #, php-format msgid "" -"This is the first time you've logged into %s so we must connect your " +"This is the first time you have logged into %s so we must connect your " "Facebook to a local account. You can either create a new local account, or " "connect with an existing local account." msgstr "" @@ -165,7 +162,7 @@ msgid "" "email address, IM address, and phone number." msgstr "" "Мојот текст и податотеки се достапни под %s, освен следниве приватни " -"податоци: лозинка, е-пошта, IM-адреса и телефонски број." +"податоци: лозинка, е-пошта, НП-адреса и телефонски број." #. TRANS: Legend. msgid "Create new account" @@ -178,8 +175,8 @@ msgstr "Создај нов корисник со овој прекар." msgid "New nickname" msgstr "Нов прекар" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 мали букви и бројки, без интерпункциски знаци и празни места" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "1-64 мали букви и бројки, без интерпункциски знаци и празни места." #. TRANS: Submit button. msgctxt "BUTTON" diff --git a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po index a024585fac..1d83f84248 100644 --- a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:45+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -38,10 +38,10 @@ msgstr "Facebook" msgid "Facebook integration settings" msgstr "Instellingen voor Facebookkoppeling" -msgid "Invalid Facebook ID. Max length is 255 characters." +msgid "Invalid Facebook ID. Maximum length is 255 characters." msgstr "Ongeldig Facebook-ID. De maximale lengte is 255 tekens." -msgid "Invalid Facebook secret. Max length is 255 characters." +msgid "Invalid Facebook secret. Maximum length is 255 characters." msgstr "Ongeldig Facebookgeheim. De maximale lengte is 255 tekens." msgid "Facebook application settings" @@ -50,20 +50,22 @@ msgstr "Applicatieinstellingen voor Facebook" msgid "Application ID" msgstr "Applicatie-ID" -msgid "ID of your Facebook application" -msgstr "ID van uw Facebookapplicatie" +msgid "ID of your Facebook application." +msgstr "ID van uw Facebookapplicatie." msgid "Secret" msgstr "Geheim" -msgid "Application secret" -msgstr "Applicatiegeheim" +msgid "Application secret." +msgstr "Applicatiegeheim." +#. TRANS: Submit button to save synchronisation settings. +msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" -msgid "Save Facebook settings" -msgstr "Facebookinstellingen opslaan" +msgid "Save Facebook settings." +msgstr "Facebookinstellingen opslaan." msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -84,11 +86,6 @@ msgstr "Mijn mededelingen publiceren op Facebook." msgid "Send \"@\" replies to Facebook." msgstr "Antwoorden met \"@\" naar Facebook verzenden." -#. TRANS: Submit button to save synchronisation settings. -msgctxt "BUTTON" -msgid "Save" -msgstr "Opslaan" - #. TRANS: Legend. msgid "Disconnect my account from Facebook" msgstr "Mijn gebruiker loskoppelen van Facebook" @@ -123,7 +120,7 @@ msgstr "" msgid "Sync preferences saved." msgstr "Uw synchronisatievoorkeuren zijn opgeslagen." -msgid "Couldn't delete link to Facebook." +msgid "Could not delete link to Facebook." msgstr "Het was niet mogelijk de verwijzing naar Facebook te verwijderen." msgid "You have disconnected from Facebook." @@ -138,7 +135,7 @@ msgstr "" msgid "There is already a local account linked with that Facebook account." msgstr "Er is al een lokale gebruiker verbonden met deze Facebookgebruiker." -msgid "You can't register if you don't agree to the license." +msgid "You cannot register if you do not agree to the license." msgstr "U kunt zich niet registreren als u niet met de licentie akkoord gaat." msgid "An unknown error has occured." @@ -146,11 +143,11 @@ msgstr "Er is een onbekende fout opgetreden." #, php-format msgid "" -"This is the first time you've logged into %s so we must connect your " +"This is the first time you have logged into %s so we must connect your " "Facebook to a local account. You can either create a new local account, or " "connect with an existing local account." msgstr "" -"De is de eerste keer dat u aanmeldt bij %s en dan moeten we uw " +"Dit is de eerste keer dat u aanmeldt bij %s en dan moeten we uw " "Facebookgebruiker koppelen met uw lokale gebruiker. U kunt een nieuwe lokale " "gebruiker aanmaken of koppelen met een bestaande gebruiker als u die al hebt." @@ -182,8 +179,8 @@ msgstr "Nieuwe gebruiker aanmaken met deze gebruikersnaam." msgid "New nickname" msgstr "Nieuwe gebruikersnaam" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties." #. TRANS: Submit button. msgctxt "BUTTON" diff --git a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po index 321b376855..3bb23416b8 100644 --- a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:45+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -39,11 +39,13 @@ msgstr "Facebook" msgid "Facebook integration settings" msgstr "Налаштування інтеграції з Facebook" -msgid "Invalid Facebook ID. Max length is 255 characters." +#, fuzzy +msgid "Invalid Facebook ID. Maximum length is 255 characters." msgstr "" "Неприпустимий ідентифікатор Facebook. Максимальна довжина — 255 символів." -msgid "Invalid Facebook secret. Max length is 255 characters." +#, fuzzy +msgid "Invalid Facebook secret. Maximum length is 255 characters." msgstr "Помилковий секретний код Facebook. Максимальна довжина — 255 символів." msgid "Facebook application settings" @@ -52,19 +54,24 @@ msgstr "Налаштування додатку для Facebook" msgid "Application ID" msgstr "Ідентифікатор додатку" -msgid "ID of your Facebook application" +#, fuzzy +msgid "ID of your Facebook application." msgstr "Ідентифікатор вашого додатку Facebook" msgid "Secret" msgstr "Секретний код" -msgid "Application secret" +#, fuzzy +msgid "Application secret." msgstr "Секретний код додатку" +#. TRANS: Submit button to save synchronisation settings. +msgctxt "BUTTON" msgid "Save" msgstr "Зберегти" -msgid "Save Facebook settings" +#, fuzzy +msgid "Save Facebook settings." msgstr "Зберегти налаштування Facebook" msgid "There was a problem with your session token. Try again, please." @@ -84,11 +91,6 @@ msgstr "Публікувати мої дописи у Facebook." msgid "Send \"@\" replies to Facebook." msgstr "Надсилати «@» відповіді до Facebook." -#. TRANS: Submit button to save synchronisation settings. -msgctxt "BUTTON" -msgid "Save" -msgstr "Зберегти" - #. TRANS: Legend. msgid "Disconnect my account from Facebook" msgstr "Від’єднати мій акаунт від Facebook" @@ -121,7 +123,8 @@ msgstr "Виникла проблема при збереженні параме msgid "Sync preferences saved." msgstr "Параметри синхронізації збережено." -msgid "Couldn't delete link to Facebook." +#, fuzzy +msgid "Could not delete link to Facebook." msgstr "Не можу видалити посилання на Facebook." msgid "You have disconnected from Facebook." @@ -136,15 +139,16 @@ msgstr "" msgid "There is already a local account linked with that Facebook account." msgstr "Один з тутешніх акаунтів вже прив’язаний до цього профілю у Facebook." -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "Ви не зможете зареєструватись, якщо не погодитесь з умовами ліцензії." msgid "An unknown error has occured." msgstr "Сталася невідома помилка." -#, php-format +#, fuzzy, php-format msgid "" -"This is the first time you've logged into %s so we must connect your " +"This is the first time you have logged into %s so we must connect your " "Facebook to a local account. You can either create a new local account, or " "connect with an existing local account." msgstr "" @@ -180,7 +184,8 @@ msgstr "Створити нового користувача з цим нікн msgid "New nickname" msgstr "Новий псевдонім" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" "1-64 літери нижнього регістру і цифри, ніякої пунктуації або інтервалів" diff --git a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po index 236642b036..9906a8236b 100644 --- a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:45+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -39,10 +39,12 @@ msgstr "Facebook" msgid "Facebook integration settings" msgstr "Facebook 集成设置" -msgid "Invalid Facebook ID. Max length is 255 characters." +#, fuzzy +msgid "Invalid Facebook ID. Maximum length is 255 characters." msgstr "无效的 Facebook ID。最大长度为 255 个字符。" -msgid "Invalid Facebook secret. Max length is 255 characters." +#, fuzzy +msgid "Invalid Facebook secret. Maximum length is 255 characters." msgstr "无效的 Facebook 秘密。最大长度为 255 个字符。" msgid "Facebook application settings" @@ -51,19 +53,24 @@ msgstr "Facebook 应用程序设置" msgid "Application ID" msgstr "应用程序 ID" -msgid "ID of your Facebook application" +#, fuzzy +msgid "ID of your Facebook application." msgstr "Facebook 应用程序的 ID" msgid "Secret" msgstr "秘密" -msgid "Application secret" +#, fuzzy +msgid "Application secret." msgstr "应用程序的秘密" +#. TRANS: Submit button to save synchronisation settings. +msgctxt "BUTTON" msgid "Save" msgstr "保存" -msgid "Save Facebook settings" +#, fuzzy +msgid "Save Facebook settings." msgstr "保存的 Facebook 设置" msgid "There was a problem with your session token. Try again, please." @@ -83,11 +90,6 @@ msgstr "将我的通知发布到 Facebook。" msgid "Send \"@\" replies to Facebook." msgstr "发送 \"@\" Facebook 的答复。" -#. TRANS: Submit button to save synchronisation settings. -msgctxt "BUTTON" -msgid "Save" -msgstr "保存" - #. TRANS: Legend. msgid "Disconnect my account from Facebook" msgstr "从 Facebook 拔下我的账户" @@ -116,8 +118,9 @@ msgstr "" msgid "Sync preferences saved." msgstr "" -msgid "Couldn't delete link to Facebook." -msgstr "" +#, fuzzy +msgid "Could not delete link to Facebook." +msgstr "将我的通知发布到 Facebook。" msgid "You have disconnected from Facebook." msgstr "" @@ -129,7 +132,8 @@ msgstr "您必须登录到 Facebook 注册使用 Facebook 的本地帐户。" msgid "There is already a local account linked with that Facebook account." msgstr "已存在与该 Facebook 帐户相关的本地帐户。" -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "如果您不同意该许可,您不能注册。" msgid "An unknown error has occured." @@ -137,7 +141,7 @@ msgstr "出现了一个未知的错误。" #, php-format msgid "" -"This is the first time you've logged into %s so we must connect your " +"This is the first time you have logged into %s so we must connect your " "Facebook to a local account. You can either create a new local account, or " "connect with an existing local account." msgstr "" @@ -168,7 +172,8 @@ msgstr "此别名与创建新用户。" msgid "New nickname" msgstr "新的昵称" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 个小写字母或没有标点符号或空格的数字" #. TRANS: Submit button. diff --git a/plugins/FirePHP/locale/FirePHP.pot b/plugins/FirePHP/locale/FirePHP.pot index 119331eddf..cfaca16805 100644 --- a/plugins/FirePHP/locale/FirePHP.pot +++ b/plugins/FirePHP/locale/FirePHP.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po index 1c98b60f77..328357769d 100644 --- a/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:45+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po index 77e55a1751..1cdeaebf6c 100644 --- a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:45+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po index d7b20f7c00..bfbf8e8829 100644 --- a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:45+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po index 08e7b2e629..34c91863b4 100644 --- a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:46+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po index 6486c4d32b..e02fce6655 100644 --- a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:46+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po index 2c5e4ace48..75d038d97a 100644 --- a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:46+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po index cceae4cfeb..66875d7428 100644 --- a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:46+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po index 4104482717..7b8650513c 100644 --- a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:46+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po index b866130381..aac7933420 100644 --- a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:46+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po index 32740e7ea3..27eaad1a0e 100644 --- a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:46+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po index 9c8011011b..817db83f00 100644 --- a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:46+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po index b3b9b8c06d..7bdd243501 100644 --- a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:46+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po index 3dd18ce60e..3472c3d42d 100644 --- a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:46+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po index d078c62f88..b3342e0e6a 100644 --- a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:46+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po index d3c385fac9..4ec98237e9 100644 --- a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:46+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po index 33fb100c11..23ebf3c6d6 100644 --- a/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:47+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FollowEveryone/FollowEveryonePlugin.php b/plugins/FollowEveryone/FollowEveryonePlugin.php index 228efc9357..04ed932122 100644 --- a/plugins/FollowEveryone/FollowEveryonePlugin.php +++ b/plugins/FollowEveryone/FollowEveryonePlugin.php @@ -159,7 +159,7 @@ class FollowEveryonePlugin extends Plugin $action->elementStart('li'); // TRANS: Checkbox label in form for profile settings. - $action->checkbox('followeveryone', _('Follow everyone'), + $action->checkbox('followeveryone', _m('Follow everyone'), ($action->arg('followeveryone')) ? $action->arg('followeveryone') : User_followeveryone_prefs::followEveryone($user->id)); diff --git a/plugins/FollowEveryone/locale/FollowEveryone.pot b/plugins/FollowEveryone/locale/FollowEveryone.pot index bc1b9ac9a2..ddc0760fbf 100644 --- a/plugins/FollowEveryone/locale/FollowEveryone.pot +++ b/plugins/FollowEveryone/locale/FollowEveryone.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,11 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#. TRANS: Checkbox label in form for profile settings. +#: FollowEveryonePlugin.php:162 +msgid "Follow everyone" +msgstr "" + #: FollowEveryonePlugin.php:203 msgid "New users follow everyone at registration and are followed in return." msgstr "" diff --git a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po index 0b7de7f0a1..6924147983 100644 --- a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:47+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Checkbox label in form for profile settings. +msgid "Follow everyone" +msgstr "" + msgid "New users follow everyone at registration and are followed in return." msgstr "" "Neue Benutzer folgen jedem nach der Registrierung und werden im Gegenzug " diff --git a/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po index 2266f5706a..930d2c7858 100644 --- a/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:47+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Checkbox label in form for profile settings. +msgid "Follow everyone" +msgstr "" + msgid "New users follow everyone at registration and are followed in return." msgstr "" "Les nouveaux utilisateurs suivent tout le monde lors de l’inscription et " diff --git a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po index 15d5818f53..8e24d5935f 100644 --- a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:47+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Checkbox label in form for profile settings. +msgid "Follow everyone" +msgstr "" + msgid "New users follow everyone at registration and are followed in return." msgstr "משתמשים חדשים עוקבים אחר כולם בעת הרישום ובתמורה עוקבים אחריהם." diff --git a/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po index 062edb8036..b8bf06b072 100644 --- a/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:47+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Checkbox label in form for profile settings. +msgid "Follow everyone" +msgstr "Sequer omnes" + msgid "New users follow everyone at registration and are followed in return." msgstr "Nove usatores seque omnes al inscription e es sequite per omnes." diff --git a/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po index 1f9192c60d..dc48680a98 100644 --- a/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:47+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#. TRANS: Checkbox label in form for profile settings. +msgid "Follow everyone" +msgstr "Следи ги сите" + msgid "New users follow everyone at registration and are followed in return." msgstr "Новите корисници следат секого при регистрација и сите ги следат нив." diff --git a/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po index 6eea441c93..be67e48555 100644 --- a/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:48+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Checkbox label in form for profile settings. +msgid "Follow everyone" +msgstr "Iedereen volgen" + msgid "New users follow everyone at registration and are followed in return." msgstr "" "Nieuwe gebruikers volgen iedereen bij inschrijving en worden door iedereen " diff --git a/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po index aa259cca04..794d1181c5 100644 --- a/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:48+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Checkbox label in form for profile settings. +msgid "Follow everyone" +msgstr "" + msgid "New users follow everyone at registration and are followed in return." msgstr "" "Novos utilizadores seguem toda a gente no momento do registo e são seguidos " diff --git a/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po index 86c0ed4a40..8dc2c35e33 100644 --- a/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po @@ -9,19 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:48+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" +#. TRANS: Checkbox label in form for profile settings. +msgid "Follow everyone" +msgstr "" + msgid "New users follow everyone at registration and are followed in return." msgstr "" "Новые пользователи следят за всеми при регистрации и получают обратное " diff --git a/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po index 0d0a1788be..96ed050b5f 100644 --- a/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po @@ -9,19 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:48+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" +#. TRANS: Checkbox label in form for profile settings. +msgid "Follow everyone" +msgstr "" + msgid "New users follow everyone at registration and are followed in return." msgstr "" "Нові користувачі автоматично підписуються до всіх після реєстрації, а всі " diff --git a/plugins/ForceGroup/locale/ForceGroup.pot b/plugins/ForceGroup/locale/ForceGroup.pot index 9649954900..5269316f2a 100644 --- a/plugins/ForceGroup/locale/ForceGroup.pot +++ b/plugins/ForceGroup/locale/ForceGroup.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po index e15957bc4d..2679a08b8a 100644 --- a/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:48+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po index 8923a78b64..668244443d 100644 --- a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:48+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po index 8a33d464ca..f5f7a48fe4 100644 --- a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:48+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po index 60d924b8d8..b3766c2b96 100644 --- a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:48+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po index dd71404048..d41d0c0495 100644 --- a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:49+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po index 6ae5077e19..2587532ad5 100644 --- a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:49+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po index 8c751bc3f4..3398443528 100644 --- a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:49+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po index 4d6a2176b6..25a85b0e8e 100644 --- a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:49+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po index 591e081e1a..c60aedaf0b 100644 --- a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:49+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po index cf7faaa2ff..723d57be1e 100644 --- a/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:49+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po index 085ddf0c68..b061b59a5c 100644 --- a/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:49+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po index 6aeadc2664..2820f65c9d 100644 --- a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:49+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po index 89e1c67b42..89776c2a6c 100644 --- a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:49+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/GeoURL/locale/GeoURL.pot b/plugins/GeoURL/locale/GeoURL.pot index 172d68a852..2e06c1c0d5 100644 --- a/plugins/GeoURL/locale/GeoURL.pot +++ b/plugins/GeoURL/locale/GeoURL.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po index 62c566d146..b4fe4161b1 100644 --- a/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:51+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po index 74e142333d..d9bcdcaf62 100644 --- a/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:51+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po index b95567b891..e494cfcdf1 100644 --- a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:51+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po index b2703ca47d..9eb6f43b9d 100644 --- a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:51+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po index f2eff317f8..e83436b884 100644 --- a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:51+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po index 09a8b24eac..b9031532e9 100644 --- a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:51+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po index 234373135e..1c9ea3d909 100644 --- a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:51+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po index c6319526f6..c9feb4a82c 100644 --- a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:52+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po index cff73fb633..bff0dceb0e 100644 --- a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:52+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po index 1608fb570b..29c7b29d60 100644 --- a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:52+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po index 1e15264a1e..44b92264d8 100644 --- a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:52+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po index c317193c91..bf45ca78e3 100644 --- a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:52+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po index 2ca27eb2b3..337629bd53 100644 --- a/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:52+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po index 92344eb83a..0e15b13f59 100644 --- a/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:52+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po index ebf95c07e1..18e55cbcf5 100644 --- a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:52+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po index 6ac1d68e03..799e33540e 100644 --- a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:52+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po index 50f6d25912..7744b86f89 100644 --- a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:52+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/Geonames/locale/Geonames.pot b/plugins/Geonames/locale/Geonames.pot index 6d60595b8c..f6b6c874d7 100644 --- a/plugins/Geonames/locale/Geonames.pot +++ b/plugins/Geonames/locale/Geonames.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po index d2370bcf28..21e3736ea2 100644 --- a/plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po index 75f2cb86b2..4423738432 100644 --- a/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po index b2bc174c83..23aa72dda8 100644 --- a/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po index e537d323db..60363356fd 100644 --- a/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po index 9bea6746a1..95308696a6 100644 --- a/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po index 079be03533..4f104aed39 100644 --- a/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po index ba5353ab80..8faf3761c9 100644 --- a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/he/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/he/LC_MESSAGES/Geonames.po index 8ba09bc07d..cff87cac61 100644 --- a/plugins/Geonames/locale/he/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/he/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po index e6d4776707..7343e15e20 100644 --- a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/id/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/id/LC_MESSAGES/Geonames.po index f9493120d9..6a0419c60a 100644 --- a/plugins/Geonames/locale/id/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/id/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po index e1896fbc8b..4482697a90 100644 --- a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po index 020d6aa2d7..296e219f2c 100644 --- a/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po index 1dc16970fd..1c965f61bb 100644 --- a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/pt/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/pt/LC_MESSAGES/Geonames.po index 9280ffa1d7..268405524b 100644 --- a/plugins/Geonames/locale/pt/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/pt/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/pt_BR/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/pt_BR/LC_MESSAGES/Geonames.po index 6044852358..e24d11b1b7 100644 --- a/plugins/Geonames/locale/pt_BR/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/pt_BR/LC_MESSAGES/Geonames.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po index e135eef282..3d2b1baf28 100644 --- a/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:51+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po index 50a4585f21..c82385d905 100644 --- a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:51+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po index b7b77cf387..a4cf9e2121 100644 --- a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:51+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po index 03dc703933..6020db159a 100644 --- a/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:51+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot index a24fae2a4f..49f994b6cf 100644 --- a/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot +++ b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po index 085286cc99..72f101724d 100644 --- a/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po index 0787c6518f..39e012c735 100644 --- a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po index 0b2d4ec3ec..88d18148df 100644 --- a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po index d14b06a320..9794b78410 100644 --- a/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po index 3694526437..50da783933 100644 --- a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po index ea6b674890..953007877b 100644 --- a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po index 2d054ade93..7b1f3076a1 100644 --- a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po index 3f885af49f..6b2ddfbe45 100644 --- a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po index 187243119e..b481816d52 100644 --- a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po index dce391b070..beef3b4ebf 100644 --- a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po index a014b91357..b15e445f41 100644 --- a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po index 8c024db6a4..cd4b1301db 100644 --- a/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po index e5e885b901..bbe329c8a3 100644 --- a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po index a0590c165c..b524cdfc15 100644 --- a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po index e73f0dc361..36625cf4b8 100644 --- a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:54+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po index 0d9a8d43e4..66ad0fdf24 100644 --- a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:54+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po index 63200792d2..29f8927308 100644 --- a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:54+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/Gravatar/locale/Gravatar.pot b/plugins/Gravatar/locale/Gravatar.pot index d7e557c8da..86957de6fd 100644 --- a/plugins/Gravatar/locale/Gravatar.pot +++ b/plugins/Gravatar/locale/Gravatar.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po index 59fafd1978..3ada26db5b 100644 --- a/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:55+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po index 5b57d11585..f3ba57b6bc 100644 --- a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:55+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po index f620c99627..39fb89a738 100644 --- a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:55+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po index 767ea7e918..cb31e6de0c 100644 --- a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:55+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po index a48d4e4b82..2768c8e76f 100644 --- a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:55+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po index 58f0505546..8e12136b8d 100644 --- a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:55+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po index 4a371c4892..5ab1db48f3 100644 --- a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:55+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po index 7cecd8acb1..5a60a8d04d 100644 --- a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:55+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po index c7202747a3..11647cae53 100644 --- a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:55+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po index 65a0fe4ead..fb04b7b7a9 100644 --- a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:55+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po index 0e391a0a7b..ba7caf0760 100644 --- a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:55+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po index c79f0d4b03..1f0fde3c72 100644 --- a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:56+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/GroupFavorited/locale/GroupFavorited.pot b/plugins/GroupFavorited/locale/GroupFavorited.pot index 5dddaa21dc..45ce9c1e30 100644 --- a/plugins/GroupFavorited/locale/GroupFavorited.pot +++ b/plugins/GroupFavorited/locale/GroupFavorited.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po index 0467112870..ea29a15cc1 100644 --- a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:56+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po index 7ac6bac0b2..7f135716ba 100644 --- a/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:56+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po index 2ae6c9a887..f7ea723b3f 100644 --- a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:56+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po index 0c1a853c4d..df7bffb8d1 100644 --- a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:56+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po index 8955217140..9ae56d9c6d 100644 --- a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:56+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po index 98007d3602..5a4c6c89e7 100644 --- a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:57+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po index ffcaad9b9a..1de93a2bbc 100644 --- a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:50+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:57+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po index 0daafdb76c..b827f8f738 100644 --- a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:50+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:57+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po index 1a3b7b049c..4c45ced6be 100644 --- a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:50+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:57+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po index 6e7cae0be2..27696777c8 100644 --- a/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:50+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:57+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po index 5158f3e08d..8899776d7d 100644 --- a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:50+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:57+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po index c0dc9d6a9d..df0785ae8c 100644 --- a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:50+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:57+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupPrivateMessage/GroupPrivateMessagePlugin.php b/plugins/GroupPrivateMessage/GroupPrivateMessagePlugin.php index 42a8a5d573..87c5aa9bda 100644 --- a/plugins/GroupPrivateMessage/GroupPrivateMessagePlugin.php +++ b/plugins/GroupPrivateMessage/GroupPrivateMessagePlugin.php @@ -207,8 +207,8 @@ class GroupPrivateMessagePlugin extends Plugin $action->menuItem(common_local_url('groupinbox', array('nickname' => $group->nickname)), - _m('Inbox'), - _m('Private messages for this group'), + _m('MENU','Inbox'), + _m('Private messages for this group.'), $action->trimmed('action') == 'groupinbox', 'nav_group_inbox'); return true; @@ -255,21 +255,21 @@ class GroupPrivateMessagePlugin extends Plugin $form->out->elementStart('li'); $form->out->dropdown('allow_privacy', - _('Private messages'), - array(Group_privacy_settings::SOMETIMES => _('Sometimes'), - Group_privacy_settings::ALWAYS => _('Always'), - Group_privacy_settings::NEVER => _('Never')), - _('Whether to allow private messages to this group'), + _m('Private messages'), + array(Group_privacy_settings::SOMETIMES => _m('Sometimes'), + Group_privacy_settings::ALWAYS => _m('Always'), + Group_privacy_settings::NEVER => _m('Never')), + _m('Whether to allow private messages to this group.'), false, (empty($gps)) ? Group_privacy_settings::SOMETIMES : $gps->allow_privacy); $form->out->elementEnd('li'); $form->out->elementStart('li'); $form->out->dropdown('allow_sender', - _('Private sender'), - array(Group_privacy_settings::EVERYONE => _('Everyone'), - Group_privacy_settings::MEMBER => _('Member'), - Group_privacy_settings::ADMIN => _('Admin')), - _('Who can send private messages to the group'), + _m('Private senders'), + array(Group_privacy_settings::EVERYONE => _m('Everyone'), + Group_privacy_settings::MEMBER => _m('Member'), + Group_privacy_settings::ADMIN => _m('Admin')), + _m('Who can send private messages to the group.'), false, (empty($gps)) ? Group_privacy_settings::MEMBER : $gps->allow_sender); $form->out->elementEnd('li'); @@ -370,8 +370,8 @@ class GroupPrivateMessagePlugin extends Plugin $action->elementStart('li', 'entity_send-a-message'); $action->element('a', array('href' => common_local_url('newgroupmessage', array('nickname' => $group->nickname)), - 'title' => _('Send a direct message to this group')), - _('Message')); + 'title' => _m('Send a direct message to this group.')), + _m('Message')); // $form = new GroupMessageForm($action, $group); // $form->hidden = true; // $form->show(); @@ -454,7 +454,7 @@ class GroupPrivateMessagePlugin extends Plugin // Don't save the notice! // FIXME: this is probably cheating. - throw new ClientException(sprintf(_('Forced notice to private group message.')), + throw new ClientException(sprintf(_m('Forced notice to private group message.')), 200); } } @@ -476,7 +476,7 @@ class GroupPrivateMessagePlugin extends Plugin $gps = Group_privacy_settings::forGroup($group); if ($gps->allow_privacy == Group_privacy_settings::ALWAYS) { - $action->element('p', 'privategroupindicator', _('Private')); + $action->element('p', 'privategroupindicator', _m('Private')); } return true; @@ -501,7 +501,7 @@ class GroupPrivateMessagePlugin extends Plugin 'author' => 'Evan Prodromou', 'homepage' => 'http://status.net/wiki/Plugin:GroupPrivateMessage', 'rawdescription' => - _m('Allow posting DMs to a group.')); + _m('Allow posting private messages to groups.')); return true; } } diff --git a/plugins/GroupPrivateMessage/Group_message.php b/plugins/GroupPrivateMessage/Group_message.php index f8c0c707c3..800cd10575 100644 --- a/plugins/GroupPrivateMessage/Group_message.php +++ b/plugins/GroupPrivateMessage/Group_message.php @@ -123,7 +123,7 @@ class Group_message extends Memcached_DataObject { if (!$user->hasRight(Right::NEWMESSAGE)) { // XXX: maybe break this out into a separate right - throw new Exception(sprintf(_('User %s not allowed to send private messages.'), + throw new Exception(sprintf(_m('User %s is not allowed to send private messages.'), $user->nickname)); } @@ -177,7 +177,7 @@ class Group_message extends Memcached_DataObject { $group = User_group::staticGet('id', $this->to_group); if (empty($group)) { - throw new ServerException(_('No group for group message')); + throw new ServerException(_m('No group for group message.')); } return $group; } @@ -186,7 +186,7 @@ class Group_message extends Memcached_DataObject { $sender = Profile::staticGet('id', $this->from_profile); if (empty($sender)) { - throw new ServerException(_('No sender for group message')); + throw new ServerException(_m('No sender for group message.')); } return $sender; } diff --git a/plugins/GroupPrivateMessage/Group_message_profile.php b/plugins/GroupPrivateMessage/Group_message_profile.php index c5832a9294..4be0932cc2 100644 --- a/plugins/GroupPrivateMessage/Group_message_profile.php +++ b/plugins/GroupPrivateMessage/Group_message_profile.php @@ -155,28 +155,28 @@ class Group_message_profile extends Memcached_DataObject common_switch_locale($to->language); // TRANS: Subject for direct-message notification email. - // TRANS: %s is the sending user's nickname. - $subject = sprintf(_('New private message from %s to group %s'), $from_profile->nickname, $group->nickname); + // TRANS: %1$s is the sending user's nickname, %2$s is the group nickname. + $subject = sprintf(_m('New private message from %1$s to group %2$s'), $from_profile->nickname, $group->nickname); // TRANS: Body for direct-message notification email. // TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, // TRANS: %3$s is the message content, %4$s a URL to the message, // TRANS: %5$s is the StatusNet sitename. - $body = sprintf(_("%1\$s (%2\$s) sent a private message to group %3\$s:\n\n". + $body = sprintf(_m("%1\$s (%2\$s) sent a private message to group %3\$s:\n\n". "------------------------------------------------------\n". "%4\$s\n". "------------------------------------------------------\n\n". "You can reply to their message here:\n\n". "%5\$s\n\n". - "Don't reply to this email; it won't get to them.\n\n". + "Do not reply to this email; it will not get to them.\n\n". "With kind regards,\n". - "%6\$s\n"), + "%6\$s"), $from_profile->getBestName(), $from_profile->nickname, $group->nickname, $gm->content, common_local_url('newmessage', array('to' => $from_profile->id)), - common_config('site', 'name')); + common_config('site', 'name')) . "\n"; $headers = _mail_prepare_headers('message', $to->nickname, $from_profile->nickname); diff --git a/plugins/GroupPrivateMessage/Group_privacy_settings.php b/plugins/GroupPrivateMessage/Group_privacy_settings.php index 0176d3bd6e..7447ca9a62 100644 --- a/plugins/GroupPrivateMessage/Group_privacy_settings.php +++ b/plugins/GroupPrivateMessage/Group_privacy_settings.php @@ -164,7 +164,7 @@ class Group_privacy_settings extends Memcached_DataObject $gps = self::forGroup($group); if ($gps->allow_privacy == Group_privacy_settings::NEVER) { - throw new Exception(sprintf(_('Group %s does not allow private messages.'), + throw new Exception(sprintf(_m('Group %s does not allow private messages.'), $group->nickname)); } @@ -172,27 +172,27 @@ class Group_privacy_settings extends Memcached_DataObject case Group_privacy_settings::EVERYONE: $profile = $user->getProfile(); if (Group_block::isBlocked($group, $profile)) { - throw new Exception(sprintf(_('User %s is blocked from group %s.'), + throw new Exception(sprintf(_m('User %1$s is blocked from group %2$s.'), $user->nickname, $group->nickname)); } break; case Group_privacy_settings::MEMBER: if (!$user->isMember($group)) { - throw new Exception(sprintf(_('User %s is not a member of group %s.'), + throw new Exception(sprintf(_m('User %1$s is not a member of group %2$s.'), $user->nickname, $group->nickname)); } break; case Group_privacy_settings::ADMIN: if (!$user->isAdmin($group)) { - throw new Exception(sprintf(_('User %s is not an administrator of group %s.'), + throw new Exception(sprintf(_m('User %1$s is not an administrator of group %2$s.'), $user->nickname, $group->nickname)); } break; default: - throw new Exception(sprintf(_('Unknown privacy settings for group %s.'), + throw new Exception(sprintf(_m('Unknown privacy settings for group %s.'), $group->nickname)); } diff --git a/plugins/GroupPrivateMessage/groupinbox.php b/plugins/GroupPrivateMessage/groupinbox.php index 39789cc9af..e1c4fc996d 100644 --- a/plugins/GroupPrivateMessage/groupinbox.php +++ b/plugins/GroupPrivateMessage/groupinbox.php @@ -63,7 +63,7 @@ class GroupinboxAction extends GroupDesignAction $cur = common_current_user(); if (empty($cur)) { - throw new ClientException(_('Only for logged-in users'), 403); + throw new ClientException(_m('Only for logged-in users.'), 403); } $nicknameArg = $this->trimmed('nickname'); @@ -79,17 +79,17 @@ class GroupinboxAction extends GroupDesignAction $localGroup = Local_group::staticGet('nickname', $nickname); if (empty($localGroup)) { - throw new ClientException(_('No such group'), 404); + throw new ClientException(_m('No such group.'), 404); } $this->group = User_group::staticGet('id', $localGroup->group_id); if (empty($this->group)) { - throw new ClientException(_('No such group'), 404); + throw new ClientException(_m('No such group.'), 404); } if (!$cur->isMember($this->group)) { - throw new ClientException(_('Only for members'), 403); + throw new ClientException(_m('Only for members.'), 403); } $this->page = $this->trimmed('page'); @@ -167,11 +167,11 @@ class GroupinboxAction extends GroupDesignAction $base = $this->group->getFancyName(); if ($this->page == 1) { - return sprintf(_('%s group inbox'), $base); + return sprintf(_m('%s group inbox'), $base); } else { // TRANS: Page title for any but first group page. // TRANS: %1$s is a group name, $2$s is a page number. - return sprintf(_('%1$s group inbox, page %2$d'), + return sprintf(_m('%1$s group inbox, page %2$d'), $base, $this->page); } diff --git a/plugins/GroupPrivateMessage/groupmessagecommand.php b/plugins/GroupPrivateMessage/groupmessagecommand.php index 3b3cf4cfea..bd865cb37c 100644 --- a/plugins/GroupPrivateMessage/groupmessagecommand.php +++ b/plugins/GroupPrivateMessage/groupmessagecommand.php @@ -77,7 +77,7 @@ class GroupMessageCommand extends Command $gm = Group_message::send($this->user, $group, $this->text); $channel->output($this->user, - sprintf(_('Direct message to group %s sent.'), + sprintf(_m('Direct message to group %s sent.'), $group->nickname)); return true; diff --git a/plugins/GroupPrivateMessage/groupmessageform.php b/plugins/GroupPrivateMessage/groupmessageform.php index a832ce5978..6d44096123 100644 --- a/plugins/GroupPrivateMessage/groupmessageform.php +++ b/plugins/GroupPrivateMessage/groupmessageform.php @@ -87,7 +87,7 @@ class GroupMessageForm extends Form { $this->out->element('legend', null, - sprintf(_('Message to %s'), $this->group->nickname)); + sprintf(_m('Message to %s'), $this->group->nickname)); } /** @@ -128,7 +128,7 @@ class GroupMessageForm extends Form { $this->out->element('label', array('for' => 'notice_data-text', 'id' => 'notice_data-text-label'), - sprintf(_('Direct message to %s'), $this->group->nickname)); + sprintf(_m('Direct message to %s'), $this->group->nickname)); $this->out->element('textarea', array('id' => 'notice_data-text', 'cols' => 35, @@ -140,7 +140,7 @@ class GroupMessageForm extends Form if ($contentLimit > 0) { $this->out->elementStart('dl', 'form_note'); - $this->out->element('dt', null, _('Available characters')); + $this->out->element('dt', null, _m('Available characters')); $this->out->element('dd', array('class' => 'count'), $contentLimit); $this->out->elementEnd('dl'); diff --git a/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot b/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot index 253471a03a..3026297d4f 100644 --- a/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot +++ b/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,22 +17,157 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" +#: newgroupmessage.php:69 +msgid "Must be logged in." +msgstr "" + +#: newgroupmessage.php:73 Group_message.php:126 +#, php-format +msgid "User %s is not allowed to send private messages." +msgstr "" + +#: newgroupmessage.php:90 newgroupmessage.php:96 groupinbox.php:82 +#: groupinbox.php:88 +msgid "No such group." +msgstr "" + +#: newgroupmessage.php:143 +msgid "Message sent" +msgstr "" + +#: newgroupmessage.php:148 +#, php-format +msgid "Direct message to %s sent." +msgstr "" + +#: newgroupmessage.php:159 +#, php-format +msgid "New message to group %s" +msgstr "" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %1$s is the sending user's nickname, %2$s is the group nickname. +#: Group_message_profile.php:159 +#, php-format +msgid "New private message from %1$s to group %2$s" +msgstr "" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#. TRANS: %5$s is the StatusNet sitename. +#: Group_message_profile.php:165 +#, php-format +msgid "" +"%1$s (%2$s) sent a private message to group %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%5$s\n" +"\n" +"Do not reply to this email; it will not get to them.\n" +"\n" +"With kind regards,\n" +"%6$s" +msgstr "" + #: GroupPrivateMessagePlugin.php:210 +msgctxt "MENU" msgid "Inbox" msgstr "" #: GroupPrivateMessagePlugin.php:211 -msgid "Private messages for this group" +msgid "Private messages for this group." +msgstr "" + +#: GroupPrivateMessagePlugin.php:258 +msgid "Private messages" +msgstr "" + +#: GroupPrivateMessagePlugin.php:259 +msgid "Sometimes" +msgstr "" + +#: GroupPrivateMessagePlugin.php:260 +msgid "Always" +msgstr "" + +#: GroupPrivateMessagePlugin.php:261 +msgid "Never" +msgstr "" + +#: GroupPrivateMessagePlugin.php:262 +msgid "Whether to allow private messages to this group." +msgstr "" + +#: GroupPrivateMessagePlugin.php:268 +msgid "Private senders" +msgstr "" + +#: GroupPrivateMessagePlugin.php:269 +msgid "Everyone" +msgstr "" + +#: GroupPrivateMessagePlugin.php:270 +msgid "Member" +msgstr "" + +#: GroupPrivateMessagePlugin.php:271 +msgid "Admin" +msgstr "" + +#: GroupPrivateMessagePlugin.php:272 +msgid "Who can send private messages to the group." +msgstr "" + +#: GroupPrivateMessagePlugin.php:373 +msgid "Send a direct message to this group." +msgstr "" + +#: GroupPrivateMessagePlugin.php:374 +msgid "Message" +msgstr "" + +#: GroupPrivateMessagePlugin.php:457 +msgid "Forced notice to private group message." +msgstr "" + +#: GroupPrivateMessagePlugin.php:479 +msgid "Private" msgstr "" #: GroupPrivateMessagePlugin.php:504 -msgid "Allow posting DMs to a group." +msgid "Allow posting private messages to groups." +msgstr "" + +#: groupinbox.php:66 +msgid "Only for logged-in users." +msgstr "" + +#: groupinbox.php:92 +msgid "Only for members." msgstr "" #: groupinbox.php:125 msgid "This group has not received any private messages." msgstr "" +#: groupinbox.php:170 +#, php-format +msgid "%s group inbox" +msgstr "" + +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. +#: groupinbox.php:174 +#, php-format +msgid "%1$s group inbox, page %2$d" +msgstr "" + #. TRANS: Instructions for user inbox page. #: groupinbox.php:206 msgid "" @@ -40,14 +175,91 @@ msgid "" "group." msgstr "" +#: groupmessageform.php:90 +#, php-format +msgid "Message to %s" +msgstr "" + +#: groupmessageform.php:131 +#, php-format +msgid "Direct message to %s" +msgstr "" + +#: groupmessageform.php:143 +msgid "Available characters" +msgstr "" + #: groupmessageform.php:164 msgctxt "Send button for sending notice" msgid "Send" msgstr "" +#: Group_privacy_settings.php:167 +#, php-format +msgid "Group %s does not allow private messages." +msgstr "" + +#: Group_privacy_settings.php:175 +#, php-format +msgid "User %1$s is blocked from group %2$s." +msgstr "" + +#: Group_privacy_settings.php:182 +#, php-format +msgid "User %1$s is not a member of group %2$s." +msgstr "" + +#: Group_privacy_settings.php:189 +#, php-format +msgid "User %1$s is not an administrator of group %2$s." +msgstr "" + +#: Group_privacy_settings.php:195 +#, php-format +msgid "Unknown privacy settings for group %s." +msgstr "" + #: Group_message.php:137 #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." msgstr[0] "" msgstr[1] "" + +#: Group_message.php:180 +msgid "No group for group message." +msgstr "" + +#: Group_message.php:189 +msgid "No sender for group message." +msgstr "" + +#: showgroupmessage.php:70 +msgid "Only logged-in users can view private messages." +msgstr "" + +#: showgroupmessage.php:79 +msgid "No such message." +msgstr "" + +#: showgroupmessage.php:85 +msgid "Group not found." +msgstr "" + +#: showgroupmessage.php:89 +msgid "Cannot read message." +msgstr "" + +#: showgroupmessage.php:95 +msgid "No sender found." +msgstr "" + +#: showgroupmessage.php:120 +#, php-format +msgid "Message from %1$s to group %2$s on %3$s" +msgstr "" + +#: groupmessagecommand.php:80 +#, php-format +msgid "Direct message to group %s sent." +msgstr "" diff --git a/plugins/GroupPrivateMessage/locale/br/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/br/LC_MESSAGES/GroupPrivateMessage.po index 825c4abf32..c38cd9ce05 100644 --- a/plugins/GroupPrivateMessage/locale/br/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/br/LC_MESSAGES/GroupPrivateMessage.po @@ -9,40 +9,186 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:50+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:31+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgid "Must be logged in." +msgstr "" + +#, fuzzy, php-format +msgid "User %s not allowed to send private messages." +msgstr "N'eus bet kaset kemennadenn brevez ebet d'ar strollad-mañ." + +msgid "No such group." +msgstr "" + +msgid "Message sent" +msgstr "" + +#, php-format +msgid "Direct message to %s sent." +msgstr "" + +#, fuzzy, php-format +msgid "New message to group %s" +msgstr "Kemennadennoù prevez evit a strollad-mañ" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %s is the sending user's nickname. +#, fuzzy, php-format +msgid "New private message from %1$s to group %2$s" +msgstr "Kemennadennoù prevez evit a strollad-mañ" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#. TRANS: %5$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s (%2$s) sent a private message to group %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%5$s\n" +"\n" +"Do not reply to this email; it will not get to them.\n" +"\n" +"With kind regards,\n" +"%6$s" +msgstr "" + msgid "Inbox" msgstr "Boest resev" msgid "Private messages for this group" msgstr "Kemennadennoù prevez evit a strollad-mañ" +#, fuzzy +msgid "Private messages" +msgstr "Kemennadennoù prevez evit a strollad-mañ" + +msgid "Sometimes" +msgstr "" + +msgid "Always" +msgstr "" + +msgid "Never" +msgstr "" + +#, fuzzy +msgid "Whether to allow private messages to this group" +msgstr "Kemennadennoù prevez evit a strollad-mañ" + +msgid "Private sender" +msgstr "" + +msgid "Everyone" +msgstr "" + +msgid "Member" +msgstr "" + +msgid "Admin" +msgstr "" + +#, fuzzy +msgid "Who can send private messages to the group" +msgstr "Kemennadennoù prevez evit a strollad-mañ" + +#, fuzzy +msgid "Send a direct message to this group" +msgstr "Kemennadennoù prevez evit a strollad-mañ" + +msgid "Message" +msgstr "" + +msgid "Forced notice to private group message." +msgstr "" + +msgid "Private" +msgstr "" + msgid "Allow posting DMs to a group." msgstr "" +msgid "Only for logged-in users." +msgstr "" + +msgid "Only for members." +msgstr "" + msgid "This group has not received any private messages." msgstr "N'eus bet kaset kemennadenn brevez ebet d'ar strollad-mañ." +#, php-format +msgid "%s group inbox" +msgstr "" + +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. +#, php-format +msgid "%1$s group inbox, page %2$d" +msgstr "" + #. TRANS: Instructions for user inbox page. msgid "" "This is the group inbox, which lists all incoming private messages for this " "group." msgstr "" +#, php-format +msgid "Message to %s" +msgstr "" + +#, php-format +msgid "Direct message to %s" +msgstr "" + +msgid "Available characters" +msgstr "" + msgctxt "Send button for sending notice" msgid "Send" msgstr "Kas" +#, fuzzy, php-format +msgid "Group %s does not allow private messages." +msgstr "N'eus bet kaset kemennadenn brevez ebet d'ar strollad-mañ." + +#, php-format +msgid "User %1$s is blocked from group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not a member of group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not an administrator of group %2$s." +msgstr "" + +#, php-format +msgid "Unknown privacy settings for group %s." +msgstr "" + +#, fuzzy, php-format +msgid "User %s is not allowed to send private messages." +msgstr "N'eus bet kaset kemennadenn brevez ebet d'ar strollad-mañ." + #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." @@ -52,3 +198,32 @@ msgstr[0] "" msgstr[1] "" "Re hir eo. %d eo an niver brasañ a arouezennoù a c'haller kaout en ur " "gemennadenn." + +msgid "No group for group message" +msgstr "" + +msgid "No sender for group message" +msgstr "" + +msgid "Only logged-in users can view private messages." +msgstr "" + +msgid "No such message." +msgstr "" + +msgid "Group not found." +msgstr "" + +msgid "Cannot read message." +msgstr "" + +msgid "No sender found." +msgstr "" + +#, php-format +msgid "Message from %1$s to group %2$s on %3$s" +msgstr "" + +#, php-format +msgid "Direct message to group %s sent." +msgstr "" diff --git a/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po index 8a6a5a6ad5..d3a6ee355c 100644 --- a/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po @@ -9,30 +9,141 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:50+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:31+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Must be logged in." +msgstr "" + +#, fuzzy, php-format +msgid "User %s not allowed to send private messages." +msgstr "Iste gruppo non ha recipite messages private." + +msgid "No such group." +msgstr "" + +msgid "Message sent" +msgstr "" + +#, php-format +msgid "Direct message to %s sent." +msgstr "" + +#, fuzzy, php-format +msgid "New message to group %s" +msgstr "Messages private pro iste gruppo" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %s is the sending user's nickname. +#, fuzzy, php-format +msgid "New private message from %1$s to group %2$s" +msgstr "Messages private pro iste gruppo" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#. TRANS: %5$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s (%2$s) sent a private message to group %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%5$s\n" +"\n" +"Do not reply to this email; it will not get to them.\n" +"\n" +"With kind regards,\n" +"%6$s" +msgstr "" + msgid "Inbox" msgstr "Cassa de entrata" msgid "Private messages for this group" msgstr "Messages private pro iste gruppo" +#, fuzzy +msgid "Private messages" +msgstr "Messages private pro iste gruppo" + +msgid "Sometimes" +msgstr "" + +msgid "Always" +msgstr "" + +msgid "Never" +msgstr "" + +#, fuzzy +msgid "Whether to allow private messages to this group" +msgstr "Messages private pro iste gruppo" + +msgid "Private sender" +msgstr "" + +msgid "Everyone" +msgstr "" + +msgid "Member" +msgstr "" + +msgid "Admin" +msgstr "" + +#, fuzzy +msgid "Who can send private messages to the group" +msgstr "Messages private pro iste gruppo" + +#, fuzzy +msgid "Send a direct message to this group" +msgstr "Messages private pro iste gruppo" + +msgid "Message" +msgstr "" + +msgid "Forced notice to private group message." +msgstr "" + +msgid "Private" +msgstr "" + msgid "Allow posting DMs to a group." msgstr "Permitter de inviar messages directe a un gruppo." +msgid "Only for logged-in users." +msgstr "" + +msgid "Only for members." +msgstr "" + msgid "This group has not received any private messages." msgstr "Iste gruppo non ha recipite messages private." +#, php-format +msgid "%s group inbox" +msgstr "" + +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. +#, php-format +msgid "%1$s group inbox, page %2$d" +msgstr "" + #. TRANS: Instructions for user inbox page. msgid "" "This is the group inbox, which lists all incoming private messages for this " @@ -41,10 +152,45 @@ msgstr "" "Isto es le cassa de entrata del gruppo, que lista tote le messages private " "recipite pro iste gruppo." +#, php-format +msgid "Message to %s" +msgstr "" + +#, php-format +msgid "Direct message to %s" +msgstr "" + +msgid "Available characters" +msgstr "" + msgctxt "Send button for sending notice" msgid "Send" msgstr "Inviar" +#, fuzzy, php-format +msgid "Group %s does not allow private messages." +msgstr "Iste gruppo non ha recipite messages private." + +#, php-format +msgid "User %1$s is blocked from group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not a member of group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not an administrator of group %2$s." +msgstr "" + +#, php-format +msgid "Unknown privacy settings for group %s." +msgstr "" + +#, fuzzy, php-format +msgid "User %s is not allowed to send private messages." +msgstr "Iste gruppo non ha recipite messages private." + #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." @@ -52,3 +198,32 @@ msgstr[0] "" "Isto es troppo longe. Le dimension maxime de messages es %d characteres." msgstr[1] "" "Isto es troppo longe. Le dimension maxime de messages es %d characteres." + +msgid "No group for group message" +msgstr "" + +msgid "No sender for group message" +msgstr "" + +msgid "Only logged-in users can view private messages." +msgstr "" + +msgid "No such message." +msgstr "" + +msgid "Group not found." +msgstr "" + +msgid "Cannot read message." +msgstr "" + +msgid "No sender found." +msgstr "" + +#, php-format +msgid "Message from %1$s to group %2$s on %3$s" +msgstr "" + +#, php-format +msgid "Direct message to group %s sent." +msgstr "" diff --git a/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po index e3cfd00c26..49bfdef05c 100644 --- a/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po @@ -9,30 +9,152 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:50+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:00+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +msgid "Must be logged in." +msgstr "Мора да се најавени." + +#, php-format +msgid "User %s is not allowed to send private messages." +msgstr "На корисникот %s не му е дозволено да испраќа приватни пораки." + +msgid "No such group." +msgstr "Нема таква група." + +msgid "Message sent" +msgstr "Пораката е испратена" + +#, php-format +msgid "Direct message to %s sent." +msgstr "Непосредната порака до %s е испратена." + +#, php-format +msgid "New message to group %s" +msgstr "Приватни пораки за групата %s" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %1$s is the sending user's nickname, %2$s is the group nickname. +#, php-format +msgid "New private message from %1$s to group %2$s" +msgstr "Нова приватна порака од %1$s за групата %2$s" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#. TRANS: %5$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s (%2$s) sent a private message to group %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%5$s\n" +"\n" +"Do not reply to this email; it will not get to them.\n" +"\n" +"With kind regards,\n" +"%6$s" +msgstr "" +"%1$s (%2$s) ѝ испрати приватна порака на групата %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"Можете да одговорите на пораката тука:\n" +"\n" +"%5$s\n" +"\n" +"Не одговарајте на ова писмо; никој нема да го добие одговорот.\n" +"\n" +"Со почит,\n" +"%6$s" + +msgctxt "MENU" msgid "Inbox" msgstr "Примени" -msgid "Private messages for this group" -msgstr "Приватни пораки за групава" +msgid "Private messages for this group." +msgstr "Приватни пораки за групава." -msgid "Allow posting DMs to a group." -msgstr "Дозволи испраќање НП на група." +msgid "Private messages" +msgstr "Приватни пораки" + +msgid "Sometimes" +msgstr "Понекогаш" + +msgid "Always" +msgstr "Секогаш" + +msgid "Never" +msgstr "Никогаш" + +msgid "Whether to allow private messages to this group." +msgstr "Дали да се дозволени приватни пораки за групава." + +msgid "Private senders" +msgstr "Приватни испраќачи" + +msgid "Everyone" +msgstr "Сите" + +msgid "Member" +msgstr "Член" + +msgid "Admin" +msgstr "Админ" + +msgid "Who can send private messages to the group." +msgstr "Кој може да ѝ испраќа приватни пораки на групава." + +msgid "Send a direct message to this group." +msgstr "Испрати ѝ непосредна порака на групава." + +msgid "Message" +msgstr "Порака" + +msgid "Forced notice to private group message." +msgstr "Ја наметнав забелешката што известува за приватната порака за групата." + +msgid "Private" +msgstr "Приватна" + +msgid "Allow posting private messages to groups." +msgstr "Дозволи испраќање приватни пораки на групи." + +msgid "Only for logged-in users." +msgstr "Само за најавени корисници." + +msgid "Only for members." +msgstr "Само за членови." msgid "This group has not received any private messages." msgstr "Оваа група нема примено приватни пораки." +#, php-format +msgid "%s group inbox" +msgstr "Примени пораки на групата %s" + +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. +#, php-format +msgid "%1$s group inbox, page %2$d" +msgstr "Примени пораки на групата %1$s, страница %2$d" + #. TRANS: Instructions for user inbox page. msgid "" "This is the group inbox, which lists all incoming private messages for this " @@ -41,12 +163,72 @@ msgstr "" "Ова се примените пораки на групата кајшто се заведуваат сите дојдовни " "приватни пораки за оваа група." +#, php-format +msgid "Message to %s" +msgstr "Порака за %s" + +#, php-format +msgid "Direct message to %s" +msgstr "Непосредна порака за %s" + +msgid "Available characters" +msgstr "Знаци на располагање" + msgctxt "Send button for sending notice" msgid "Send" msgstr "Испрати" +#, php-format +msgid "Group %s does not allow private messages." +msgstr "Групата %s не дозволува приватни поаки." + +#, php-format +msgid "User %1$s is blocked from group %2$s." +msgstr "Корисникот %1$s е блокиран на групата %2$s." + +#, php-format +msgid "User %1$s is not a member of group %2$s." +msgstr "Корисникот %1$s не членува во групата %2$s." + +#, php-format +msgid "User %1$s is not an administrator of group %2$s." +msgstr "Корисникот %1$s не е администратор на групата %2$s." + +#, php-format +msgid "Unknown privacy settings for group %s." +msgstr "Непознати нагодувања за приватност на групата %s." + #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." msgstr[0] "Ова е предолго. Дозволен е само %d знак." msgstr[1] "Ова е предолго. Дозволени се највеќе %d знаци." + +msgid "No group for group message." +msgstr "Нема група за групната порака." + +msgid "No sender for group message." +msgstr "Нема испраќач за групната порака." + +msgid "Only logged-in users can view private messages." +msgstr "Само најавени корисници можат да гледаат приватни пораки." + +msgid "No such message." +msgstr "Нема таква порака." + +msgid "Group not found." +msgstr "Групата не е пронајдена." + +msgid "Cannot read message." +msgstr "Пораката не може да се чита." + +msgid "No sender found." +msgstr "Не пронајдов испраќач." + +#, php-format +msgid "Message from %1$s to group %2$s on %3$s" +msgstr "Порака од %1$s за групата %2$s на %3$s" + +#, php-format +msgid "Direct message to group %s sent." +msgstr "Испратена е непосрредна порака за групата %s." diff --git a/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po index 14bd38d148..d3e8d10dd7 100644 --- a/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po @@ -2,6 +2,7 @@ # Exported from translatewiki.net # # Author: Siebrand +# Author: TBloemink # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,30 +10,152 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:51+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:00+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Must be logged in." +msgstr "U moet aangemeld zijn." + +#, php-format +msgid "User %s is not allowed to send private messages." +msgstr "Gebruiker %s mag geen privéberichten verzenden." + +msgid "No such group." +msgstr "De opgegeven groep bestaat niet." + +msgid "Message sent" +msgstr "Bericht verzonden" + +#, php-format +msgid "Direct message to %s sent." +msgstr "Het directe bericht aan %s is verzonden." + +#, php-format +msgid "New message to group %s" +msgstr "Nieuw bericht voor de groep %s" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %1$s is the sending user's nickname, %2$s is the group nickname. +#, php-format +msgid "New private message from %1$s to group %2$s" +msgstr "Nieuwe privéberichten van %1$s voor de groep %2$s" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#. TRANS: %5$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s (%2$s) sent a private message to group %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%5$s\n" +"\n" +"Do not reply to this email; it will not get to them.\n" +"\n" +"With kind regards,\n" +"%6$s" +msgstr "" +"%1$s (%2$s) heeft een privébericht gezonden aan de groep %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"U kunt hier op het bericht antwoorden:\n" +"\n" +"%5$s\n" +"\n" +"Antwoord niet op deze e-mail. Dit komt niet aan.\n" +"\n" +"Met vriendelijke groet,\n" +"%6$s" + +msgctxt "MENU" msgid "Inbox" msgstr "Postvak IN" -msgid "Private messages for this group" -msgstr "Privéberichten voor deze groep" +msgid "Private messages for this group." +msgstr "Privéberichten voor deze groep." -msgid "Allow posting DMs to a group." -msgstr "Verzenden van Directe berichten naar een groep toestaan." +msgid "Private messages" +msgstr "Privéberichten" + +msgid "Sometimes" +msgstr "Soms" + +msgid "Always" +msgstr "Altijd" + +msgid "Never" +msgstr "Nooit" + +msgid "Whether to allow private messages to this group." +msgstr "Of privéberichten voor deze groep zijn toegestaan." + +msgid "Private senders" +msgstr "Gebruikers die privéberichten mogen verzenden" + +msgid "Everyone" +msgstr "Iedereen" + +msgid "Member" +msgstr "Lid" + +msgid "Admin" +msgstr "Beheerder" + +msgid "Who can send private messages to the group." +msgstr "Wie privéberichten kan verzenden aan de groep." + +msgid "Send a direct message to this group." +msgstr "Privébericht naar deze groep verzenden." + +msgid "Message" +msgstr "Bericht" + +msgid "Forced notice to private group message." +msgstr "Van mededelingen in deze groep privéberichten aan de groep maken." + +msgid "Private" +msgstr "Privé" + +msgid "Allow posting private messages to groups." +msgstr "Verzenden van privéberichten aan de groep toestaan." + +msgid "Only for logged-in users." +msgstr "Alleen voor aangemelde gebruikers." + +msgid "Only for members." +msgstr "Alleen voor leden." msgid "This group has not received any private messages." msgstr "Deze groep heeft geen privéberichten ontvangen." +#, php-format +msgid "%s group inbox" +msgstr "Postvak IN van de groep %s" + +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. +#, php-format +msgid "%1$s group inbox, page %2$d" +msgstr "Postvak IN van de groep %1$s, pagina %2$d" + #. TRANS: Instructions for user inbox page. msgid "" "This is the group inbox, which lists all incoming private messages for this " @@ -41,12 +164,72 @@ msgstr "" "Dit is het Postvak IN van de groep waarom alle inkomende privéberichten voor " "deze groep worden weergegeven." +#, php-format +msgid "Message to %s" +msgstr "Bericht aan %s" + +#, php-format +msgid "Direct message to %s" +msgstr "Privébericht aan %s" + +msgid "Available characters" +msgstr "Beschikbare tekens" + msgctxt "Send button for sending notice" msgid "Send" msgstr "Verzenden" +#, php-format +msgid "Group %s does not allow private messages." +msgstr "De groep %s staat geen privéberichten toe." + +#, php-format +msgid "User %1$s is blocked from group %2$s." +msgstr "Gebruiker %1$s is verbannen uit groep %2$s." + +#, php-format +msgid "User %1$s is not a member of group %2$s." +msgstr "De gebruiker %1$s is geen lid van de groep %2$s." + +#, php-format +msgid "User %1$s is not an administrator of group %2$s." +msgstr "De gebruiker %1$s is geen beheerder van de groep %2$s." + +#, php-format +msgid "Unknown privacy settings for group %s." +msgstr "Onbekende privacyinstellingen voor de groep %s." + #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." msgstr[0] "Dat is te lang. De maximale berichtlengte is %d teken." msgstr[1] "Dat is te lang. De maximale berichtlengte is %d tekens." + +msgid "No group for group message." +msgstr "Er is geen groep voor het groepsbericht." + +msgid "No sender for group message." +msgstr "Er is geen afzender voor het groepsbericht." + +msgid "Only logged-in users can view private messages." +msgstr "Alleen aangemelde gebruikers kunnen privéberichten zien." + +msgid "No such message." +msgstr "Dat bericht bestaat niet." + +msgid "Group not found." +msgstr "De groep is niet aangetroffen." + +msgid "Cannot read message." +msgstr "Kan het bericht niet lezen." + +msgid "No sender found." +msgstr "Geen afzender gevonden." + +#, php-format +msgid "Message from %1$s to group %2$s on %3$s" +msgstr "Bericht van %1$s aan groep %2$s op %3$s" + +#, php-format +msgid "Direct message to group %s sent." +msgstr "Privébericht aan groep %s verzonden." diff --git a/plugins/GroupPrivateMessage/locale/pt/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/pt/LC_MESSAGES/GroupPrivateMessage.po index 9f9ea0e52c..cf4381fb5d 100644 --- a/plugins/GroupPrivateMessage/locale/pt/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/pt/LC_MESSAGES/GroupPrivateMessage.po @@ -9,30 +9,141 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:51+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:31+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Must be logged in." +msgstr "" + +#, fuzzy, php-format +msgid "User %s not allowed to send private messages." +msgstr "Este grupo ainda não recebeu nenhuma mensagem privada." + +msgid "No such group." +msgstr "" + +msgid "Message sent" +msgstr "" + +#, php-format +msgid "Direct message to %s sent." +msgstr "" + +#, fuzzy, php-format +msgid "New message to group %s" +msgstr "Mensagens privadas para este grupo" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %s is the sending user's nickname. +#, fuzzy, php-format +msgid "New private message from %1$s to group %2$s" +msgstr "Mensagens privadas para este grupo" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#. TRANS: %5$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s (%2$s) sent a private message to group %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%5$s\n" +"\n" +"Do not reply to this email; it will not get to them.\n" +"\n" +"With kind regards,\n" +"%6$s" +msgstr "" + msgid "Inbox" msgstr "Caixa de Entrada" msgid "Private messages for this group" msgstr "Mensagens privadas para este grupo" +#, fuzzy +msgid "Private messages" +msgstr "Mensagens privadas para este grupo" + +msgid "Sometimes" +msgstr "" + +msgid "Always" +msgstr "" + +msgid "Never" +msgstr "" + +#, fuzzy +msgid "Whether to allow private messages to this group" +msgstr "Mensagens privadas para este grupo" + +msgid "Private sender" +msgstr "" + +msgid "Everyone" +msgstr "" + +msgid "Member" +msgstr "" + +msgid "Admin" +msgstr "" + +#, fuzzy +msgid "Who can send private messages to the group" +msgstr "Mensagens privadas para este grupo" + +#, fuzzy +msgid "Send a direct message to this group" +msgstr "Mensagens privadas para este grupo" + +msgid "Message" +msgstr "" + +msgid "Forced notice to private group message." +msgstr "" + +msgid "Private" +msgstr "" + msgid "Allow posting DMs to a group." msgstr "Permitir pastagens DMs a um grupo." +msgid "Only for logged-in users." +msgstr "" + +msgid "Only for members." +msgstr "" + msgid "This group has not received any private messages." msgstr "Este grupo ainda não recebeu nenhuma mensagem privada." +#, php-format +msgid "%s group inbox" +msgstr "" + +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. +#, php-format +msgid "%1$s group inbox, page %2$d" +msgstr "" + #. TRANS: Instructions for user inbox page. msgid "" "This is the group inbox, which lists all incoming private messages for this " @@ -41,12 +152,76 @@ msgstr "" "Esta é a caixa de entrada do grupo, que lista todas as mensagens privadas " "recebidas para este grupo." +#, php-format +msgid "Message to %s" +msgstr "" + +#, php-format +msgid "Direct message to %s" +msgstr "" + +msgid "Available characters" +msgstr "" + msgctxt "Send button for sending notice" msgid "Send" msgstr "Enviar" +#, fuzzy, php-format +msgid "Group %s does not allow private messages." +msgstr "Este grupo ainda não recebeu nenhuma mensagem privada." + +#, php-format +msgid "User %1$s is blocked from group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not a member of group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not an administrator of group %2$s." +msgstr "" + +#, php-format +msgid "Unknown privacy settings for group %s." +msgstr "" + +#, fuzzy, php-format +msgid "User %s is not allowed to send private messages." +msgstr "Este grupo ainda não recebeu nenhuma mensagem privada." + #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." msgstr[0] "É muito longo. Máx. tamanho da mensagem é %d caracteres." msgstr[1] "É muito longo. Máx. tamanho da mensagem é %d caracteres." + +msgid "No group for group message" +msgstr "" + +msgid "No sender for group message" +msgstr "" + +msgid "Only logged-in users can view private messages." +msgstr "" + +msgid "No such message." +msgstr "" + +msgid "Group not found." +msgstr "" + +msgid "Cannot read message." +msgstr "" + +msgid "No sender found." +msgstr "" + +#, php-format +msgid "Message from %1$s to group %2$s on %3$s" +msgstr "" + +#, php-format +msgid "Direct message to group %s sent." +msgstr "" diff --git a/plugins/GroupPrivateMessage/locale/sr-ec/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/sr-ec/LC_MESSAGES/GroupPrivateMessage.po index 73521d945b..5c83e0bea8 100644 --- a/plugins/GroupPrivateMessage/locale/sr-ec/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/sr-ec/LC_MESSAGES/GroupPrivateMessage.po @@ -9,43 +9,218 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:51+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:31+0000\n" "Language-Team: Serbian Cyrillic ekavian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sr-ec\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Must be logged in." +msgstr "" + +#, php-format +msgid "User %s not allowed to send private messages." +msgstr "" + +msgid "No such group." +msgstr "" + +msgid "Message sent" +msgstr "" + +#, php-format +msgid "Direct message to %s sent." +msgstr "" + +#, fuzzy, php-format +msgid "New message to group %s" +msgstr "Приватне поруке ове групе" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %s is the sending user's nickname. +#, fuzzy, php-format +msgid "New private message from %1$s to group %2$s" +msgstr "Приватне поруке ове групе" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#. TRANS: %5$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s (%2$s) sent a private message to group %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%5$s\n" +"\n" +"Do not reply to this email; it will not get to them.\n" +"\n" +"With kind regards,\n" +"%6$s" +msgstr "" + msgid "Inbox" msgstr "Примљене" msgid "Private messages for this group" msgstr "Приватне поруке ове групе" +#, fuzzy +msgid "Private messages" +msgstr "Приватне поруке ове групе" + +msgid "Sometimes" +msgstr "" + +msgid "Always" +msgstr "" + +msgid "Never" +msgstr "" + +#, fuzzy +msgid "Whether to allow private messages to this group" +msgstr "Приватне поруке ове групе" + +msgid "Private sender" +msgstr "" + +msgid "Everyone" +msgstr "" + +msgid "Member" +msgstr "" + +msgid "Admin" +msgstr "" + +#, fuzzy +msgid "Who can send private messages to the group" +msgstr "Приватне поруке ове групе" + +#, fuzzy +msgid "Send a direct message to this group" +msgstr "Приватне поруке ове групе" + +msgid "Message" +msgstr "" + +msgid "Forced notice to private group message." +msgstr "" + +msgid "Private" +msgstr "" + msgid "Allow posting DMs to a group." msgstr "" +msgid "Only for logged-in users." +msgstr "" + +msgid "Only for members." +msgstr "" + msgid "This group has not received any private messages." msgstr "" +#, php-format +msgid "%s group inbox" +msgstr "" + +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. +#, php-format +msgid "%1$s group inbox, page %2$d" +msgstr "" + #. TRANS: Instructions for user inbox page. msgid "" "This is the group inbox, which lists all incoming private messages for this " "group." msgstr "" +#, php-format +msgid "Message to %s" +msgstr "" + +#, php-format +msgid "Direct message to %s" +msgstr "" + +msgid "Available characters" +msgstr "" + msgctxt "Send button for sending notice" msgid "Send" msgstr "Пошаљи" +#, php-format +msgid "Group %s does not allow private messages." +msgstr "" + +#, php-format +msgid "User %1$s is blocked from group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not a member of group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not an administrator of group %2$s." +msgstr "" + +#, php-format +msgid "Unknown privacy settings for group %s." +msgstr "" + +#, php-format +msgid "User %s is not allowed to send private messages." +msgstr "" + #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." msgstr[0] "%d знак" msgstr[1] "%d знака" + +msgid "No group for group message" +msgstr "" + +msgid "No sender for group message" +msgstr "" + +msgid "Only logged-in users can view private messages." +msgstr "" + +msgid "No such message." +msgstr "" + +msgid "Group not found." +msgstr "" + +msgid "Cannot read message." +msgstr "" + +msgid "No sender found." +msgstr "" + +#, php-format +msgid "Message from %1$s to group %2$s on %3$s" +msgstr "" + +#, php-format +msgid "Direct message to group %s sent." +msgstr "" diff --git a/plugins/GroupPrivateMessage/locale/te/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/te/LC_MESSAGES/GroupPrivateMessage.po index 87b8cde76a..be3f8f1821 100644 --- a/plugins/GroupPrivateMessage/locale/te/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/te/LC_MESSAGES/GroupPrivateMessage.po @@ -9,42 +9,217 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:51+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:31+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Must be logged in." +msgstr "" + +#, fuzzy, php-format +msgid "User %s not allowed to send private messages." +msgstr "ఈ గుంపుకి అంతరంగిక సందేశాలేమీ అందలేదు." + +msgid "No such group." +msgstr "" + +msgid "Message sent" +msgstr "" + +#, php-format +msgid "Direct message to %s sent." +msgstr "" + +#, fuzzy, php-format +msgid "New message to group %s" +msgstr "ఈ గుంపుకి వచ్చిన అంతరంగిక సందేశాలు" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %s is the sending user's nickname. +#, fuzzy, php-format +msgid "New private message from %1$s to group %2$s" +msgstr "ఈ గుంపుకి వచ్చిన అంతరంగిక సందేశాలు" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#. TRANS: %5$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s (%2$s) sent a private message to group %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%5$s\n" +"\n" +"Do not reply to this email; it will not get to them.\n" +"\n" +"With kind regards,\n" +"%6$s" +msgstr "" + msgid "Inbox" msgstr "" msgid "Private messages for this group" msgstr "ఈ గుంపుకి వచ్చిన అంతరంగిక సందేశాలు" +#, fuzzy +msgid "Private messages" +msgstr "ఈ గుంపుకి వచ్చిన అంతరంగిక సందేశాలు" + +msgid "Sometimes" +msgstr "" + +msgid "Always" +msgstr "" + +msgid "Never" +msgstr "" + +#, fuzzy +msgid "Whether to allow private messages to this group" +msgstr "ఈ గుంపుకి వచ్చిన అంతరంగిక సందేశాలు" + +msgid "Private sender" +msgstr "" + +msgid "Everyone" +msgstr "" + +msgid "Member" +msgstr "" + +msgid "Admin" +msgstr "" + +#, fuzzy +msgid "Who can send private messages to the group" +msgstr "ఈ గుంపుకి వచ్చిన అంతరంగిక సందేశాలు" + +#, fuzzy +msgid "Send a direct message to this group" +msgstr "ఈ గుంపుకి వచ్చిన అంతరంగిక సందేశాలు" + +msgid "Message" +msgstr "" + +msgid "Forced notice to private group message." +msgstr "" + +msgid "Private" +msgstr "" + msgid "Allow posting DMs to a group." msgstr "" +msgid "Only for logged-in users." +msgstr "" + +msgid "Only for members." +msgstr "" + msgid "This group has not received any private messages." msgstr "ఈ గుంపుకి అంతరంగిక సందేశాలేమీ అందలేదు." +#, php-format +msgid "%s group inbox" +msgstr "" + +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. +#, php-format +msgid "%1$s group inbox, page %2$d" +msgstr "" + #. TRANS: Instructions for user inbox page. msgid "" "This is the group inbox, which lists all incoming private messages for this " "group." msgstr "" +#, php-format +msgid "Message to %s" +msgstr "" + +#, php-format +msgid "Direct message to %s" +msgstr "" + +msgid "Available characters" +msgstr "" + msgctxt "Send button for sending notice" msgid "Send" msgstr "పంపించు" +#, fuzzy, php-format +msgid "Group %s does not allow private messages." +msgstr "ఈ గుంపుకి అంతరంగిక సందేశాలేమీ అందలేదు." + +#, php-format +msgid "User %1$s is blocked from group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not a member of group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not an administrator of group %2$s." +msgstr "" + +#, php-format +msgid "Unknown privacy settings for group %s." +msgstr "" + +#, fuzzy, php-format +msgid "User %s is not allowed to send private messages." +msgstr "ఈ గుంపుకి అంతరంగిక సందేశాలేమీ అందలేదు." + #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." msgstr[0] "" msgstr[1] "" + +msgid "No group for group message" +msgstr "" + +msgid "No sender for group message" +msgstr "" + +msgid "Only logged-in users can view private messages." +msgstr "" + +msgid "No such message." +msgstr "" + +msgid "Group not found." +msgstr "" + +msgid "Cannot read message." +msgstr "" + +msgid "No sender found." +msgstr "" + +#, php-format +msgid "Message from %1$s to group %2$s on %3$s" +msgstr "" + +#, php-format +msgid "Direct message to group %s sent." +msgstr "" diff --git a/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po index c9744d8b35..f7cf30e0b1 100644 --- a/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po @@ -9,32 +9,145 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:06:07+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:31+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Must be logged in." +msgstr "" + +#, fuzzy, php-format +msgid "User %s not allowed to send private messages." +msgstr "" +"Ang pangkat na ito ay hindi pa nakatatanggap ng anumang mga mensaheng " +"pribado." + +msgid "No such group." +msgstr "" + +msgid "Message sent" +msgstr "" + +#, php-format +msgid "Direct message to %s sent." +msgstr "" + +#, fuzzy, php-format +msgid "New message to group %s" +msgstr "Pribadong mga mensahe para sa pangkat na ito" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %s is the sending user's nickname. +#, fuzzy, php-format +msgid "New private message from %1$s to group %2$s" +msgstr "Pribadong mga mensahe para sa pangkat na ito" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#. TRANS: %5$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s (%2$s) sent a private message to group %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%5$s\n" +"\n" +"Do not reply to this email; it will not get to them.\n" +"\n" +"With kind regards,\n" +"%6$s" +msgstr "" + msgid "Inbox" msgstr "Kahong-tanggapan" msgid "Private messages for this group" msgstr "Pribadong mga mensahe para sa pangkat na ito" +#, fuzzy +msgid "Private messages" +msgstr "Pribadong mga mensahe para sa pangkat na ito" + +msgid "Sometimes" +msgstr "" + +msgid "Always" +msgstr "" + +msgid "Never" +msgstr "" + +#, fuzzy +msgid "Whether to allow private messages to this group" +msgstr "Pribadong mga mensahe para sa pangkat na ito" + +msgid "Private sender" +msgstr "" + +msgid "Everyone" +msgstr "" + +msgid "Member" +msgstr "" + +msgid "Admin" +msgstr "" + +#, fuzzy +msgid "Who can send private messages to the group" +msgstr "Pribadong mga mensahe para sa pangkat na ito" + +#, fuzzy +msgid "Send a direct message to this group" +msgstr "Pribadong mga mensahe para sa pangkat na ito" + +msgid "Message" +msgstr "" + +msgid "Forced notice to private group message." +msgstr "" + +msgid "Private" +msgstr "" + msgid "Allow posting DMs to a group." msgstr "Payagan ang pagpapaskil ng mga DM sa isang pangkat." +msgid "Only for logged-in users." +msgstr "" + +msgid "Only for members." +msgstr "" + msgid "This group has not received any private messages." msgstr "" "Ang pangkat na ito ay hindi pa nakatatanggap ng anumang mga mensaheng " "pribado." +#, php-format +msgid "%s group inbox" +msgstr "" + +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. +#, php-format +msgid "%1$s group inbox, page %2$d" +msgstr "" + #. TRANS: Instructions for user inbox page. msgid "" "This is the group inbox, which lists all incoming private messages for this " @@ -43,13 +156,81 @@ msgstr "" "Ito ang kahong-tanggapan ng pangkat, na nagtatala ng lahat ng pumapasok na " "mga mensahe para sa pangkat na ito." +#, php-format +msgid "Message to %s" +msgstr "" + +#, php-format +msgid "Direct message to %s" +msgstr "" + +msgid "Available characters" +msgstr "" + msgctxt "Send button for sending notice" msgid "Send" msgstr "Ipadala" +#, fuzzy, php-format +msgid "Group %s does not allow private messages." +msgstr "" +"Ang pangkat na ito ay hindi pa nakatatanggap ng anumang mga mensaheng " +"pribado." + +#, php-format +msgid "User %1$s is blocked from group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not a member of group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not an administrator of group %2$s." +msgstr "" + +#, php-format +msgid "Unknown privacy settings for group %s." +msgstr "" + +#, fuzzy, php-format +msgid "User %s is not allowed to send private messages." +msgstr "" +"Ang pangkat na ito ay hindi pa nakatatanggap ng anumang mga mensaheng " +"pribado." + #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." msgstr[0] "" "Napakahaba niyan. Ang pinakamalaking sukat ng mensahe ay %d panitik." msgstr[1] "Napakahaba niyan. Ang pinakamalaking sukat ay %d na mga panitik." + +msgid "No group for group message" +msgstr "" + +msgid "No sender for group message" +msgstr "" + +msgid "Only logged-in users can view private messages." +msgstr "" + +msgid "No such message." +msgstr "" + +msgid "Group not found." +msgstr "" + +msgid "Cannot read message." +msgstr "" + +msgid "No sender found." +msgstr "" + +#, php-format +msgid "Message from %1$s to group %2$s on %3$s" +msgstr "" + +#, php-format +msgid "Direct message to group %s sent." +msgstr "" diff --git a/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po index 9d973ac7cb..6e8af91a4b 100644 --- a/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po @@ -9,31 +9,142 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:51+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:31+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\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" +msgid "Must be logged in." +msgstr "" + +#, fuzzy, php-format +msgid "User %s not allowed to send private messages." +msgstr "До цієї спільноти не надходило ніяких приватних повідомлень." + +msgid "No such group." +msgstr "" + +msgid "Message sent" +msgstr "" + +#, php-format +msgid "Direct message to %s sent." +msgstr "" + +#, fuzzy, php-format +msgid "New message to group %s" +msgstr "Приватні повідомлення для цієї спільноти" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %s is the sending user's nickname. +#, fuzzy, php-format +msgid "New private message from %1$s to group %2$s" +msgstr "Приватні повідомлення для цієї спільноти" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#. TRANS: %5$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s (%2$s) sent a private message to group %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%5$s\n" +"\n" +"Do not reply to this email; it will not get to them.\n" +"\n" +"With kind regards,\n" +"%6$s" +msgstr "" + msgid "Inbox" msgstr "Вхідні" msgid "Private messages for this group" msgstr "Приватні повідомлення для цієї спільноти" +#, fuzzy +msgid "Private messages" +msgstr "Приватні повідомлення для цієї спільноти" + +msgid "Sometimes" +msgstr "" + +msgid "Always" +msgstr "" + +msgid "Never" +msgstr "" + +#, fuzzy +msgid "Whether to allow private messages to this group" +msgstr "Приватні повідомлення для цієї спільноти" + +msgid "Private sender" +msgstr "" + +msgid "Everyone" +msgstr "" + +msgid "Member" +msgstr "" + +msgid "Admin" +msgstr "" + +#, fuzzy +msgid "Who can send private messages to the group" +msgstr "Приватні повідомлення для цієї спільноти" + +#, fuzzy +msgid "Send a direct message to this group" +msgstr "Приватні повідомлення для цієї спільноти" + +msgid "Message" +msgstr "" + +msgid "Forced notice to private group message." +msgstr "" + +msgid "Private" +msgstr "" + msgid "Allow posting DMs to a group." msgstr "Дозволити надсилання «прямих» повідомлень до спільноти." +msgid "Only for logged-in users." +msgstr "" + +msgid "Only for members." +msgstr "" + msgid "This group has not received any private messages." msgstr "До цієї спільноти не надходило ніяких приватних повідомлень." +#, php-format +msgid "%s group inbox" +msgstr "" + +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. +#, php-format +msgid "%1$s group inbox, page %2$d" +msgstr "" + #. TRANS: Instructions for user inbox page. msgid "" "This is the group inbox, which lists all incoming private messages for this " @@ -41,13 +152,77 @@ msgid "" msgstr "" "Тут містяться всі вхідні повідомлення цієї спільноти, надіслані приватно." +#, php-format +msgid "Message to %s" +msgstr "" + +#, php-format +msgid "Direct message to %s" +msgstr "" + +msgid "Available characters" +msgstr "" + msgctxt "Send button for sending notice" msgid "Send" msgstr "Надіслати" +#, fuzzy, php-format +msgid "Group %s does not allow private messages." +msgstr "До цієї спільноти не надходило ніяких приватних повідомлень." + +#, php-format +msgid "User %1$s is blocked from group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not a member of group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not an administrator of group %2$s." +msgstr "" + +#, php-format +msgid "Unknown privacy settings for group %s." +msgstr "" + +#, fuzzy, php-format +msgid "User %s is not allowed to send private messages." +msgstr "До цієї спільноти не надходило ніяких приватних повідомлень." + #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." msgstr[0] "Допис надто довгий. Максимальна довжина повідомлення — %d символ." msgstr[1] "Допис надто довгий. Максимальна довжина повідомлення — %d символів." msgstr[2] "Допис надто довгий. Максимальна довжина повідомлення — %d символів." + +msgid "No group for group message" +msgstr "" + +msgid "No sender for group message" +msgstr "" + +msgid "Only logged-in users can view private messages." +msgstr "" + +msgid "No such message." +msgstr "" + +msgid "Group not found." +msgstr "" + +msgid "Cannot read message." +msgstr "" + +msgid "No sender found." +msgstr "" + +#, php-format +msgid "Message from %1$s to group %2$s on %3$s" +msgstr "" + +#, php-format +msgid "Direct message to group %s sent." +msgstr "" diff --git a/plugins/GroupPrivateMessage/locale/zh_CN/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/zh_CN/LC_MESSAGES/GroupPrivateMessage.po index 1dc76d6092..f09caf14e3 100644 --- a/plugins/GroupPrivateMessage/locale/zh_CN/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/zh_CN/LC_MESSAGES/GroupPrivateMessage.po @@ -9,42 +9,217 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:51+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:31+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgid "Must be logged in." +msgstr "" + +#, php-format +msgid "User %s not allowed to send private messages." +msgstr "" + +msgid "No such group." +msgstr "" + +msgid "Message sent" +msgstr "" + +#, php-format +msgid "Direct message to %s sent." +msgstr "" + +#, fuzzy, php-format +msgid "New message to group %s" +msgstr "此组的私人消息" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %s is the sending user's nickname. +#, fuzzy, php-format +msgid "New private message from %1$s to group %2$s" +msgstr "此组的私人消息" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#. TRANS: %5$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s (%2$s) sent a private message to group %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%5$s\n" +"\n" +"Do not reply to this email; it will not get to them.\n" +"\n" +"With kind regards,\n" +"%6$s" +msgstr "" + msgid "Inbox" msgstr "收件箱" msgid "Private messages for this group" msgstr "此组的私人消息" +#, fuzzy +msgid "Private messages" +msgstr "此组的私人消息" + +msgid "Sometimes" +msgstr "" + +msgid "Always" +msgstr "" + +msgid "Never" +msgstr "" + +#, fuzzy +msgid "Whether to allow private messages to this group" +msgstr "此组的私人消息" + +msgid "Private sender" +msgstr "" + +msgid "Everyone" +msgstr "" + +msgid "Member" +msgstr "" + +msgid "Admin" +msgstr "" + +#, fuzzy +msgid "Who can send private messages to the group" +msgstr "此组的私人消息" + +#, fuzzy +msgid "Send a direct message to this group" +msgstr "此组的私人消息" + +msgid "Message" +msgstr "" + +msgid "Forced notice to private group message." +msgstr "" + +msgid "Private" +msgstr "" + msgid "Allow posting DMs to a group." msgstr "允许向一组发布旅游景点管理系统。" +msgid "Only for logged-in users." +msgstr "" + +msgid "Only for members." +msgstr "" + msgid "This group has not received any private messages." msgstr "" +#, php-format +msgid "%s group inbox" +msgstr "" + +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. +#, php-format +msgid "%1$s group inbox, page %2$d" +msgstr "" + #. TRANS: Instructions for user inbox page. msgid "" "This is the group inbox, which lists all incoming private messages for this " "group." msgstr "" +#, php-format +msgid "Message to %s" +msgstr "" + +#, php-format +msgid "Direct message to %s" +msgstr "" + +msgid "Available characters" +msgstr "" + msgctxt "Send button for sending notice" msgid "Send" msgstr "发送" +#, php-format +msgid "Group %s does not allow private messages." +msgstr "" + +#, php-format +msgid "User %1$s is blocked from group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not a member of group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not an administrator of group %2$s." +msgstr "" + +#, php-format +msgid "Unknown privacy settings for group %s." +msgstr "" + +#, php-format +msgid "User %s is not allowed to send private messages." +msgstr "" + #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." msgstr[0] "" + +msgid "No group for group message" +msgstr "" + +msgid "No sender for group message" +msgstr "" + +msgid "Only logged-in users can view private messages." +msgstr "" + +msgid "No such message." +msgstr "" + +msgid "Group not found." +msgstr "" + +msgid "Cannot read message." +msgstr "" + +msgid "No sender found." +msgstr "" + +#, php-format +msgid "Message from %1$s to group %2$s on %3$s" +msgstr "" + +#, php-format +msgid "Direct message to group %s sent." +msgstr "" diff --git a/plugins/GroupPrivateMessage/newgroupmessage.php b/plugins/GroupPrivateMessage/newgroupmessage.php index 1ad24c4a0a..61377ba178 100644 --- a/plugins/GroupPrivateMessage/newgroupmessage.php +++ b/plugins/GroupPrivateMessage/newgroupmessage.php @@ -66,11 +66,11 @@ class NewgroupmessageAction extends Action $this->user = common_current_user(); if (empty($this->user)) { - throw new ClientException(_('Must be logged in.'), 403); + throw new ClientException(_m('Must be logged in.'), 403); } if (!$this->user->hasRight(Right::NEWMESSAGE)) { - throw new Exception(sprintf(_('User %s not allowed to send private messages.'), + throw new Exception(sprintf(_m('User %s is not allowed to send private messages.'), $this->user->nickname)); } @@ -87,13 +87,13 @@ class NewgroupmessageAction extends Action $localGroup = Local_group::staticGet('nickname', $nickname); if (empty($localGroup)) { - throw new ClientException(_('No such group'), 404); + throw new ClientException(_m('No such group.'), 404); } $this->group = User_group::staticGet('id', $localGroup->group_id); if (empty($this->group)) { - throw new ClientException(_('No such group'), 404); + throw new ClientException(_m('No such group.'), 404); } // This throws an exception on error @@ -140,12 +140,12 @@ class NewgroupmessageAction extends Action if ($this->boolean('ajax')) { $this->startHTML('text/xml;charset=utf-8'); $this->elementStart('head'); - $this->element('title', null, _('Message sent')); + $this->element('title', null, _m('Message sent')); $this->elementEnd('head'); $this->elementStart('body'); $this->element('p', array('id' => 'command_result'), - sprintf(_('Direct message to %s sent.'), + sprintf(_m('Direct message to %s sent.'), $this->group->nickname)); $this->elementEnd('body'); $this->elementEnd('html'); @@ -156,6 +156,6 @@ class NewgroupmessageAction extends Action function title() { - return sprintf(_('New message to group %s'), $this->group->nickname); + return sprintf(_m('New message to group %s'), $this->group->nickname); } } diff --git a/plugins/GroupPrivateMessage/showgroupmessage.php b/plugins/GroupPrivateMessage/showgroupmessage.php index 73293255cf..828b676548 100644 --- a/plugins/GroupPrivateMessage/showgroupmessage.php +++ b/plugins/GroupPrivateMessage/showgroupmessage.php @@ -67,7 +67,7 @@ class ShowgroupmessageAction extends Action $this->user = common_current_user(); if (empty($this->user)) { - throw new ClientException(_('Only logged-in users can view private messages.'), + throw new ClientException(_m('Only logged-in users can view private messages.'), 403); } @@ -76,23 +76,23 @@ class ShowgroupmessageAction extends Action $this->gm = Group_message::staticGet('id', $id); if (empty($this->gm)) { - throw new ClientException(_('No such message'), 404); + throw new ClientException(_m('No such message.'), 404); } $this->group = User_group::staticGet('id', $this->gm->to_group); if (empty($this->group)) { - throw new ServerException(_('Group not found.')); + throw new ServerException(_m('Group not found.')); } if (!$this->user->isMember($this->group)) { - throw new ClientException(_('Cannot read message.'), 403); + throw new ClientException(_m('Cannot read message.'), 403); } $this->sender = Profile::staticGet('id', $this->gm->from_profile); if (empty($this->sender)) { - throw new ServerException(_('No sender found.')); + throw new ServerException(_m('No sender found.')); } return true; @@ -117,7 +117,7 @@ class ShowgroupmessageAction extends Action function title() { - return sprintf(_('Message from %1$s to group %2$s on %3$s'), + return sprintf(_m('Message from %1$s to group %2$s on %3$s'), $this->sender->nickname, $this->group->nickname, common_exact_date($this->gm->created)); diff --git a/plugins/Imap/locale/Imap.pot b/plugins/Imap/locale/Imap.pot index 78d13d97d2..4c0609b3c7 100644 --- a/plugins/Imap/locale/Imap.pot +++ b/plugins/Imap/locale/Imap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Imap/locale/br/LC_MESSAGES/Imap.po b/plugins/Imap/locale/br/LC_MESSAGES/Imap.po index 44c10fe69b..7df1507d9d 100644 --- a/plugins/Imap/locale/br/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/br/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:51+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:01+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po index 5fdfd30af7..7286c732f6 100644 --- a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:51+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:01+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po index 018c6b3fec..648050007e 100644 --- a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:51+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:01+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po index c7f7ac8afa..9c0939f034 100644 --- a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:01+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po index 09c35a55f1..cb7915a6b8 100644 --- a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:01+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po index a905f3cdbe..9ae9e84547 100644 --- a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:02+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po index 71bf9c685a..2680b13d65 100644 --- a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:02+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po index 9bc3d7218c..a8f3dccf92 100644 --- a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:02+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po index ab2fbd5ab9..9d9662bcde 100644 --- a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:02+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po index ea2a916a24..3260504451 100644 --- a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:02+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po index f1d1f3135e..d711e8b121 100644 --- a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:02+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/InProcessCache/locale/InProcessCache.pot b/plugins/InProcessCache/locale/InProcessCache.pot index 75ee80a1bd..dbb3a5e5f0 100644 --- a/plugins/InProcessCache/locale/InProcessCache.pot +++ b/plugins/InProcessCache/locale/InProcessCache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po index f320e46c86..90c924d970 100644 --- a/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po index 258eef8ea8..93789f42b5 100644 --- a/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po index a6dc9d82cb..a2aaed5f46 100644 --- a/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po index e180ba38d7..470f79407f 100644 --- a/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:04+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po index 647038d85c..914a560341 100644 --- a/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:04+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po index bbae8fc68c..fa6b1a56c8 100644 --- a/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:04+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po index ce6c31ad0a..9ea217196c 100644 --- a/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:04+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po index c7d70b00ac..80aca8eb17 100644 --- a/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:04+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po index b39edab204..a4d4a3f737 100644 --- a/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:04+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InfiniteScroll/locale/InfiniteScroll.pot b/plugins/InfiniteScroll/locale/InfiniteScroll.pot index 8aac695141..ebfbbb9aee 100644 --- a/plugins/InfiniteScroll/locale/InfiniteScroll.pot +++ b/plugins/InfiniteScroll/locale/InfiniteScroll.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po index df24faf258..ddd950a31b 100644 --- a/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:02+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po index 920c8bb3dd..56c014b9ac 100644 --- a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:02+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po index 90f8bccddd..c3c76a9c89 100644 --- a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:02+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po index f66354cde8..7e14d801f2 100644 --- a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:02+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po index f546cc5fa6..764fc79108 100644 --- a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:02+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po index 48704d8a77..ea39bbedde 100644 --- a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po index 4877dfb35a..e757f6edcb 100644 --- a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po index 5743bd2e5b..9ed889537a 100644 --- a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po index c8af154413..8050ea8c13 100644 --- a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po index 48b4ad87b5..87234641cc 100644 --- a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po index cfa787a010..b9686388c1 100644 --- a/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po index 14cc282539..d7386c0453 100644 --- a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po index cfebe7ab5b..e6ef532499 100644 --- a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po index aaf3f13889..966b1a871b 100644 --- a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po index d8358ebe5e..d8c74d16f8 100644 --- a/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/Irc/IrcPlugin.php b/plugins/Irc/IrcPlugin.php index 7a53e5cbf5..7877815604 100644 --- a/plugins/Irc/IrcPlugin.php +++ b/plugins/Irc/IrcPlugin.php @@ -290,12 +290,12 @@ class IrcPlugin extends ImPlugin { * @return boolean success value */ public function sendConfirmationCode($screenname, $code, $user, $checked = false) { - $body = sprintf(_('User "%s" on %s has said that your %s screenname belongs to them. ' . + $body = sprintf(_m('User "%1$s" on %2$s has said that your %3$s screenname belongs to them. ' . 'If that\'s true, you can confirm by clicking on this URL: ' . - '%s' . + '%4$s' . ' . (If you cannot click it, copy-and-paste it into the ' . - 'address bar of your browser). If that user isn\'t you, ' . - 'or if you didn\'t request this confirmation, just ignore this message.'), + 'address bar of your browser). If that user is not you, ' . + 'or if you did not request this confirmation, just ignore this message.'), $user->nickname, common_config('site', 'name'), $this->getDisplayName(), common_local_url('confirmaddress', array('code' => $code))); if ($this->regcheck && !$checked) { diff --git a/plugins/Irc/ircmanager.php b/plugins/Irc/ircmanager.php index 6066293311..d963735251 100644 --- a/plugins/Irc/ircmanager.php +++ b/plugins/Irc/ircmanager.php @@ -244,7 +244,7 @@ class IrcManager extends ImManager { if (!$result) { common_log_db_error($confirm, 'DELETE', __FILE__); // TRANS: Server error thrown on database error canceling IM address confirmation. - $this->serverError(_('Couldn\'t delete confirmation.')); + $this->serverError(_m('Could not delete confirmation.')); return; } } diff --git a/plugins/Irc/locale/Irc.pot b/plugins/Irc/locale/Irc.pot index 5a96eae87b..b005839fa5 100644 --- a/plugins/Irc/locale/Irc.pot +++ b/plugins/Irc/locale/Irc.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -20,6 +20,16 @@ msgstr "" msgid "IRC" msgstr "" +#: IrcPlugin.php:293 +#, php-format +msgid "" +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that's true, you can confirm by clicking on this URL: %4$s . (If you cannot " +"click it, copy-and-paste it into the address bar of your browser). If that " +"user is not you, or if you did not request this confirmation, just ignore " +"this message." +msgstr "" + #: IrcPlugin.php:393 msgid "" "The IRC plugin allows users to send and receive notices over an IRC network." @@ -33,3 +43,8 @@ msgstr "" #: ircmanager.php:234 msgid "Your nickname is not registered so IRC connectivity cannot be enabled" msgstr "" + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: ircmanager.php:247 +msgid "Could not delete confirmation." +msgstr "" diff --git a/plugins/Irc/locale/fi/LC_MESSAGES/Irc.po b/plugins/Irc/locale/fi/LC_MESSAGES/Irc.po index 41a7e290d7..e8efaa5a82 100644 --- a/plugins/Irc/locale/fi/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/fi/LC_MESSAGES/Irc.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:05+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-irc\n" @@ -25,6 +25,15 @@ msgstr "" msgid "IRC" msgstr "IRC" +#, php-format +msgid "" +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that's true, you can confirm by clicking on this URL: %4$s . (If you cannot " +"click it, copy-and-paste it into the address bar of your browser). If that " +"user is not you, or if you did not request this confirmation, just ignore " +"this message." +msgstr "" + msgid "" "The IRC plugin allows users to send and receive notices over an IRC network." msgstr "" @@ -39,3 +48,7 @@ msgid "Your nickname is not registered so IRC connectivity cannot be enabled" msgstr "" "IRC-nimimerkkiäsi ei ole rekisteröity, joten IRC-yhteyttä ei voida ottaa " "käyttöön" + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +msgid "Could not delete confirmation." +msgstr "" diff --git a/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po b/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po index 82b9cb7f7b..0d259ded11 100644 --- a/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:05+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-irc\n" @@ -25,6 +25,15 @@ msgstr "" msgid "IRC" msgstr "IRC" +#, php-format +msgid "" +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that's true, you can confirm by clicking on this URL: %4$s . (If you cannot " +"click it, copy-and-paste it into the address bar of your browser). If that " +"user is not you, or if you did not request this confirmation, just ignore " +"this message." +msgstr "" + msgid "" "The IRC plugin allows users to send and receive notices over an IRC network." msgstr "" @@ -38,3 +47,7 @@ msgstr "" msgid "Your nickname is not registered so IRC connectivity cannot be enabled" msgstr "" "Votre pseudo n'est pas enregistré, la connexion IRC ne peut pas être activée" + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +msgid "Could not delete confirmation." +msgstr "" diff --git a/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po b/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po index 8138807192..2eafb12728 100644 --- a/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:54+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:05+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-irc\n" @@ -24,6 +24,15 @@ msgstr "" msgid "IRC" msgstr "IRC" +#, php-format +msgid "" +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that's true, you can confirm by clicking on this URL: %4$s . (If you cannot " +"click it, copy-and-paste it into the address bar of your browser). If that " +"user is not you, or if you did not request this confirmation, just ignore " +"this message." +msgstr "" + msgid "" "The IRC plugin allows users to send and receive notices over an IRC network." msgstr "" @@ -38,3 +47,7 @@ msgid "Your nickname is not registered so IRC connectivity cannot be enabled" msgstr "" "Tu pseudonymo non es registrate dunque le connexion a IRC non pote esser " "activate" + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +msgid "Could not delete confirmation." +msgstr "" diff --git a/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po b/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po index e857bfc653..66b66ba4cc 100644 --- a/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:54+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:05+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-irc\n" @@ -24,6 +24,20 @@ msgstr "" msgid "IRC" msgstr "IRC" +#, php-format +msgid "" +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that's true, you can confirm by clicking on this URL: %4$s . (If you cannot " +"click it, copy-and-paste it into the address bar of your browser). If that " +"user is not you, or if you did not request this confirmation, just ignore " +"this message." +msgstr "" +"Корисникот „%1$s“ на %2$s има изјавено дека Вашиот прекар на %3$s е всушност " +"негов. Ако ова е вистина, можете да потврдите стискајќи на оваа URL-адреса: %" +"4$s . (Ако не можете да ја стиснете, прекопирајте ја во адресната лента на " +"прелистувачот). Ако ова не сте Вие, или ако не ја имате побарано оваа " +"потврда, слободно занемарете ја поракава." + msgid "" "The IRC plugin allows users to send and receive notices over an IRC network." msgstr "" @@ -38,3 +52,7 @@ msgid "Your nickname is not registered so IRC connectivity cannot be enabled" msgstr "" "Вашиот прекар не е регистриран, па затоа не може да се овозможи поврзувањето " "со IRC" + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +msgid "Could not delete confirmation." +msgstr "Не можев да ја избришам потврдата." diff --git a/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po b/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po index 60df2d79bc..4ca2378caa 100644 --- a/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:54+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:05+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-irc\n" @@ -24,6 +24,20 @@ msgstr "" msgid "IRC" msgstr "IRC" +#, php-format +msgid "" +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that's true, you can confirm by clicking on this URL: %4$s . (If you cannot " +"click it, copy-and-paste it into the address bar of your browser). If that " +"user is not you, or if you did not request this confirmation, just ignore " +"this message." +msgstr "" +"Gebruiker \"%1$s\" op de site %2$s heeft aangegeven dat de schermnaam %3$s " +"van hem is. Als dat klopt, dan kunt u dit bevestigen door op deze verwijzing " +"te klikken: %4$s. Als u hier niet op kunt klikken, kopieer en plak deze " +"verwijzing naar in de adresbalk van uw webbrowser. Als u deze gebruiker niet " +"bent, of u hebt niet om deze bevestiging gevraagd, negeer dit bericht dan." + msgid "" "The IRC plugin allows users to send and receive notices over an IRC network." msgstr "" @@ -38,3 +52,7 @@ msgid "Your nickname is not registered so IRC connectivity cannot be enabled" msgstr "" "Uw gebruikersnaam is niet geregistreerd en daarom kan er geen koppeling met " "IRC worden gemaakt" + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +msgid "Could not delete confirmation." +msgstr "De bevestiging kon niet verwijderd worden." diff --git a/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po b/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po index 4db0f4de6a..c3dd74d204 100644 --- a/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:54+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:05+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-irc\n" @@ -24,6 +24,15 @@ msgstr "" msgid "IRC" msgstr "IRC" +#, php-format +msgid "" +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that's true, you can confirm by clicking on this URL: %4$s . (If you cannot " +"click it, copy-and-paste it into the address bar of your browser). If that " +"user is not you, or if you did not request this confirmation, just ignore " +"this message." +msgstr "" + msgid "" "The IRC plugin allows users to send and receive notices over an IRC network." msgstr "" @@ -37,3 +46,7 @@ msgstr "" msgid "Your nickname is not registered so IRC connectivity cannot be enabled" msgstr "" "Ditt smeknamn är inte registrerat, så IRC-anslutningar kan inte aktiveras" + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +msgid "Could not delete confirmation." +msgstr "" diff --git a/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po b/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po index a541823a69..77762151ec 100644 --- a/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:06:11+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:05+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-irc\n" @@ -24,6 +24,15 @@ msgstr "" msgid "IRC" msgstr "IRC" +#, php-format +msgid "" +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that's true, you can confirm by clicking on this URL: %4$s . (If you cannot " +"click it, copy-and-paste it into the address bar of your browser). If that " +"user is not you, or if you did not request this confirmation, just ignore " +"this message." +msgstr "" + msgid "" "The IRC plugin allows users to send and receive notices over an IRC network." msgstr "" @@ -36,3 +45,7 @@ msgstr "Hindi masudlungan ang bilang ng pagtatangka para sa %d" msgid "Your nickname is not registered so IRC connectivity cannot be enabled" msgstr "Hindi nakatala ang palayaw mo kaya mapagana ang ugnayan ng IRC" + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +msgid "Could not delete confirmation." +msgstr "" diff --git a/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po b/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po index 5b78672cff..440b6a90f5 100644 --- a/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:54+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:05+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-irc\n" @@ -25,6 +25,15 @@ msgstr "" msgid "IRC" msgstr "IRC" +#, php-format +msgid "" +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that's true, you can confirm by clicking on this URL: %4$s . (If you cannot " +"click it, copy-and-paste it into the address bar of your browser). If that " +"user is not you, or if you did not request this confirmation, just ignore " +"this message." +msgstr "" + msgid "" "The IRC plugin allows users to send and receive notices over an IRC network." msgstr "" @@ -37,3 +46,7 @@ msgstr "Не вдалося збільшити кількість спроб д msgid "Your nickname is not registered so IRC connectivity cannot be enabled" msgstr "" "Ваш псевдонім не зареєстровано і тому підключення до IRC увімкнути неможливо" + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +msgid "Could not delete confirmation." +msgstr "" diff --git a/plugins/LdapAuthentication/locale/LdapAuthentication.pot b/plugins/LdapAuthentication/locale/LdapAuthentication.pot index 31c4a6dad6..075db5eb67 100644 --- a/plugins/LdapAuthentication/locale/LdapAuthentication.pot +++ b/plugins/LdapAuthentication/locale/LdapAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po index e814cb3018..5b128af93e 100644 --- a/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:54+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:06+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po index dfba26e112..d1f649bb46 100644 --- a/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:54+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:06+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/fi/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/fi/LC_MESSAGES/LdapAuthentication.po index 92e173ae72..8631159985 100644 --- a/plugins/LdapAuthentication/locale/fi/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/fi/LC_MESSAGES/LdapAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:06+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po index d921e410b6..49a6ffe2d2 100644 --- a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:54+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:06+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/he/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/he/LC_MESSAGES/LdapAuthentication.po index 75c50596ef..7e2d0994d4 100644 --- a/plugins/LdapAuthentication/locale/he/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/he/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:54+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:06+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po index 47496c0cab..13b8b138a6 100644 --- a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:54+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:06+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po index deb5a04761..721541a8e8 100644 --- a/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:06+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po index 2cab6c1a2a..ae05162c9b 100644 --- a/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:06+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po index ddd145e85b..8e2cc930bb 100644 --- a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:06+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po index 7a1fc8c4da..c08d98117f 100644 --- a/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:06+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po index 50b1f86e8e..7c4102f699 100644 --- a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:06+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/pt/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/pt/LC_MESSAGES/LdapAuthentication.po index fc4d15ef77..d76aca929b 100644 --- a/plugins/LdapAuthentication/locale/pt/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/pt/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:06+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po index 654b9f0ea1..a2ca831312 100644 --- a/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:07+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po index e72d3aaa10..2fbc46286f 100644 --- a/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:07+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po index 6fda837a00..9c58cac94b 100644 --- a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:07+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po index 5fe52046a8..fccddf48ee 100644 --- a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:07+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po index ad29e464ec..0205bc7c29 100644 --- a/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:07+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthorization/locale/LdapAuthorization.pot b/plugins/LdapAuthorization/locale/LdapAuthorization.pot index 504889622d..fef240103c 100644 --- a/plugins/LdapAuthorization/locale/LdapAuthorization.pot +++ b/plugins/LdapAuthorization/locale/LdapAuthorization.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po index b59bd61b94..87acf7ebc5 100644 --- a/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:07+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po index a273d1bf24..bd74a61399 100644 --- a/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:08+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po index 153d01cf65..5af9d28674 100644 --- a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:08+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/he/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/he/LC_MESSAGES/LdapAuthorization.po index faf9e21c09..1572d56412 100644 --- a/plugins/LdapAuthorization/locale/he/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/he/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:08+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po index ba77aec540..db6296f2f1 100644 --- a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:08+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po index 178f533f97..984de04b71 100644 --- a/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:08+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po index 964a65f511..c18a3b9164 100644 --- a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:08+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po index 22b000a610..3514ac4973 100644 --- a/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:08+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po index 6b16ecb1f5..4f40a80933 100644 --- a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:08+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/pt/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/pt/LC_MESSAGES/LdapAuthorization.po index c795f1515d..373932c976 100644 --- a/plugins/LdapAuthorization/locale/pt/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/pt/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:08+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po index 250db5304e..797adf832b 100644 --- a/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:08+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po index 5c4f552a02..2f0258778e 100644 --- a/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:08+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po index 4156fd0a81..52d0e6f1e2 100644 --- a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:08+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po index 0bcc37fa46..c4f00170be 100644 --- a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:09+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po index 2e4609c5c1..78906ab1c2 100644 --- a/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:09+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapCommon/LdapCommon.php b/plugins/LdapCommon/LdapCommon.php index 3afcd824f9..93e1e87dc0 100644 --- a/plugins/LdapCommon/LdapCommon.php +++ b/plugins/LdapCommon/LdapCommon.php @@ -165,7 +165,7 @@ class LdapCommon function changePassword($username,$oldpassword,$newpassword) { if(! isset($this->attributes['password']) || !isset($this->password_encoding)){ - //throw new Exception(_('Sorry, changing LDAP passwords is not supported at this time')); + //throw new Exception(_m('Sorry, changing LDAP passwords is not supported at this time.')); return false; } $entry = $this->get_user($username,array('dn' => 'dn')); diff --git a/plugins/LilUrl/locale/LilUrl.pot b/plugins/LilUrl/locale/LilUrl.pot index 43904ab29e..1302a60769 100644 --- a/plugins/LilUrl/locale/LilUrl.pot +++ b/plugins/LilUrl/locale/LilUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po index c4be550d46..31d3862765 100644 --- a/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:09+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po index a92420eaad..ff2773e6e9 100644 --- a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:09+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po index 6a48a8db82..b953503763 100644 --- a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:09+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po index 3978b43441..48a5eddfdf 100644 --- a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:09+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po index 6a1fcf36f8..d50fafdad1 100644 --- a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:09+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po index 6894e04c20..6034db7791 100644 --- a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:09+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po index 6a69dcc9b1..8ca99b0700 100644 --- a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:09+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po index 3b0625ea69..4287c71537 100644 --- a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:10+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po index b0153df27a..045232ab69 100644 --- a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:10+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po index 659ad9a9fd..215dfb0ca4 100644 --- a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:10+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po index 473bc20b5d..a3795d0a89 100644 --- a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:10+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po index e9e9740ce4..362ef385bf 100644 --- a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:10+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po index bda4e5edba..d69137c56c 100644 --- a/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:10+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LinkPreview/locale/LinkPreview.pot b/plugins/LinkPreview/locale/LinkPreview.pot index 4a774ba297..f206dc1419 100644 --- a/plugins/LinkPreview/locale/LinkPreview.pot +++ b/plugins/LinkPreview/locale/LinkPreview.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -19,3 +19,7 @@ msgstr "" #: LinkPreviewPlugin.php:39 msgid "UI extensions previewing thumbnails from links." msgstr "" + +#: oembedproxyaction.php:59 +msgid "There was a problem with your session token. Try again, please." +msgstr "" diff --git a/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po index c5c292d1e0..d5dfaead20 100644 --- a/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:12+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" @@ -25,3 +25,6 @@ msgid "UI extensions previewing thumbnails from links." msgstr "" "Benutzeroberflächenerweiterung, die es erlaubt, Vorschauen für Links " "anzuzeigen." + +msgid "There was a problem with your session token. Try again, please." +msgstr "" diff --git a/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po index 0a207909ec..91242bbda3 100644 --- a/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:12+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" @@ -25,3 +25,6 @@ msgid "UI extensions previewing thumbnails from links." msgstr "" "Extensions d’interface utilisateur pour prévisualiser des vignettes depuis " "les liens." + +msgid "There was a problem with your session token. Try again, please." +msgstr "" diff --git a/plugins/LinkPreview/locale/he/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/he/LC_MESSAGES/LinkPreview.po index 4b6519e64c..e5fd0dc618 100644 --- a/plugins/LinkPreview/locale/he/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/he/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:12+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" @@ -23,3 +23,6 @@ msgstr "" msgid "UI extensions previewing thumbnails from links." msgstr "הרחבות מנשק משתמש המאפשרות צפייה בתמונות ממוזערות של קישורים." + +msgid "There was a problem with your session token. Try again, please." +msgstr "" diff --git a/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po index 7cac824c03..b9c43605cf 100644 --- a/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:12+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" @@ -25,3 +25,6 @@ msgid "UI extensions previewing thumbnails from links." msgstr "" "Extensiones del interfacie de usator pro previsualisar miniaturas de " "ligamines." + +msgid "There was a problem with your session token. Try again, please." +msgstr "" diff --git a/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po index e346105b75..82383c5dde 100644 --- a/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:12+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" @@ -24,3 +24,6 @@ msgstr "" msgid "UI extensions previewing thumbnails from links." msgstr "" "Додатоци за корисничкиот посредник што даваат преглед на минијатури од врски." + +msgid "There was a problem with your session token. Try again, please." +msgstr "Се поајви проблем со Вашиот сесиски жетон. Обидете се повторно." diff --git a/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po index a7da29d298..0cac3c13f7 100644 --- a/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:12+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" @@ -25,3 +25,8 @@ msgid "UI extensions previewing thumbnails from links." msgstr "" "Gebruikersinterfaceuitbreiding voor het weergeven van miniaturen voor " "verwijzingen." + +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, " +"alstublieft." diff --git a/plugins/LinkPreview/locale/pt/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/pt/LC_MESSAGES/LinkPreview.po index 1650007895..7e1dc2e1b7 100644 --- a/plugins/LinkPreview/locale/pt/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/pt/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:12+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" @@ -24,3 +24,6 @@ msgstr "" msgid "UI extensions previewing thumbnails from links." msgstr "" "Extensões da interface, para antevisão de miniaturas a partir de links." + +msgid "There was a problem with your session token. Try again, please." +msgstr "" diff --git a/plugins/LinkPreview/locale/ru/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/ru/LC_MESSAGES/LinkPreview.po index 8d7dde0320..14a440d0e9 100644 --- a/plugins/LinkPreview/locale/ru/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/ru/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:12+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" @@ -25,3 +25,6 @@ msgstr "" msgid "UI extensions previewing thumbnails from links." msgstr "" "Расширения пользовательского интерфейса для просмотр миниатюр из ссылок." + +msgid "There was a problem with your session token. Try again, please." +msgstr "" diff --git a/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po index 7a819c7404..0804b16f2c 100644 --- a/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:12+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" @@ -25,3 +25,6 @@ msgstr "" msgid "UI extensions previewing thumbnails from links." msgstr "" "Додаток до користувацького інтерфейсу для перегляду мініатюр з посилань." + +msgid "There was a problem with your session token. Try again, please." +msgstr "" diff --git a/plugins/LinkPreview/locale/zh_CN/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/zh_CN/LC_MESSAGES/LinkPreview.po index 5590a49dc5..1dd3931c60 100644 --- a/plugins/LinkPreview/locale/zh_CN/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/zh_CN/LC_MESSAGES/LinkPreview.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:13+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" @@ -24,3 +24,6 @@ msgstr "" msgid "UI extensions previewing thumbnails from links." msgstr "用户界面扩展的链接的缩略图预览。" + +msgid "There was a problem with your session token. Try again, please." +msgstr "" diff --git a/plugins/LinkPreview/oembedproxyaction.php b/plugins/LinkPreview/oembedproxyaction.php index bc80ee5cf9..5d76535b22 100644 --- a/plugins/LinkPreview/oembedproxyaction.php +++ b/plugins/LinkPreview/oembedproxyaction.php @@ -56,7 +56,7 @@ class OembedproxyAction extends OembedAction // We're not a general oEmbed proxy service; limit to valid sessions. $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { - $this->clientError(_('There was a problem with your session token. '. + $this->clientError(_m('There was a problem with your session token. '. 'Try again, please.')); } diff --git a/plugins/Linkback/LinkbackPlugin.php b/plugins/Linkback/LinkbackPlugin.php index 797572d7f8..c40000921c 100644 --- a/plugins/Linkback/LinkbackPlugin.php +++ b/plugins/Linkback/LinkbackPlugin.php @@ -201,7 +201,7 @@ class LinkbackPlugin extends Plugin { $profile = $this->notice->getProfile(); - $args = array('title' => sprintf(_('%1$s\'s status on %2$s'), + $args = array('title' => sprintf(_m('%1$s\'s status on %2$s'), $profile->nickname, common_exact_date($this->notice->created)), 'excerpt' => $this->notice->content, diff --git a/plugins/Linkback/locale/Linkback.pot b/plugins/Linkback/locale/Linkback.pot index 013205326a..7998f74c61 100644 --- a/plugins/Linkback/locale/Linkback.pot +++ b/plugins/Linkback/locale/Linkback.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,11 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: LinkbackPlugin.php:204 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + #: LinkbackPlugin.php:241 msgid "" "Notify blog authors when their posts have been linked in microblog notices " diff --git a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po index 0484d5ad33..3a0f434a3a 100644 --- a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:10+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po index 4caa0c7c01..42cca6b07f 100644 --- a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:10+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po index 92ea46195f..0049ceb9ce 100644 --- a/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:10+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po index 5f2ed7ca61..c1b2f31ba0 100644 --- a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:11+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po index 1d2ca71e7a..e054e6b7a1 100644 --- a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:11+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po index c38236052e..b8f8b5b7e8 100644 --- a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:11+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po index 2d60bac4f0..0fb4de6cd6 100644 --- a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:11+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=1; plural=0;\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po index d24c438973..34565b6589 100644 --- a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:11+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "Статус на %1$s на %2$s" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po index 06cb73ed67..784855a982 100644 --- a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:11+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po index 3c75cd9ae7..73981407bd 100644 --- a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:11+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "Status van %1$s op %2$s" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po index 07004772e4..e44eadf313 100644 --- a/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:11+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po index 24b52acdd0..2695774932 100644 --- a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po @@ -9,19 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:11+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po index 3f3f491ad8..60b7c3f4c4 100644 --- a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:11+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po index ce5e97ffea..e2e6f4ccad 100644 --- a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po @@ -9,19 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:11+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po index f1c50b49af..2aab30b1a7 100644 --- a/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po @@ -9,19 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:11+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=1; plural=0;\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/LogFilter/locale/LogFilter.pot b/plugins/LogFilter/locale/LogFilter.pot index ab314bd9c0..155d408b11 100644 --- a/plugins/LogFilter/locale/LogFilter.pot +++ b/plugins/LogFilter/locale/LogFilter.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po index 603ec63f79..62692fe083 100644 --- a/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:13+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po index 32163df5b9..489c90549d 100644 --- a/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:13+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po index 097c6135c7..095de4fe8c 100644 --- a/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:13+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po index 22a6644688..a851aa2433 100644 --- a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:13+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po index 1c33340912..4c535e7241 100644 --- a/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:13+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po index 680c3ed653..ac9d46f9b8 100644 --- a/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:13+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po index a16bedc79c..e3f3044106 100644 --- a/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:13+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po index 883abc7f17..d8ab85cf38 100644 --- a/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:13+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po index e127297b20..731bda3de9 100644 --- a/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:13+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po index 644f838d38..bec720e1b0 100644 --- a/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:14+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po index 6e34cfd2f6..04b099e314 100644 --- a/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:14+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/Mapstraction/locale/Mapstraction.pot b/plugins/Mapstraction/locale/Mapstraction.pot index 1b21dc8f41..72c797a0b2 100644 --- a/plugins/Mapstraction/locale/Mapstraction.pot +++ b/plugins/Mapstraction/locale/Mapstraction.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po index 45bbf4c6ee..8cebf6af38 100644 --- a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:14+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po index c4bf60002b..e4c82aebe2 100644 --- a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:15+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po index 58abd5e4b7..3b0833f3ee 100644 --- a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:15+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po index 9717377979..df1b34b309 100644 --- a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:15+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po index e1f7494289..10b6ec1ec6 100644 --- a/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:15+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po index 3a363a14cb..61c3be24ff 100644 --- a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:15+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po index 4d4ce2f8b3..09c25cee70 100644 --- a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:15+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po index c2f3da9da7..889ec36cbe 100644 --- a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:15+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po index 61d246aabb..1a0c4a53bd 100644 --- a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:15+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po index 738f77bd0c..f72b0d96a1 100644 --- a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:15+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -49,7 +49,7 @@ msgid "%1$s friends map, page %2$d" msgstr "Kaart van vrienden van %1$s, pagina %2$d" msgid "No such user." -msgstr "Deze gebruiker bestaat niet" +msgstr "Deze gebruiker bestaat niet." msgid "User has no profile." msgstr "Deze gebruiker heeft geen profiel." diff --git a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po index 62def638ac..da8a22cac8 100644 --- a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:15+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po index 16c1875d4b..414791a571 100644 --- a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:15+0000\n" "Language-Team: Tamil \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ta\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po index 9c5bb50ada..37fa88cdc5 100644 --- a/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:15+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po index fa0452da8d..ef8faa5b16 100644 --- a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:16+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po index 8750b37529..3de9cd1f80 100644 --- a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:16+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po index 621cc89298..b0f2fc853e 100644 --- a/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:16+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Memcache/locale/Memcache.pot b/plugins/Memcache/locale/Memcache.pot index 9011ec810b..1454ad40dc 100644 --- a/plugins/Memcache/locale/Memcache.pot +++ b/plugins/Memcache/locale/Memcache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po index aee2c68a54..dee09f5b7b 100644 --- a/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:16+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po index 4bec479c01..dd589352d1 100644 --- a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:16+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po index 9649406c9a..a72acf437e 100644 --- a/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:16+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po index 75bc732263..83372ca060 100644 --- a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:16+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po index 26b08d7f96..2c67c32e2c 100644 --- a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:16+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po index 58ae5f3f36..e4f490917f 100644 --- a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:16+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po index f5094b9b1c..fe2691accd 100644 --- a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:17+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po index bd98472193..043d208d58 100644 --- a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:17+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po index cde053fd03..90bdb9b8d4 100644 --- a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:17+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po index c3ee6988ca..41c8d4bd60 100644 --- a/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:17+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po index f5c383b53b..9bbc2201c4 100644 --- a/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:17+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po index 037d7594eb..259aebe519 100644 --- a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:17+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po index 4d38b2493a..9c368c39cc 100644 --- a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:17+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po index f3ebf3ce99..a15c24a8d7 100644 --- a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:17+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po index 42220cc847..0c3d239635 100644 --- a/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:17+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcached/locale/Memcached.pot b/plugins/Memcached/locale/Memcached.pot index b62f8c88e4..564ae33dbe 100644 --- a/plugins/Memcached/locale/Memcached.pot +++ b/plugins/Memcached/locale/Memcached.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po index b8b59226ee..f6a867e4a1 100644 --- a/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:18+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po index c4c1ee5109..56e6db7671 100644 --- a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:18+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po index 62af90d1dd..76bacc53e2 100644 --- a/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:18+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po index 98cd6675ca..bae6ed5af8 100644 --- a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:18+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po index a80c2d3b32..68d067eaef 100644 --- a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:18+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po index 90e1b9d35f..73c37f6ae4 100644 --- a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:18+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po index aa204f3c57..9fbffcd509 100644 --- a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:18+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po index fd68100ca3..2e3569e64a 100644 --- a/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:19+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po index a2c0ac58fb..c14692a69b 100644 --- a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:19+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po index ab26cbca14..e96fc3edab 100644 --- a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:19+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po index 92911e9a66..91ff3e609c 100644 --- a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:19+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po index be8cad385a..30d347ec9f 100644 --- a/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:19+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po index a05080ecdd..f03077c628 100644 --- a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:19+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po index 3f1681aacf..116ea8819b 100644 --- a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:19+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po index 1ce37401c7..b95fadc054 100644 --- a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:19+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po index ea41d6eb1c..e613e6f2d4 100644 --- a/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:19+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Meteor/locale/Meteor.pot b/plugins/Meteor/locale/Meteor.pot index c0d6acff3f..c1bb95b6b6 100644 --- a/plugins/Meteor/locale/Meteor.pot +++ b/plugins/Meteor/locale/Meteor.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po index 69f4051498..385a6a9745 100644 --- a/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:20+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po index df2cd36ce0..671a78733e 100644 --- a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:20+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po index 3677e49ed7..7b4ddad5b0 100644 --- a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:20+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po index 69b00fc388..3c836958e3 100644 --- a/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:20+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po index cb486e5354..7aa395cba7 100644 --- a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:20+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po index 0b87de8e02..86bdeb1331 100644 --- a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:20+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po index 0915a52a01..a160dcd1ba 100644 --- a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:20+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po index 8951b5b83a..e0ff82c728 100644 --- a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:20+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po index 138884d837..174f738e63 100644 --- a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:20+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po index 836d23318c..9facc12d9c 100644 --- a/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:21+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Minify/locale/Minify.pot b/plugins/Minify/locale/Minify.pot index 9c961b9417..4eac66e082 100644 --- a/plugins/Minify/locale/Minify.pot +++ b/plugins/Minify/locale/Minify.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Minify/locale/de/LC_MESSAGES/Minify.po b/plugins/Minify/locale/de/LC_MESSAGES/Minify.po index 3b376bcb06..2a8c9de6cc 100644 --- a/plugins/Minify/locale/de/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/de/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:21+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po index 9d1a119fad..3c338ac255 100644 --- a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:21+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po index 37ed40544e..18cf784669 100644 --- a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po index 6b1ce71a78..a8955f39d9 100644 --- a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po index ed75f93d51..7737c8c34a 100644 --- a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:22+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po index b43b3d26b6..3e0596c744 100644 --- a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po index 751237c2ee..48f1b9c890 100644 --- a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:22+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po index 3d0e5b7f46..0300e125b3 100644 --- a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:22+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po index b166a42362..a8d8577432 100644 --- a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:22+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po index 05217da639..8a92be9b68 100644 --- a/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:22+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/MobileProfile/locale/MobileProfile.pot b/plugins/MobileProfile/locale/MobileProfile.pot index e5f22ae402..d314315f20 100644 --- a/plugins/MobileProfile/locale/MobileProfile.pot +++ b/plugins/MobileProfile/locale/MobileProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/MobileProfile/locale/ar/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ar/LC_MESSAGES/MobileProfile.po index b442d30f6d..39f4b38b60 100644 --- a/plugins/MobileProfile/locale/ar/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ar/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:06:26+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:23+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po index 7ff2fa556b..6f7495fbc4 100644 --- a/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:05+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:23+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po index 47bf8d98be..02da652c26 100644 --- a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:05+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:23+0000\n" "Language-Team: Chechen \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ce\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po index 2464a26af3..50b0328372 100644 --- a/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:05+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:23+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po index 7f6484928c..58f89a3533 100644 --- a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:05+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:23+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po index 60c1dfe11a..021314f5c2 100644 --- a/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:05+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:23+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po index a727ae723d..129b590e85 100644 --- a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:05+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po index 50120c516d..50e367d598 100644 --- a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:24+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po index c2c7ea527d..dd1c79e255 100644 --- a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:24+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po index 0d636e58be..ff8d7c4f69 100644 --- a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:24+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ps/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ps/LC_MESSAGES/MobileProfile.po index 052a223520..7641ee6916 100644 --- a/plugins/MobileProfile/locale/ps/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ps/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:24+0000\n" "Language-Team: Pashto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ps\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po index 912bc7e423..1a5bcea777 100644 --- a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:24+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po index 2434cc44cd..25cc2a3bf4 100644 --- a/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:24+0000\n" "Language-Team: Tamil \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ta\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/te/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/te/LC_MESSAGES/MobileProfile.po index f93dd0acec..261184a185 100644 --- a/plugins/MobileProfile/locale/te/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/te/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:24+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po index e95fee0e35..8797d2396f 100644 --- a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:24+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po index 3c75a56e39..be5ecb59da 100644 --- a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:24+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po index f440fd4a9c..e7fd81a887 100644 --- a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:24+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/ModHelper/locale/ModHelper.pot b/plugins/ModHelper/locale/ModHelper.pot index 4eb4670b1a..37094b3e11 100644 --- a/plugins/ModHelper/locale/ModHelper.pot +++ b/plugins/ModHelper/locale/ModHelper.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po index 79ae792ef2..f31080a842 100644 --- a/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:25+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po index e5a7f47e80..50e00678ae 100644 --- a/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:25+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po index 8b25335a4b..7a3814df67 100644 --- a/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:25+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po index 1ad17008fb..805530ee42 100644 --- a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:25+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po index 1c20ef17da..516d618a03 100644 --- a/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:25+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po index bb5c9a0bdb..a64d2e6a81 100644 --- a/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:25+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po index 1ed29519b0..158c5c74f7 100644 --- a/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:25+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po index dbe123c7d2..875b0007b4 100644 --- a/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:07+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:25+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po index 7bdb8ffa00..5934310762 100644 --- a/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:07+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:25+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po index f1ab8eca3e..69f99d9d51 100644 --- a/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:07+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:25+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModPlus/locale/ModPlus.pot b/plugins/ModPlus/locale/ModPlus.pot index 954abd5239..ef905e6cba 100644 --- a/plugins/ModPlus/locale/ModPlus.pot +++ b/plugins/ModPlus/locale/ModPlus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,10 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: remoteprofileaction.php:18 +msgid "User has no profile." +msgstr "" + #: remoteprofileaction.php:51 #, php-format msgid "%s on %s" diff --git a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po index 6545af0b29..00fe4a72d8 100644 --- a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po @@ -9,18 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:07+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:26+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "User has no profile." +msgstr "" + #, php-format msgid "%s on %s" msgstr "%s auf %s" diff --git a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po index abd705166a..67dd0f32e3 100644 --- a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po @@ -10,18 +10,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:07+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:26+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgid "User has no profile." +msgstr "" + #, php-format msgid "%s on %s" msgstr "%s sur %s" diff --git a/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po index 8a9138b5b0..1ecc8ab1ff 100644 --- a/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po @@ -9,18 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:07+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:26+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "User has no profile." +msgstr "" + #, php-format msgid "%s on %s" msgstr "%s in %s" diff --git a/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po index 91207da60f..a3636c48f8 100644 --- a/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po @@ -9,18 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:07+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:26+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +msgid "User has no profile." +msgstr "Корисникот нема профил." + #, php-format msgid "%s on %s" msgstr "%s на %s" diff --git a/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po index cc6439ea36..c4f0d11836 100644 --- a/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po @@ -10,18 +10,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:07+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:26+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "User has no profile." +msgstr "Deze gebruiker heeft geen profiel." + #, php-format msgid "%s on %s" msgstr "%s op %s" diff --git a/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po index d68df3992c..f05bf6dc8e 100644 --- a/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po @@ -9,19 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:07+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:26+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-modplus\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" +msgid "User has no profile." +msgstr "" + #, php-format msgid "%s on %s" msgstr "%s на %s" diff --git a/plugins/ModPlus/remoteprofileaction.php b/plugins/ModPlus/remoteprofileaction.php index caa5e6fbf3..4822fc4248 100644 --- a/plugins/ModPlus/remoteprofileaction.php +++ b/plugins/ModPlus/remoteprofileaction.php @@ -15,7 +15,7 @@ class RemoteProfileAction extends ShowstreamAction $this->profile = Profile::staticGet('id', $id); if (!$this->profile) { - $this->serverError(_('User has no profile.')); + $this->serverError(_m('User has no profile.')); return false; } diff --git a/plugins/Mollom/MollomPlugin.php b/plugins/Mollom/MollomPlugin.php index 4c82c481ae..444a82adba 100644 --- a/plugins/Mollom/MollomPlugin.php +++ b/plugins/Mollom/MollomPlugin.php @@ -86,7 +86,7 @@ class MollomPlugin extends Plugin ); $response = $this->mollom('mollom.checkContent', $data); if ($response['spam'] == MOLLOM_ANALYSIS_SPAM) { - throw new ClientException(_("Spam Detected"), 400); + throw new ClientException(_m("Spam Detected."), 400); } if ($response['spam'] == MOLLOM_ANALYSIS_UNSURE) { //if unsure, let through diff --git a/plugins/Mollom/locale/Mollom.pot b/plugins/Mollom/locale/Mollom.pot new file mode 100644 index 0000000000..1a28b825d6 --- /dev/null +++ b/plugins/Mollom/locale/Mollom.pot @@ -0,0 +1,21 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: MollomPlugin.php:89 +msgid "Spam Detected." +msgstr "" diff --git a/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po new file mode 100644 index 0000000000..2df94f14a1 --- /dev/null +++ b/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po @@ -0,0 +1,25 @@ +# Translation of StatusNet - Mollom to Macedonian (Македонски) +# Exported from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Mollom\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:27+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-01 21:06:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-mollom\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +msgid "Spam Detected." +msgstr "Утврден е спам." diff --git a/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po new file mode 100644 index 0000000000..2fa3d540f5 --- /dev/null +++ b/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po @@ -0,0 +1,25 @@ +# Translation of StatusNet - Mollom to Dutch (Nederlands) +# Exported from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Mollom\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:27+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-01 21:06:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-mollom\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Spam Detected." +msgstr "Spam gedetecteerd." diff --git a/plugins/Msn/locale/Msn.pot b/plugins/Msn/locale/Msn.pot index 775d771286..0192142490 100644 --- a/plugins/Msn/locale/Msn.pot +++ b/plugins/Msn/locale/Msn.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Msn/locale/br/LC_MESSAGES/Msn.po b/plugins/Msn/locale/br/LC_MESSAGES/Msn.po index 67775a66d2..77649cc2bd 100644 --- a/plugins/Msn/locale/br/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/br/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:27+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/el/LC_MESSAGES/Msn.po b/plugins/Msn/locale/el/LC_MESSAGES/Msn.po index e8a708e233..ef0f198e24 100644 --- a/plugins/Msn/locale/el/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/el/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:27+0000\n" "Language-Team: Greek \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: el\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po b/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po index ceb6d36e37..e04fea8b0e 100644 --- a/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:27+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po index 1650c568f5..322caca3b9 100644 --- a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po b/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po index 483e7752aa..8fe7e2fb22 100644 --- a/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po b/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po index 51bb78d362..a0c3e5f3d4 100644 --- a/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/pt/LC_MESSAGES/Msn.po b/plugins/Msn/locale/pt/LC_MESSAGES/Msn.po index ea7e5719d8..31d65723ef 100644 --- a/plugins/Msn/locale/pt/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/pt/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:28+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po b/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po index d8edf3a616..c6f8d5b412 100644 --- a/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:28+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po b/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po index 5bdfa957a0..ce4f39e828 100644 --- a/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:06:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:28+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po b/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po index 6a26fa920e..6d92c40db8 100644 --- a/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:28+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/NewMenu/locale/ar/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/ar/LC_MESSAGES/NewMenu.po index 41e5fc0d88..7a1a053984 100644 --- a/plugins/NewMenu/locale/ar/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/ar/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:09+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:30+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/br/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/br/LC_MESSAGES/NewMenu.po index fe661a03d7..cc7a75dbbd 100644 --- a/plugins/NewMenu/locale/br/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/br/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:09+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:30+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/de/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/de/LC_MESSAGES/NewMenu.po index 5f7b32da1f..fd7fdc54e9 100644 --- a/plugins/NewMenu/locale/de/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/de/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:09+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:30+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/ia/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/ia/LC_MESSAGES/NewMenu.po index 5379e9a424..6e58242318 100644 --- a/plugins/NewMenu/locale/ia/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/ia/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:09+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:30+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/mk/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/mk/LC_MESSAGES/NewMenu.po index 4b1b47c6bc..821f34ab70 100644 --- a/plugins/NewMenu/locale/mk/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/mk/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:09+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:30+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/nl/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/nl/LC_MESSAGES/NewMenu.po index b1c7cf4913..1fd10a14d2 100644 --- a/plugins/NewMenu/locale/nl/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/nl/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:30+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" @@ -34,7 +34,7 @@ msgid "Your profile" msgstr "Uw profiel" msgid "Public" -msgstr "Publiek" +msgstr "Openbaar" msgid "Everyone on this site" msgstr "Iedereen binnen deze site" diff --git a/plugins/NewMenu/locale/te/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/te/LC_MESSAGES/NewMenu.po index b7f813c3fe..41ca7d8a8e 100644 --- a/plugins/NewMenu/locale/te/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/te/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:30+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/uk/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/uk/LC_MESSAGES/NewMenu.po index 1ec1240254..f367dbc424 100644 --- a/plugins/NewMenu/locale/uk/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/uk/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:30+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/zh_CN/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/zh_CN/LC_MESSAGES/NewMenu.po index ced03ff4f3..74270b71a6 100644 --- a/plugins/NewMenu/locale/zh_CN/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/zh_CN/LC_MESSAGES/NewMenu.po @@ -10,13 +10,13 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:30+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NoticeTitle/locale/NoticeTitle.pot b/plugins/NoticeTitle/locale/NoticeTitle.pot index 47446bab8e..a4c336cbf4 100644 --- a/plugins/NoticeTitle/locale/NoticeTitle.pot +++ b/plugins/NoticeTitle/locale/NoticeTitle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po index ad8fcf7b33..7dc8bed770 100644 --- a/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:31+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po index 49d5c48155..79c8016e6f 100644 --- a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:31+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po index a5273e5d10..dd7504ad33 100644 --- a/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:31+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po index 71903d452e..9979e5cd9a 100644 --- a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:31+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po index b96e3d3d49..12e60dc4a4 100644 --- a/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:31+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po index e958165796..d9edac3cab 100644 --- a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:31+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po index ab461b42cc..03478dbb76 100644 --- a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:31+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po index 334758d0e8..22237315ba 100644 --- a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:32+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po index 50f736c384..7db8943e60 100644 --- a/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:31+0000\n" "Language-Team: Nepali \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ne\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po index ecae6a2024..ee86503638 100644 --- a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:31+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/pl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/pl/LC_MESSAGES/NoticeTitle.po index 9f8f29edea..fe24706c24 100644 --- a/plugins/NoticeTitle/locale/pl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/pl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:32+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/pt/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/pt/LC_MESSAGES/NoticeTitle.po index 6ed3c55591..abb4b9e1ee 100644 --- a/plugins/NoticeTitle/locale/pt/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/pt/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:32+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po index 0d3feb0416..226308facc 100644 --- a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:32+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po index b6c05ccc8c..30b2cf28da 100644 --- a/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:32+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po index cd4a9ad4fe..981e43ed54 100644 --- a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:32+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po index 291e0e0694..4787cce415 100644 --- a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:32+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po index 8773f709a2..72cfdc914b 100644 --- a/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:32+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/OStatus/actions/usersalmon.php b/plugins/OStatus/actions/usersalmon.php index 76125553cf..f5a93183e5 100644 --- a/plugins/OStatus/actions/usersalmon.php +++ b/plugins/OStatus/actions/usersalmon.php @@ -157,7 +157,7 @@ class UsersalmonAction extends SalmonAction if (!empty($old)) { // TRANS: Client exception. - throw new ClientException(_('This is already a favorite.')); + throw new ClientException(_m('This is already a favorite.')); } if (!Fave::addNew($profile, $notice)) { @@ -179,7 +179,7 @@ class UsersalmonAction extends SalmonAction 'notice_id' => $notice->id)); if (empty($fave)) { // TRANS: Client exception. - throw new ClientException(_('Notice wasn\'t favorited!')); + throw new ClientException(_m('Notice was not favorited!')); } $fave->delete(); diff --git a/plugins/OStatus/locale/OStatus.pot b/plugins/OStatus/locale/OStatus.pot index f73f44775c..956db2d551 100644 --- a/plugins/OStatus/locale/OStatus.pot +++ b/plugins/OStatus/locale/OStatus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -22,94 +22,94 @@ msgstr "" #. TRANS: Link description for link to subscribe to a remote user. #. TRANS: Link text for a user to subscribe to an OStatus user. -#: OStatusPlugin.php:223 OStatusPlugin.php:933 +#: OStatusPlugin.php:225 OStatusPlugin.php:935 msgid "Subscribe" msgstr "" #. TRANS: Link description for link to join a remote group. -#: OStatusPlugin.php:242 OStatusPlugin.php:651 actions/ostatussub.php:109 +#: OStatusPlugin.php:244 OStatusPlugin.php:653 actions/ostatussub.php:109 msgid "Join" msgstr "" #. TRANSLATE: %s is a domain. -#: OStatusPlugin.php:455 +#: OStatusPlugin.php:457 #, php-format msgid "Sent from %s via OStatus" msgstr "" #. TRANS: Exception. -#: OStatusPlugin.php:527 +#: OStatusPlugin.php:529 msgid "Could not set up remote subscription." msgstr "" -#: OStatusPlugin.php:601 +#: OStatusPlugin.php:603 msgid "Unfollow" msgstr "" #. TRANS: Success message for unsubscribe from user attempt through OStatus. #. TRANS: %1$s is the unsubscriber's name, %2$s is the unsubscribed user's name. -#: OStatusPlugin.php:604 +#: OStatusPlugin.php:606 #, php-format msgid "%1$s stopped following %2$s." msgstr "" -#: OStatusPlugin.php:632 +#: OStatusPlugin.php:634 msgid "Could not set up remote group membership." msgstr "" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: OStatusPlugin.php:654 +#: OStatusPlugin.php:656 #, php-format msgid "%1$s has joined group %2$s." msgstr "" #. TRANS: Exception. -#: OStatusPlugin.php:663 +#: OStatusPlugin.php:665 msgid "Failed joining remote group." msgstr "" -#: OStatusPlugin.php:703 +#: OStatusPlugin.php:705 msgid "Leave" msgstr "" #. TRANS: Success message for unsubscribe from group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name. -#: OStatusPlugin.php:706 +#: OStatusPlugin.php:708 #, php-format msgid "%1$s has left group %2$s." msgstr "" -#: OStatusPlugin.php:781 +#: OStatusPlugin.php:783 msgid "Disfavor" msgstr "" #. TRANS: Success message for remove a favorite notice through OStatus. #. TRANS: %1$s is the unfavoring user's name, %2$s is URI to the no longer favored notice. -#: OStatusPlugin.php:784 +#: OStatusPlugin.php:786 #, php-format msgid "%1$s marked notice %2$s as no longer a favorite." msgstr "" #. TRANS: Link text for link to remote subscribe. -#: OStatusPlugin.php:860 +#: OStatusPlugin.php:862 msgid "Remote" msgstr "" #. TRANS: Title for activity. -#: OStatusPlugin.php:900 +#: OStatusPlugin.php:902 msgid "Profile update" msgstr "" #. TRANS: Ping text for remote profile update through OStatus. #. TRANS: %s is user that updated their profile. -#: OStatusPlugin.php:903 +#: OStatusPlugin.php:905 #, php-format msgid "%s has updated their profile page." msgstr "" #. TRANS: Plugin description. -#: OStatusPlugin.php:948 +#: OStatusPlugin.php:950 msgid "" "Follow people across social networks that implement OStatus." @@ -348,11 +348,21 @@ msgstr "" msgid "In reply to a notice not by this user and not mentioning this user." msgstr "" +#. TRANS: Client exception. +#: actions/usersalmon.php:160 +msgid "This is already a favorite." +msgstr "" + #. TRANS: Client exception. #: actions/usersalmon.php:165 msgid "Could not save new favorite." msgstr "" +#. TRANS: Client exception. +#: actions/usersalmon.php:182 +msgid "Notice was not favorited!" +msgstr "" + #. TRANS: Client exception. #: actions/usersalmon.php:197 msgid "Can't favorite/unfavorite without an object." diff --git a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po index 9491ecc71f..811560bd89 100644 --- a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:06:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:52+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -311,10 +311,19 @@ msgstr "" "In einer Antowrt auf eine Nachricht, die nicht von diesem Benutzer stammt " "und diesen Benutzer nicht erwähnt." +#. TRANS: Client exception. +#, fuzzy +msgid "This is already a favorite." +msgstr "Dieses Ziel versteht keine Favoriten." + #. TRANS: Client exception. msgid "Could not save new favorite." msgstr "Neuer Favorit konnte nicht gespeichert werden." +#. TRANS: Client exception. +msgid "Notice was not favorited!" +msgstr "" + #. TRANS: Client exception. msgid "Can't favorite/unfavorite without an object." msgstr "Kann nicht ohne Objekt (ent)favorisieren." diff --git a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po index 7a93a42c87..437381f5d4 100644 --- a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:06:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:52+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -323,10 +323,19 @@ msgstr "" "En réponse à un avis non émis par cet utilisateur et ne mentionnant pas cet " "utilisateur." +#. TRANS: Client exception. +#, fuzzy +msgid "This is already a favorite." +msgstr "Cette cible ne reconnaît pas les indications de mise en favoris." + #. TRANS: Client exception. msgid "Could not save new favorite." msgstr "Impossible de sauvegarder le nouveau favori." +#. TRANS: Client exception. +msgid "Notice was not favorited!" +msgstr "" + #. TRANS: Client exception. msgid "Can't favorite/unfavorite without an object." msgstr "Impossible de mettre en favoris ou retirer des favoris sans un objet." diff --git a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po index 364bfef385..1b247ab0bd 100644 --- a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:06:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:52+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -310,10 +310,19 @@ msgstr "" "In responsa a un nota non scribite per iste usator e que non mentiona iste " "usator." +#. TRANS: Client exception. +#, fuzzy +msgid "This is already a favorite." +msgstr "Iste destination non comprende le addition de favorites." + #. TRANS: Client exception. msgid "Could not save new favorite." msgstr "Non poteva salveguardar le nove favorite." +#. TRANS: Client exception. +msgid "Notice was not favorited!" +msgstr "" + #. TRANS: Client exception. msgid "Can't favorite/unfavorite without an object." msgstr "Non pote favorir/disfavorir sin objecto." diff --git a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po index 906603c8a7..c24f0ca7ba 100644 --- a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:06:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:52+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -307,10 +307,18 @@ msgid "In reply to a notice not by this user and not mentioning this user." msgstr "" "Како одговор на забелешка која не е од овој корисник и не го споменува." +#. TRANS: Client exception. +msgid "This is already a favorite." +msgstr "Ова веќе Ви е бендисано." + #. TRANS: Client exception. msgid "Could not save new favorite." msgstr "Не можам да го зачувам новобендисаното." +#. TRANS: Client exception. +msgid "Notice was not favorited!" +msgstr "Забелешката не е бендисана!" + #. TRANS: Client exception. msgid "Can't favorite/unfavorite without an object." msgstr "Не можам да означам како бендисано или да тргнам бендисано без објект." diff --git a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po index 3cfad86e0d..cf490b4653 100644 --- a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:06:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:52+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -191,7 +191,7 @@ msgid "Unexpected unsubscribe request for %s." msgstr "Onverwacht verzoek om abonnement op te hebben voor %s." msgid "No such user." -msgstr "Onbekende gebruiker." +msgstr "Deze gebruiker bestaat niet." #. TRANS: Field label for a field that takes an OStatus user address. msgid "Subscribe to" @@ -319,10 +319,18 @@ msgstr "" "In antwoord op een mededeling niet door deze gebruiker en niet over of aan " "deze gebruiker." +#. TRANS: Client exception. +msgid "This is already a favorite." +msgstr "Deze mededeling staat al in uw favorietenlijst." + #. TRANS: Client exception. msgid "Could not save new favorite." msgstr "Het was niet mogelijk de nieuwe favoriet op te slaan." +#. TRANS: Client exception. +msgid "Notice was not favorited!" +msgstr "De mededeling is niet op de favorietenlijst geplaatst!" + #. TRANS: Client exception. msgid "Can't favorite/unfavorite without an object." msgstr "" diff --git a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po index 3da3356bd1..69b6c162a4 100644 --- a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:06:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:53+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -313,10 +313,19 @@ msgstr "" "У відповідь на допис іншого користувача, а даний користувач у ньому навіть " "не згадується." +#. TRANS: Client exception. +#, fuzzy +msgid "This is already a favorite." +msgstr "Ціль не розуміє, що таке «додати до обраних»." + #. TRANS: Client exception. msgid "Could not save new favorite." msgstr "Не вдалося зберегти як новий обраний допис." +#. TRANS: Client exception. +msgid "Notice was not favorited!" +msgstr "" + #. TRANS: Client exception. msgid "Can't favorite/unfavorite without an object." msgstr "" diff --git a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot index ea6333ad71..72229e8875 100644 --- a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot +++ b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po index af420f8193..ffed651659 100644 --- a/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po index db6f29b19c..8d62eeeb81 100644 --- a/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po index 9e9dc9fe6b..da1c58c784 100644 --- a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po index e01229b19a..07ad755146 100644 --- a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po index 4ee1f6a526..3c303f97ef 100644 --- a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po index 445d7e1ea7..b0f6e3914e 100644 --- a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po index c498118112..c9dfca28f8 100644 --- a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po index 8ad6df5a5d..db13fc5173 100644 --- a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:12+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po index 11cce7c1c6..480d2472bc 100644 --- a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:12+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po index be884813d2..d05977c25b 100644 --- a/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:12+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po index a386be5dbc..a522434180 100644 --- a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:12+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po index 6615a6a902..57149a7dc8 100644 --- a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:12+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po index 568cf193c8..f00c6870df 100644 --- a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:12+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenID/finishaddopenid.php b/plugins/OpenID/finishaddopenid.php index 6eb2f2d206..c442aac989 100644 --- a/plugins/OpenID/finishaddopenid.php +++ b/plugins/OpenID/finishaddopenid.php @@ -64,7 +64,7 @@ class FinishaddopenidAction extends Action { parent::handle($args); if (!common_logged_in()) { - // TRANS: Client error message + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_m('Not logged in.')); } else { $this->tryLogin(); diff --git a/plugins/OpenID/finishopenidlogin.php b/plugins/OpenID/finishopenidlogin.php index 6d2c5f31f0..bc93bc21a6 100644 --- a/plugins/OpenID/finishopenidlogin.php +++ b/plugins/OpenID/finishopenidlogin.php @@ -125,12 +125,12 @@ class FinishopenidloginAction extends Action $this->elementStart('li'); $this->input('newname', _m('New nickname'), ($this->username) ? $this->username : '', - _m('1-64 lowercase letters or numbers, no punctuation or spaces')); + _m('1-64 lowercase letters or numbers, no punctuation or spaces.')); $this->elementEnd('li'); $this->elementStart('li'); - $this->input('email', _('Email'), $this->getEmail(), - _('Used only for updates, announcements, '. - 'and password recovery')); + $this->input('email', _m('Email'), $this->getEmail(), + _m('Used only for updates, announcements, '. + 'and password recovery.')); $this->elementEnd('li'); // Hook point for captcha etc @@ -146,7 +146,7 @@ class FinishopenidloginAction extends Action 'class' => 'checkbox')); // TRANS: OpenID plugin link text. // TRANS: %s is a link to a licese with the license name as link text. - $message = _('My text and files are available under %s ' . + $message = _m('My text and files are available under %s ' . 'except this private data: password, ' . 'email address, IM address, and phone number.'); $link = '\n" "Language-Team: LANGUAGE \n" @@ -188,7 +188,24 @@ msgid "New nickname" msgstr "" #: finishopenidlogin.php:128 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "" + +#: finishopenidlogin.php:131 +msgid "Email" +msgstr "" + +#: finishopenidlogin.php:132 +msgid "Used only for updates, announcements, and password recovery." +msgstr "" + +#. TRANS: OpenID plugin link text. +#. TRANS: %s is a link to a licese with the license name as link text. +#: finishopenidlogin.php:149 +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" #. TRANS: Button label in form in which to create a new user on the site for an OpenID. @@ -418,10 +435,14 @@ msgid "" msgstr "" #: openidadminpanel.php:278 -msgid "Save OpenID settings" +msgid "Save" msgstr "" -#. TRANS: Client error message +#: openidadminpanel.php:278 +msgid "Save OpenID settings." +msgstr "" + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. #: finishaddopenid.php:68 msgid "Not logged in." msgstr "" diff --git a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po index fe0444adb4..33ee14feca 100644 --- a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:18+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:15:51+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -164,7 +164,21 @@ msgstr "أنشئ مستخدمًا جديدًا بهذا الاسم المستع msgid "New nickname" msgstr "الاسم المستعار الجديد" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "" + +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery." +msgstr "" + +#. TRANS: OpenID plugin link text. +#. TRANS: %s is a link to a licese with the license name as link text. +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" #. TRANS: Button label in form in which to create a new user on the site for an OpenID. @@ -351,10 +365,14 @@ msgid "" "authentication for all users!" msgstr "" -msgid "Save OpenID settings" +msgid "Save" msgstr "" -#. TRANS: Client error message +#, fuzzy +msgid "Save OpenID settings." +msgstr "إعدادات الهوية المفتوحة" + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "لست والجًا." diff --git a/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po index 4490cae1bf..80f7a864e1 100644 --- a/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:18+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:15:51+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -162,7 +162,21 @@ msgstr "Krouiñ un implijer nevez gant al lesanv-se." msgid "New nickname" msgstr "Lesanv nevez" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "" + +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery." +msgstr "" + +#. TRANS: OpenID plugin link text. +#. TRANS: %s is a link to a licese with the license name as link text. +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" #. TRANS: Button label in form in which to create a new user on the site for an OpenID. @@ -348,10 +362,14 @@ msgid "" "authentication for all users!" msgstr "" -msgid "Save OpenID settings" +msgid "Save" msgstr "" -#. TRANS: Client error message +#, fuzzy +msgid "Save OpenID settings." +msgstr "Arventenn OpenID" + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Nann-kevreet." diff --git a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po index 71b9430dfb..16ce082dba 100644 --- a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:18+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:15:51+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -169,7 +169,21 @@ msgstr "Crea un usuari nou amb aquest sobrenom." msgid "New nickname" msgstr "Nou sobrenom" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "" + +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery." +msgstr "" + +#. TRANS: OpenID plugin link text. +#. TRANS: %s is a link to a licese with the license name as link text. +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" #. TRANS: Button label in form in which to create a new user on the site for an OpenID. @@ -366,10 +380,14 @@ msgid "" "authentication for all users!" msgstr "" -msgid "Save OpenID settings" +msgid "Save" +msgstr "" + +#, fuzzy +msgid "Save OpenID settings." msgstr "Desa els paràmetres de l'OpenID" -#. TRANS: Client error message +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "No s'ha iniciat una sessió." diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po index 1e89e112e6..fba3a1757f 100644 --- a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:18+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:15:51+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -176,9 +176,24 @@ msgstr "Neues Benutzerkonto mit diesem Benutzernamen erstellen." msgid "New nickname" msgstr "Neuer Benutzername" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 Kleinbuchstaben oder Zahlen, keine Satz- oder Leerzeichen" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery." +msgstr "" + +#. TRANS: OpenID plugin link text. +#. TRANS: %s is a link to a licese with the license name as link text. +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" + #. TRANS: Button label in form in which to create a new user on the site for an OpenID. msgctxt "BUTTON" msgid "Create" @@ -383,10 +398,14 @@ msgstr "" "Von allen Benutzern OpenID-Anmeldung verlangen. Warnung: deaktiviert " "Passwort-Authentifizierung aller Benutzer!" -msgid "Save OpenID settings" +msgid "Save" +msgstr "" + +#, fuzzy +msgid "Save OpenID settings." msgstr "OpenId-Einstellungen speichern" -#. TRANS: Client error message +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Nicht angemeldet." diff --git a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po index 41d2567076..5e10c8b80f 100644 --- a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:18+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:15:51+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -173,9 +173,24 @@ msgstr "Créer un nouvel utilisateur avec ce pseudonyme." msgid "New nickname" msgstr "Nouveau pseudonyme" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery." +msgstr "" + +#. TRANS: OpenID plugin link text. +#. TRANS: %s is a link to a licese with the license name as link text. +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" + #. TRANS: Button label in form in which to create a new user on the site for an OpenID. msgctxt "BUTTON" msgid "Create" @@ -385,10 +400,14 @@ msgstr "" "cela désactive l’authentification par mot de passe pour tous les " "utilisateurs !" -msgid "Save OpenID settings" +msgid "Save" +msgstr "" + +#, fuzzy +msgid "Save OpenID settings." msgstr "Sauvegarder les paramètres OpenID" -#. TRANS: Client error message +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Non connecté." diff --git a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po index 38c637aec4..22ddd1655e 100644 --- a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:18+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:15:51+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -168,9 +168,24 @@ msgstr "Crear un nove usator con iste pseudonymo." msgid "New nickname" msgstr "Nove pseudonymo" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 minusculas o numeros, sin punctuation o spatios" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery." +msgstr "" + +#. TRANS: OpenID plugin link text. +#. TRANS: %s is a link to a licese with the license name as link text. +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" + #. TRANS: Button label in form in which to create a new user on the site for an OpenID. msgctxt "BUTTON" msgid "Create" @@ -376,10 +391,14 @@ msgstr "" "Requirer que tote le usatores aperi session via OpenID. Aviso: disactiva le " "authentication per contrasigno pro tote le usatores!" -msgid "Save OpenID settings" +msgid "Save" +msgstr "" + +#, fuzzy +msgid "Save OpenID settings." msgstr "Salveguardar configurationes de OpenID" -#. TRANS: Client error message +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Tu non ha aperite un session." diff --git a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po index ee808cbbd3..b9b1842baa 100644 --- a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:19+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:15:51+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -167,8 +167,24 @@ msgstr "Создај нов корисник со овој прекар." msgid "New nickname" msgstr "Нов прекар" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 мали букви или бројки, без интерпункциски знаци и празни места" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "1-64 мали букви или бројки, без интерпункциски знаци и празни места." + +msgid "Email" +msgstr "Е-пошта" + +msgid "Used only for updates, announcements, and password recovery." +msgstr "Се користи само за подновувања, објави и повраќање на лозинка." + +#. TRANS: OpenID plugin link text. +#. TRANS: %s is a link to a licese with the license name as link text. +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" +"Мојот текст и податотеки се достапни под %s, освен следниве приватни " +"податоци: лозинка, е-пошта, НП-адреса и телефонски број." #. TRANS: Button label in form in which to create a new user on the site for an OpenID. msgctxt "BUTTON" @@ -372,10 +388,13 @@ msgstr "" "Барај од сите корисници да се најавуваат преку OpenID. ПРЕДУПРЕДУВАЊЕ: ова " "ја оневозможува потврдата на лозинка за сите корисници!" -msgid "Save OpenID settings" -msgstr "Зачувај нагодувања за OpenID" +msgid "Save" +msgstr "Зачувај" -#. TRANS: Client error message +msgid "Save OpenID settings." +msgstr "Зачувај нагодувања за OpenID." + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Не сте најавени." diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po index 5045c813f5..272f5e2083 100644 --- a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po @@ -10,16 +10,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:19+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:15:52+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-06 02:18:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -138,7 +138,9 @@ msgstr "U bent al aangemeld." #. TRANS: Message given when there is a problem with the user's session token. msgid "There was a problem with your session token. Try again, please." -msgstr "Er was een probleem met uw sessietoken. Probeer het opnieuw." +msgstr "" +"Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, " +"alstublieft." #. TRANS: Message given if user does not agree with the site's license. msgid "You can't register if you don't agree to the license." @@ -173,8 +175,24 @@ msgstr "Nieuwe gebruiker met deze naam aanmaken." msgid "New nickname" msgstr "Nieuwe gebruiker" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 kleine letters of getallen; geen leestekens of spaties" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties." + +msgid "Email" +msgstr "E-mail" + +msgid "Used only for updates, announcements, and password recovery." +msgstr "Alleen gebruikt voor updates, aankondigingen en wachtwoordherstel." + +#. TRANS: OpenID plugin link text. +#. TRANS: %s is a link to a licese with the license name as link text. +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" +"Mijn teksten en bestanden zijn beschikbaar onder %s, behalve de volgende " +"privégegevens: wachtwoord, e-mailadres, IM-adres, telefoonnummer." #. TRANS: Button label in form in which to create a new user on the site for an OpenID. msgctxt "BUTTON" @@ -379,10 +397,13 @@ msgstr "" "instelling wordt gebruikt, kan geen enkele gebruiker met een wachtwoord " "aanmelden!" -msgid "Save OpenID settings" -msgstr "OpenID-instellingen opslaan" +msgid "Save" +msgstr "Opslaan" -#. TRANS: Client error message +msgid "Save OpenID settings." +msgstr "OpenID-instellingen opslaan." + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Niet aangemeld." diff --git a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po index 1c31849412..d80a9949b5 100644 --- a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:19+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:15:52+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -171,10 +171,25 @@ msgstr "Lumikha ng isang bagong tagagamit na may ganitong palayaw." msgid "New nickname" msgstr "Bagong palayaw" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" "1 hanggang 64 maliliit na mga titik o mga bilang, walang bantas o mga patlang" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery." +msgstr "" + +#. TRANS: OpenID plugin link text. +#. TRANS: %s is a link to a licese with the license name as link text. +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" + #. TRANS: Button label in form in which to create a new user on the site for an OpenID. msgctxt "BUTTON" msgid "Create" @@ -328,7 +343,7 @@ msgstr "" msgid "Invalid team name. Max length is 255 characters." msgstr "" -"Hindi tanggap ng pangalan ng pangkat. Pinakamataas na haba ay 255 mga " +"Hindi tanggap na pangalan ng pangkat. Pinakamataas na haba ay 255 mga " "panitik." msgid "Trusted provider" @@ -389,10 +404,14 @@ msgstr "" "BABALA: hindi pinagagana ang pagpapatunay ng hudyat para sa lahat ng mga " "tagagamit!" -msgid "Save OpenID settings" +msgid "Save" +msgstr "" + +#, fuzzy +msgid "Save OpenID settings." msgstr "Sagipin ang mga katakdaan ng OpenID" -#. TRANS: Client error message +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Hindi nakalagda." diff --git a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po index 411fe08480..37b879f0b5 100644 --- a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:19+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:15:52+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -170,10 +170,25 @@ msgstr "Створити нового користувача з цим нікн msgid "New nickname" msgstr "Новий нікнейм" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" "1-64 літери нижнього регістру і цифри, ніякої пунктуації або інтервалів" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery." +msgstr "" + +#. TRANS: OpenID plugin link text. +#. TRANS: %s is a link to a licese with the license name as link text. +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" + #. TRANS: Button label in form in which to create a new user on the site for an OpenID. msgctxt "BUTTON" msgid "Create" @@ -376,10 +391,14 @@ msgstr "" "Вимагає, щоб всі користувачі входили лише за допомогою OpenID. Увага: ця " "опція вимикає автентифікацію за паролем для всіх користувачів!" -msgid "Save OpenID settings" +msgid "Save" +msgstr "" + +#, fuzzy +msgid "Save OpenID settings." msgstr "Зберегти налаштування OpenID" -#. TRANS: Client error message +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Ви не увійшли до системи." diff --git a/plugins/OpenID/openidadminpanel.php b/plugins/OpenID/openidadminpanel.php index 38df183fef..9299261e90 100644 --- a/plugins/OpenID/openidadminpanel.php +++ b/plugins/OpenID/openidadminpanel.php @@ -275,6 +275,6 @@ class OpenIDAdminPanelForm extends AdminForm function formActions() { - $this->out->submit('submit', _('Save'), 'submit', null, _m('Save OpenID settings')); + $this->out->submit('submit', _m('Save'), 'submit', null, _m('Save OpenID settings.')); } } diff --git a/plugins/OpenX/locale/OpenX.pot b/plugins/OpenX/locale/OpenX.pot index 20d4509354..e502a268ad 100644 --- a/plugins/OpenX/locale/OpenX.pot +++ b/plugins/OpenX/locale/OpenX.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po index eb2722d13d..eec93cf94b 100644 --- a/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:43+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po index a670c5ce66..4ea45ae1cd 100644 --- a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:43+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po index 3696226ca6..9d06d1755a 100644 --- a/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:43+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po index 205763357c..44328b6011 100644 --- a/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:43+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po index 456fd762ab..1b5fd005a3 100644 --- a/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:43+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po index 940bc2f646..c67768a981 100644 --- a/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:43+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po index abbddb10ac..bb03fdfeba 100644 --- a/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:43+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot index e975581155..8fe4dc0647 100644 --- a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot +++ b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po index 5ff7a73c37..f85005c814 100644 --- a/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:29+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:53+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po index b9eb001862..8938796d5a 100644 --- a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:29+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:53+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po index 889b7132d3..9f94b9bee7 100644 --- a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:29+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:53+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po index 32eae37046..a85adfabb8 100644 --- a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:29+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:53+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po index f5618c2562..c0157af4a7 100644 --- a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:29+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:53+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po index b66d5c5c50..09ba9dc05d 100644 --- a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:29+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:53+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po index 1a1d5ad3e3..77cb008529 100644 --- a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:29+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:53+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po index 6d6ee90526..0e52bcfb51 100644 --- a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:29+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:54+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po index 8994a30b5e..3aab2ed2b2 100644 --- a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:29+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:53+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po index 76ff798ccc..736042766b 100644 --- a/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:29+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:54+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po index 53fa703501..20d79e7335 100644 --- a/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:54+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po index 0b253eef83..9acd0d77e3 100644 --- a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:54+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po index 1d06cdb8e0..5bc06e6fb1 100644 --- a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:54+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po index 6931366ac3..fcd5632bb4 100644 --- a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:54+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/Poll/PollPlugin.php b/plugins/Poll/PollPlugin.php index 941c13dd37..4e7b2c5273 100644 --- a/plugins/Poll/PollPlugin.php +++ b/plugins/Poll/PollPlugin.php @@ -444,7 +444,7 @@ class PollPlugin extends MicroAppPlugin $form->show(); } } else { - $out->text(_('Poll data is missing')); + $out->text(_m('Poll data is missing')); } $out->elementEnd('div'); diff --git a/plugins/Poll/locale/Poll.pot b/plugins/Poll/locale/Poll.pot index 04dcc5c9d3..3348de9491 100644 --- a/plugins/Poll/locale/Poll.pot +++ b/plugins/Poll/locale/Poll.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,28 +17,18 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #. TRANS: Client exception thrown trying to view a non-existing poll. -#: showpoll.php:68 +#: showpoll.php:59 msgid "No such poll." msgstr "" #. TRANS: Client exception thrown trying to view a non-existing poll notice. -#: showpoll.php:76 +#: showpoll.php:67 msgid "No such poll notice." msgstr "" -#. TRANS: Client exception thrown trying to view a poll of a non-existing user. -#: showpoll.php:83 -msgid "No such user." -msgstr "" - -#. TRANS: Server exception thrown trying to view a poll for a user for which the profile could not be loaded. -#: showpoll.php:90 -msgid "User without a profile." -msgstr "" - #. TRANS: Page title for a poll. #. TRANS: %1$s is the nickname of the user that created the poll, %2$s is the poll question. -#: showpoll.php:109 +#: showpoll.php:84 #, php-format msgid "%1$s's poll: %2$s" msgstr "" @@ -88,6 +78,10 @@ msgstr "" msgid "Unexpected type for poll plugin: %s." msgstr "" +#: PollPlugin.php:447 +msgid "Poll data is missing" +msgstr "" + #. TRANS: Application title. #: PollPlugin.php:481 msgctxt "APPTITLE" diff --git a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po index 055e9f0b82..d4f4a8b397 100644 --- a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:56+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-poll\n" @@ -29,14 +29,6 @@ msgstr "Iste sondage non existe." msgid "No such poll notice." msgstr "Iste nota de sondage non existe." -#. TRANS: Client exception thrown trying to view a poll of a non-existing user. -msgid "No such user." -msgstr "Iste usator non existe." - -#. TRANS: Server exception thrown trying to view a poll for a user for which the profile could not be loaded. -msgid "User without a profile." -msgstr "Usator sin profilo." - #. TRANS: Page title for a poll. #. TRANS: %1$s is the nickname of the user that created the poll, %2$s is the poll question. #, php-format @@ -80,6 +72,9 @@ msgstr "Responsa invalide a sondage: le sondage es incognite." msgid "Unexpected type for poll plugin: %s." msgstr "Typo inexpectate pro le plug-in de sondages: %s." +msgid "Poll data is missing" +msgstr "" + #. TRANS: Application title. msgctxt "APPTITLE" msgid "Poll" diff --git a/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po b/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po index 8509653a3b..b898882bd9 100644 --- a/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:56+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-poll\n" @@ -29,14 +29,6 @@ msgstr "Нема таква анкета." msgid "No such poll notice." msgstr "Нема таква анкетна забелешка." -#. TRANS: Client exception thrown trying to view a poll of a non-existing user. -msgid "No such user." -msgstr "Нема таков корисник." - -#. TRANS: Server exception thrown trying to view a poll for a user for which the profile could not be loaded. -msgid "User without a profile." -msgstr "Корисник без профил." - #. TRANS: Page title for a poll. #. TRANS: %1$s is the nickname of the user that created the poll, %2$s is the poll question. #, php-format @@ -80,6 +72,9 @@ msgstr "Неважечки одговор во анкетата: анкетат msgid "Unexpected type for poll plugin: %s." msgstr "Неочекуван тип за анкетен приклучок: %s." +msgid "Poll data is missing" +msgstr "Анкетните податоци недостасуваат" + #. TRANS: Application title. msgctxt "APPTITLE" msgid "Poll" diff --git a/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po b/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po index d4f7c28283..0a09247612 100644 --- a/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:57+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-poll\n" @@ -29,14 +29,6 @@ msgstr "Deze peiling bestaat niet." msgid "No such poll notice." msgstr "Dit peilingsbericht bestaat niet." -#. TRANS: Client exception thrown trying to view a poll of a non-existing user. -msgid "No such user." -msgstr "Deze gebruiker bestaat niet." - -#. TRANS: Server exception thrown trying to view a poll for a user for which the profile could not be loaded. -msgid "User without a profile." -msgstr "Gebruiker zonder een profiel." - #. TRANS: Page title for a poll. #. TRANS: %1$s is the nickname of the user that created the poll, %2$s is the poll question. #, php-format @@ -80,6 +72,9 @@ msgstr "Ongeldig antwoord op peiling: de peiling bestaat niet." msgid "Unexpected type for poll plugin: %s." msgstr "Onverwacht type voor peilingplug-in: %s" +msgid "Poll data is missing" +msgstr "Peilingsgegevens (nog) niet aanwezig" + #. TRANS: Application title. msgctxt "APPTITLE" msgid "Poll" diff --git a/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po b/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po index 985e639667..2aaf25ff2a 100644 --- a/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:57+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-poll\n" @@ -29,14 +29,6 @@ msgstr "Walang ganyang botohan." msgid "No such poll notice." msgstr "Walang ganyang pabatid na pangbotohan." -#. TRANS: Client exception thrown trying to view a poll of a non-existing user. -msgid "No such user." -msgstr "Walang ganyang tagagamit." - -#. TRANS: Server exception thrown trying to view a poll for a user for which the profile could not be loaded. -msgid "User without a profile." -msgstr "Tagagamit na walang balangkas." - #. TRANS: Page title for a poll. #. TRANS: %1$s is the nickname of the user that created the poll, %2$s is the poll question. #, php-format @@ -81,6 +73,9 @@ msgstr "Hindi katanggap-tanggap na tugon: hindi nalalaman ang botohan." msgid "Unexpected type for poll plugin: %s." msgstr "Hindi inaasahang uri ng pampasak ng botohan: %s." +msgid "Poll data is missing" +msgstr "" + #. TRANS: Application title. msgctxt "APPTITLE" msgid "Poll" diff --git a/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po b/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po index 25cdad1a56..37a1fd6a32 100644 --- a/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:57+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-poll\n" @@ -30,14 +30,6 @@ msgstr "Немає такого опитування." msgid "No such poll notice." msgstr "Немає допису щодо опитування." -#. TRANS: Client exception thrown trying to view a poll of a non-existing user. -msgid "No such user." -msgstr "Такого користувача немає." - -#. TRANS: Server exception thrown trying to view a poll for a user for which the profile could not be loaded. -msgid "User without a profile." -msgstr "Користувач без профілю." - #. TRANS: Page title for a poll. #. TRANS: %1$s is the nickname of the user that created the poll, %2$s is the poll question. #, php-format @@ -81,6 +73,9 @@ msgstr "Неправильна відповідь на опитування: н msgid "Unexpected type for poll plugin: %s." msgstr "Неочікувана дія для додатку опитувань: %s." +msgid "Poll data is missing" +msgstr "" + #. TRANS: Application title. msgctxt "APPTITLE" msgid "Poll" diff --git a/plugins/PostDebug/locale/PostDebug.pot b/plugins/PostDebug/locale/PostDebug.pot index c9ea0d7f4e..cbdc645544 100644 --- a/plugins/PostDebug/locale/PostDebug.pot +++ b/plugins/PostDebug/locale/PostDebug.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po index d58886cba2..7d668c7742 100644 --- a/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:57+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po index 1b8b604797..48d42d65c6 100644 --- a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:57+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po index 66af752a13..4359f1fab3 100644 --- a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:57+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po index 4045575cf6..021c94b537 100644 --- a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:57+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po index 5d537df81e..9d82832694 100644 --- a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:57+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po index f54b43fcff..5d8af9b373 100644 --- a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po index 170515a4c1..019bc70b26 100644 --- a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:58+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po index 56e1a8054e..1377ececd5 100644 --- a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:58+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po index 02f3f2b991..2bab94ea9d 100644 --- a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:58+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po index 346e52e1f7..7201ddd49a 100644 --- a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:58+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po index fc3e381d64..47c5a44a50 100644 --- a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:58+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po index b9df816d2d..161b04fe0f 100644 --- a/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:58+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po index a61d6f7bfd..5a0dce3519 100644 --- a/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:58+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po index 8e0935b0ea..00f0756f9f 100644 --- a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:58+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po index c8bbe8add3..80b7ec6b80 100644 --- a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:58+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po index 9a66138c8d..ba3d1f31db 100644 --- a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:58+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot index 0c3c6117ee..263048a3dd 100644 --- a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot +++ b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po index bfee18a8f9..ef9cea182d 100644 --- a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:59+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po index 7f73447dea..76e6092166 100644 --- a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21: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-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po index 542acf09e6..1fc0563be0 100644 --- a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21: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-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po index 752aa066b1..2ee17586ae 100644 --- a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:59+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po index cf1a7a472c..8d0418d25c 100644 --- a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:59+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po index 1fca7b3c8c..b2b774db8b 100644 --- a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:59+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po index 17df0f57e0..fb676fb3f3 100644 --- a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:59+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po index bc63298b65..ffffdbf7f1 100644 --- a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:59+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po index 83385fcaf5..9ffdb12c50 100644 --- a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:59+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po index 90644052ad..1722ad1a4a 100644 --- a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:00+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po index 02956e71fc..769862ff95 100644 --- a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:00+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po index 4c63f721c7..5431635b84 100644 --- a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:00+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PtitUrl/locale/PtitUrl.pot b/plugins/PtitUrl/locale/PtitUrl.pot index cbbe43fc66..5cc3de9c5a 100644 --- a/plugins/PtitUrl/locale/PtitUrl.pot +++ b/plugins/PtitUrl/locale/PtitUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po index 29d2502244..c64ed4e382 100644 --- a/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:00+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po index 185c008a5e..6233cf1e6f 100644 --- a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:00+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po index 5d055084cc..59deab7b17 100644 --- a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:00+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po index de7276779b..78bdad9374 100644 --- a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:00+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po index feb5bb2740..bd0eabcda9 100644 --- a/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:00+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po index 63e088938c..f48350fa87 100644 --- a/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:00+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po index 9eba5516c2..5a30f7b37a 100644 --- a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:01+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po index 707e29b86d..8d85633f21 100644 --- a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:01+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po index c5192fe049..77fb44e3e3 100644 --- a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:01+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po index 5d2e7070df..0f9aa84e6d 100644 --- a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:01+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po index de6c25b044..bccbf9d8ba 100644 --- a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:01+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po index 130ff5988d..fad06d3c09 100644 --- a/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:01+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po index c5534bd459..951e464cf5 100644 --- a/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:01+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po index 7cc9f98bb8..147cf4c217 100644 --- a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:01+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po index 9fd2670cd6..e1af0f0274 100644 --- a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:01+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po index 1c0d87ca2e..bc1cfcf2ee 100644 --- a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:01+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/QnA/QnAPlugin.php b/plugins/QnA/QnAPlugin.php new file mode 100644 index 0000000000..c62eefa671 --- /dev/null +++ b/plugins/QnA/QnAPlugin.php @@ -0,0 +1,405 @@ +. + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Question and Answer plugin + * + * @category Plugin + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +class QnAPlugin extends MicroAppPlugin +{ + /** + * Set up our tables (question and answer) + * + * @see Schema + * @see ColumnDef + * + * @return boolean hook value; true means continue processing, false means stop. + */ + function onCheckSchema() + { + $schema = Schema::get(); + + $schema->ensureTable('qna_question', QnA_Question::schemaDef()); + $schema->ensureTable('qna_answer', QnA_Answer::schemaDef()); + $schema->ensureTable('qna_vote', QnA_Vote::schemaDef()); + + return true; + } + + /** + * Load related modules when needed + * + * @param string $cls Name of the class to be loaded + * + * @return boolean hook value; true means continue processing, false means stop. + */ + function onAutoload($cls) + { + $dir = dirname(__FILE__); + + switch ($cls) + { + case 'QnanewquestionAction': + case 'QnanewanswerAction': + case 'QnashowquestionAction': + case 'QnashowanswerAction': + case 'QnareviseanswerAction': + case 'QnavoteAction': + include_once $dir . '/actions/' + . strtolower(mb_substr($cls, 0, -6)) . '.php'; + return false; + case 'QnaquestionForm': + case 'QnaanswerForm': + case 'QnareviseanswerForm': + case 'QnavoteForm': + include_once $dir . '/lib/' . strtolower($cls).'.php'; + break; + case 'QnA_Question': + case 'QnA_Answer': + case 'QnA_Vote': + include_once $dir . '/classes/' . $cls.'.php'; + return false; + break; + default: + return true; + } + } + + /** + * Map URLs to actions + * + * @param Net_URL_Mapper $m path-to-action mapper + * + * @return boolean hook value; true means continue processing, false means stop. + */ + + function onRouterInitialized($m) + { + $UUIDregex = '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}'; + + $m->connect( + 'main/qna/newquestion', + array('action' => 'qnanewquestion') + ); + $m->connect( + 'main/qna/newanswer', + array('action' => 'qnanewanswer') + ); + $m->connect( + 'question/vote/:id', + array('action' => 'qnavote', 'type' => 'question'), + array('id' => $UUIDregex) + ); + $m->connect( + 'question/:id', + array('action' => 'qnashowquestion'), + array('id' => $UUIDregex) + ); + $m->connect( + 'answer/vote/:id', + array('action' => 'qnavote', 'type' => 'answer'), + array('id' => $UUIDregex) + ); + $m->connect( + 'answer/:id', + array('action' => 'qnashowanswer'), + array('id' => $UUIDregex) + ); + + return true; + } + + function onPluginVersion(&$versions) + { + $versions[] = array( + 'name' => 'QnA', + 'version' => STATUSNET_VERSION, + 'author' => 'Zach Copley', + 'homepage' => 'http://status.net/wiki/Plugin:QnA', + 'description' => + _m('Question and Answers micro-app.') + ); + return true; + } + + function appTitle() { + return _m('Question'); + } + + function tag() { + return 'question'; + } + + function types() { + return array( + QnA_Question::OBJECT_TYPE, + QnA_Answer::OBJECT_TYPE + ); + } + + /** + * Given a parsed ActivityStreams activity, save it into a notice + * and other data structures. + * + * @param Activity $activity + * @param Profile $actor + * @param array $options=array() + * + * @return Notice the resulting notice + */ + function saveNoticeFromActivity($activity, $actor, $options=array()) + { + if (count($activity->objects) != 1) { + throw new Exception('Too many activity objects.'); + } + + $questionObj = $activity->objects[0]; + + if ($questinoObj->type != QnA_Question::OBJECT_TYPE) { + throw new Exception('Wrong type for object.'); + } + + $notice = null; + + switch ($activity->verb) { + case ActivityVerb::POST: + $notice = QnA_Question::saveNew( + $actor, + $questionObj->title, + $questionObj->summary, + $options + ); + break; + case Answer::ObjectType: + $question = QnA_Question::staticGet('uri', $questionObj->id); + if (empty($question)) { + // FIXME: save the question + throw new Exception("Answer to unknown question."); + } + $notice = QnA_Answer::saveNew($actor, $question, $options); + break; + default: + throw new Exception("Unknown object type received by QnA Plugin"); + } + + return $notice; + } + + /** + * Turn a Notice into an activity object + * + * @param Notice $notice + * + * @return ActivityObject + */ + + function activityObjectFromNotice($notice) + { + $question = null; + + switch ($notice->object_type) { + case QnA_Question::OBJECT_TYPE: + $question = QnA_Question::fromNotice($notice); + break; + case QnA_Answer::OBJECT_TYPE: + $answer = QnA_Answer::fromNotice($notice); + $question = $answer->getQuestion(); + break; + } + + if (empty($question)) { + throw new Exception("Unknown object type."); + } + + $notice = $question->getNotice(); + + if (empty($notice)) { + throw new Exception("Unknown question notice."); + } + + $obj = new ActivityObject(); + + $obj->id = $question->uri; + $obj->type = QnA_Question::OBJECT_TYPE; + $obj->title = $question->title; + $obj->link = $notice->bestUrl(); + + // XXX: probably need other stuff here + + return $obj; + } + + /** + * Change the verb on Answer notices + * + * @param Notice $notice + * + * @return ActivityObject + */ + + function onEndNoticeAsActivity($notice, &$act) { + switch ($notice->object_type) { + case Answer::NORMAL: + case Answer::ANONYMOUS: + $act->verb = $notice->object_type; + break; + } + return true; + } + + /** + * Custom HTML output for our notices + * + * @param Notice $notice + * @param HTMLOutputter $out + */ + function showNotice($notice, $out) + { + switch ($notice->object_type) { + case QnA_Question::OBJECT_TYPE: + return $this->showNoticeQuestion($notice, $out); + case QnA_Answer::OBJECT_TYPE: + return $this->showNoticeAnswer($notice, $out); + default: + // TRANS: Exception thrown when performing an unexpected action on a question. + // TRANS: %s is the unpexpected object type. + throw new Exception( + sprintf( + _m('Unexpected type for QnA plugin: %s.'), + $notice->object_type + ) + ); + } + } + + function showNoticeQuestion($notice, $out) + { + $user = common_current_user(); + + // @hack we want regular rendering, then just add stuff after that + $nli = new NoticeListItem($notice, $out); + $nli->showNotice(); + + $out->elementStart('div', array('class' => 'entry-content question-content')); + $question = QnA_Question::getByNotice($notice); + + if ($question) { + if ($user) { + $profile = $user->getProfile(); + $answer = $question->getAnswer($profile); + if ($answer) { + // User has already answer; show the results. + $form = new QnareviseanswerForm($answer, $out); + } else { + $form = new QnaanswerForm($question, $out); + } + $form->show(); + } + } else { + $out->text(_m('Question data is missing.')); + } + $out->elementEnd('div'); + + // @fixme + $out->elementStart('div', array('class' => 'entry-content')); + } + + function showNoticeAnswer($notice, $out) + { + $user = common_current_user(); + + // @hack we want regular rendering, then just add stuff after that + $nli = new NoticeListItem($notice, $out); + $nli->showNotice(); + + // @fixme + $out->elementStart('div', array('class' => 'entry-content')); + } + + /** + * Form for our app + * + * @param HTMLOutputter $out + * @return Widget + */ + + function entryForm($out) + { + return new QnaquestionForm($out); + } + + /** + * When a notice is deleted, clean up related tables. + * + * @param Notice $notice + */ + + function deleteRelated($notice) + { + switch ($notice->object_type) { + case QnA_Question::OBJECT_TYPE: + common_log(LOG_DEBUG, "Deleting question from notice..."); + $question = QnA_Question::fromNotice($notice); + $question->delete(); + break; + case QnA_Answer::OBJECT_TYPE: + common_log(LOG_DEBUG, "Deleting answer from notice..."); + $answer = QnA_Answer::fromNotice($notice); + common_log(LOG_DEBUG, "to delete: $answer->id"); + $answer->delete(); + break; + default: + common_log(LOG_DEBUG, "Not deleting related, wtf..."); + } + } + + function onEndShowScripts($action) + { + // XXX maybe some cool shiz here + } + + function onEndShowStyles($action) + { + $action->cssLink($this->path('css/qna.css')); + return true; + } +} diff --git a/plugins/QnA/actions/qnanewanswer.php b/plugins/QnA/actions/qnanewanswer.php new file mode 100644 index 0000000000..09d111040d --- /dev/null +++ b/plugins/QnA/actions/qnanewanswer.php @@ -0,0 +1,204 @@ +. + * + * @category QuestonAndAnswer + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Answer a question + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +class QnanewanswerAction extends Action +{ + protected $user = null; + protected $error = null; + protected $complete = null; + + protected $question = null; + protected $content = null; + + /** + * Returns the title of the action + * + * @return string Action title + */ + function title() + { + // TRANS: Page title for and answer to a question. + return _m('Answer'); + } + + /** + * For initializing members of the class. + * + * @param array $argarray misc. arguments + * + * @return boolean true + */ + function prepare($argarray) + { + parent::prepare($argarray); + if ($this->boolean('ajax')) { + StatusNet::setApi(true); + } + + $this->user = common_current_user(); + + if (empty($this->user)) { + // TRANS: Client exception thrown trying to answer a question while not logged in. + throw new ClientException( + _m("You must be logged in to answer to a question."), + 403 + ); + } + + if ($this->isPost()) { + $this->checkSessionToken(); + } + + $id = substr($this->trimmed('id'), 9); + + common_debug("XXXXXXXXXXXXXXXXXX id = " . $id); + + $this->question = QnA_Question::staticGet('id', $id); + + if (empty($this->question)) { + // TRANS: Client exception thrown trying to respond to a non-existing question. + throw new ClientException( + _m('Invalid or missing question.'), + 404 + ); + } + + $this->answerText = $this->trimmed('answer'); + + return true; + } + + /** + * Handler method + * + * @param array $argarray is ignored since it's now passed in in prepare() + * + * @return void + */ + function handle($argarray=null) + { + parent::handle($argarray); + + if ($this->isPost()) { + $this->newAnswer(); + } else { + $this->showPage(); + } + + return; + } + + /** + * Add a new answer + * + * @return void + */ + function newAnswer() + { + try { + $notice = QnA_Answer::saveNew( + $this->user->getProfile(), + $this->question, + $this->answerText + ); + } catch (ClientException $ce) { + $this->error = $ce->getMessage(); + $this->showPage(); + return; + } + if ($this->boolean('ajax')) { + common_debug("ajaxy part"); + header('Content-Type: text/xml;charset=utf-8'); + $this->xw->startDocument('1.0', 'UTF-8'); + $this->elementStart('html'); + $this->elementStart('head'); + // TRANS: Page title after sending an answer. + $this->element('title', null, _m('Answers')); + $this->elementEnd('head'); + $this->elementStart('body'); + $this->raw() + $this->elementEnd('body'); + $this->elementEnd('html'); + } else { + common_redirect($this->question->bestUrl(), 303); + } + } + + /** + * Show the Answer form + * + * @return void + */ + function showContent() + { + if (!empty($this->error)) { + $this->element('p', 'error', $this->error); + } + + $form = new QnaanswerForm($this->question, $this); + $form->show(); + + return; + } + + /** + * Return true if read only. + * + * MAY override + * + * @param array $args other arguments + * + * @return boolean is read only action? + */ + function isReadOnly($args) + { + if ($_SERVER['REQUEST_METHOD'] == 'GET' || + $_SERVER['REQUEST_METHOD'] == 'HEAD') { + return true; + } else { + return false; + } + } +} diff --git a/plugins/QnA/actions/qnanewquestion.php b/plugins/QnA/actions/qnanewquestion.php new file mode 100644 index 0000000000..8682f8dd47 --- /dev/null +++ b/plugins/QnA/actions/qnanewquestion.php @@ -0,0 +1,216 @@ +. + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Add a new Question + * + * @category Plugin + * @package StatusNet + * @author Zach Copley + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +class QnanewquestionAction extends Action +{ + protected $user = null; + protected $error = null; + protected $complete = null; + protected $title = null; + protected $description = null; + + /** + * Returns the title of the action + * + * @return string Action title + */ + function title() + { + // TRANS: Title for Question page. + return _m('New question'); + } + + /** + * For initializing members of the class. + * + * @param array $argarray misc. arguments + * + * @return boolean true + */ + function prepare($argarray) + { + parent::prepare($argarray); + + $this->user = common_current_user(); + + if (empty($this->user)) { + // TRANS: Client exception thrown trying to create a Question while not logged in. + throw new ClientException( + _m('You must be logged in to post a question.'), + 403 + ); + } + + if ($this->isPost()) { + $this->checkSessionToken(); + } + + $this->title = $this->trimmed('title'); + $this->description = $this->trimmed('description'); + + return true; + } + + /** + * Handler method + * + * @param array $argarray is ignored since it's now passed in in prepare() + * + * @return void + */ + function handle($argarray=null) + { + parent::handle($argarray); + + if ($this->isPost()) { + $this->newQuestion(); + } else { + $this->showPage(); + } + + return; + } + + /** + * Add a new Question + * + * @return void + */ + function newQuestion() + { + if ($this->boolean('ajax')) { + StatusNet::setApi(true); + } + try { + if (empty($this->title)) { + // TRANS: Client exception thrown trying to create a question without a title. + throw new ClientException(_m('Question must have a title.')); + } + + $saved = QnA_Question::saveNew( + $this->user->getProfile(), + $this->title, + $this->description + ); + } catch (ClientException $ce) { + $this->error = $ce->getMessage(); + $this->showPage(); + return; + } + + if ($this->boolean('ajax')) { + header('Content-Type: text/xml;charset=utf-8'); + $this->xw->startDocument('1.0', 'UTF-8'); + $this->elementStart('html'); + $this->elementStart('head'); + // TRANS: Page title after sending a notice. + $this->element('title', null, _m('Question posted')); + $this->elementEnd('head'); + $this->elementStart('body'); + $this->showNotice($saved); + $this->elementEnd('body'); + $this->elementEnd('html'); + } else { + common_redirect($saved->bestUrl(), 303); + } + } + + /** + * Output a notice + * + * Used to generate the notice code for Ajax results. + * + * @param Notice $notice Notice that was saved + * + * @return void + */ + function showNotice($notice) + { + class_exists('NoticeList'); // @fixme hack for autoloader + $nli = new NoticeListItem($notice, $this); + $nli->show(); + } + + /** + * Show the Question form + * + * @return void + */ + function showContent() + { + if (!empty($this->error)) { + $this->element('p', 'error', $this->error); + } + + $form = new QuestionForm( + $this, + $this->title, + $this->description + ); + + $form->show(); + + return; + } + + /** + * Return true if read only. + * + * MAY override + * + * @param array $args other arguments + * + * @return boolean is read only action? + */ + function isReadOnly($args) + { + if ($_SERVER['REQUEST_METHOD'] == 'GET' || + $_SERVER['REQUEST_METHOD'] == 'HEAD') { + return true; + } else { + return false; + } + } +} diff --git a/plugins/QnA/actions/qnashowanswer.php b/plugins/QnA/actions/qnashowanswer.php new file mode 100644 index 0000000000..24296a5af6 --- /dev/null +++ b/plugins/QnA/actions/qnashowanswer.php @@ -0,0 +1,140 @@ +. + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Show an answer to a question, and associated data + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +class QnashowanswerAction extends ShownoticeAction +{ + protected $answer = null; + + /** + * For initializing members of the class. + * + * @param array $argarray misc. arguments + * + * @return boolean true + */ + function prepare($argarray) + { + OwnerDesignAction::prepare($argarray); + + $this->id = $this->trimmed('id'); + + $this->answer = QnA_Answer::staticGet('id', $this->id); + + if (empty($this->answer)) { + throw new ClientException(_m('No such answer.'), 404); + } + + $this->question = $this->answer->getQuestion(); + + if (empty($this->question)) { + throw new ClientException(_m('No question for this answer.'), 404); + } + + $this->notice = Notice::staticGet('uri', $this->answer->uri); + + if (empty($this->notice)) { + // Did we used to have it, and it got deleted? + throw new ClientException(_m('No such answer.'), 404); + } + + $this->user = User::staticGet('id', $this->answer->profile_id); + + if (empty($this->user)) { + throw new ClientException(_m('No such user.'), 404); + } + + $this->profile = $this->user->getProfile(); + + if (empty($this->profile)) { + throw new ServerException(_m('User without a profile.')); + } + + $this->avatar = $this->profile->getAvatar(AVATAR_PROFILE_SIZE); + + return true; + } + + /** + * Title of the page + * + * Used by Action class for layout. + * + * @return string page tile + */ + function title() + { + $question = $this->answer->getQuestion(); + + return sprintf( + // TRANS: Page title. + // TRANS: %1$s is the user who answered a question, %2$s is the question. + _m('%1$s\'s answer to "%2$s"'), + $this->user->nickname, + $question->title + ); + } + + /** + * Overload page title display to show answer link + * + * @return void + */ + function showPageTitle() + { + $this->elementStart('h1'); + $this->element( + 'a', + array('href' => $this->answer->uri), + $this->question->title + ); + $this->elementEnd('h1'); + } + + function showContent() + { + $this->raw($this->answer->asHTML()); + } +} diff --git a/plugins/QnA/actions/qnashowquestion.php b/plugins/QnA/actions/qnashowquestion.php new file mode 100644 index 0000000000..d128eeec2f --- /dev/null +++ b/plugins/QnA/actions/qnashowquestion.php @@ -0,0 +1,135 @@ +. + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Show a question + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +class QnashowquestionAction extends ShownoticeAction +{ + protected $question = null; + + /** + * For initializing members of the class. + * + * @param array $argarray misc. arguments + * + * @return boolean true + */ + function prepare($argarray) + { + OwnerDesignAction::prepare($argarray); + + $this->id = $this->trimmed('id'); + + $this->question = QnA_Question::staticGet('id', $this->id); + + if (empty($this->question)) { + // TRANS: Client exception thrown trying to view a non-existing question. + throw new ClientException(_m('No such question.'), 404); + } + + $this->notice = $this->question->getNotice(); + + if (empty($this->notice)) { + // Did we used to have it, and it got deleted? + // TRANS: Client exception thrown trying to view a non-existing question notice. + throw new ClientException(_m('No such question notice.'), 404); + } + + $this->user = User::staticGet('id', $this->question->profile_id); + + if (empty($this->user)) { + // TRANS: Client exception thrown trying to view a question of a non-existing user. + throw new ClientException(_m('No such user.'), 404); + } + + $this->profile = $this->user->getProfile(); + + if (empty($this->profile)) { + // TRANS: Server exception thrown trying to view a question for a user for which the profile could not be loaded. + throw new ServerException(_m('User without a profile.')); + } + + $this->avatar = $this->profile->getAvatar(AVATAR_PROFILE_SIZE); + + return true; + } + + function showContent() + { + $this->raw($this->question->asHTML()); + } + + /** + * Title of the page + * + * Used by Action class for layout. + * + * @return string page tile + */ + function title() + { + // TRANS: Page title for a question. + // TRANS: %1$s is the nickname of the user who asked the question, %2$s is the question. + return sprintf(_m('%1$s\'s question: %2$s'), + $this->user->nickname, + $this->question->title); + } + + /** + * @fixme combine the notice time with question update time + */ + function lastModified() + { + return Action::lastModified(); + } + + + /** + * @fixme combine the notice time with question update time + */ + function etag() + { + return Action::etag(); + } +} diff --git a/plugins/QnA/actions/qnavote.php b/plugins/QnA/actions/qnavote.php new file mode 100644 index 0000000000..8098cb87d0 --- /dev/null +++ b/plugins/QnA/actions/qnavote.php @@ -0,0 +1,198 @@ +. + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Vote on a question or answer + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +class Qnavote extends Action +{ + protected $user = null; + protected $error = null; + protected $complete = null; + + protected $question = null; + protected $answer = null; + + /** + * Returns the title of the action + * + * @return string Action title + */ + function title() + { + // TRANS: Page title for and answer to a question. + return _m('Answer'); + } + + /** + * For initializing members of the class. + * + * @param array $argarray misc. arguments + * + * @return boolean true + */ + function prepare($argarray) + { + parent::prepare($argarray); + if ($this->boolean('ajax')) { + StatusNet::setApi(true); + } + + $this->user = common_current_user(); + + if (empty($this->user)) { + // TRANS: Client exception thrown trying to answer a question while not logged in. + throw new ClientException(_m("You must be logged in to answer to a question."), + 403); + } + + if ($this->isPost()) { + $this->checkSessionToken(); + } + + $id = $this->trimmed('id'); + $this->question = QnA_Question::staticGet('id', $id); + if (empty($this->question)) { + // TRANS: Client exception thrown trying to respond to a non-existing question. + throw new ClientException(_m('Invalid or missing question.'), 404); + } + + $answer = $this->trimmed('answer'); + + + return true; + } + + /** + * Handler method + * + * @param array $argarray is ignored since it's now passed in in prepare() + * + * @return void + */ + function handle($argarray=null) + { + parent::handle($argarray); + + if ($this->isPost()) { + $this->answer(); + } else { + $this->showPage(); + } + + return; + } + + /** + * Add a new answer + * + * @return void + */ + function answer() + { + try { + $notice = Answer::saveNew( + $this->user->getProfile(), + $this->question, + $this->answer + ); + } catch (ClientException $ce) { + $this->error = $ce->getMessage(); + $this->showPage(); + return; + } + + if ($this->boolean('ajax')) { + header('Content-Type: text/xml;charset=utf-8'); + $this->xw->startDocument('1.0', 'UTF-8'); + $this->elementStart('html'); + $this->elementStart('head'); + // TRANS: Page title after sending an answer. + $this->element('title', null, _m('Answers')); + $this->elementEnd('head'); + $this->elementStart('body'); + $form = new QnA_Answer($this->question, $this); + $form->show(); + $this->elementEnd('body'); + $this->elementEnd('html'); + } else { + common_redirect($this->question->bestUrl(), 303); + } + } + + /** + * Show the Answer form + * + * @return void + */ + function showContent() + { + if (!empty($this->error)) { + $this->element('p', 'error', $this->error); + } + + $form = new QnaanswerForm($this->question, $this); + + $form->show(); + + return; + } + + /** + * Return true if read only. + * + * MAY override + * + * @param array $args other arguments + * + * @return boolean is read only action? + */ + function isReadOnly($args) + { + if ($_SERVER['REQUEST_METHOD'] == 'GET' || + $_SERVER['REQUEST_METHOD'] == 'HEAD') { + return true; + } else { + return false; + } + } +} diff --git a/plugins/QnA/classes/QnA_Answer.php b/plugins/QnA/classes/QnA_Answer.php new file mode 100644 index 0000000000..5727411a80 --- /dev/null +++ b/plugins/QnA/classes/QnA_Answer.php @@ -0,0 +1,307 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2011, StatusNet, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +/** + * For storing answers + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * @see DB_DataObject + */ +class QnA_Answer extends Managed_DataObject +{ + const OBJECT_TYPE = 'http://activityschema.org/object/answer'; + + public $__table = 'qna_answer'; // table name + public $id; // char(36) primary key not null -> UUID + public $question_id; // char(36) -> question.id UUID + public $profile_id; // int -> question.id + public $best; // (boolean) int -> whether the question asker has marked this as the best answer + public $revisions; // int -> count of revisions to this answer + public $content; // text -> response text + public $created; // datetime + + /** + * Get an instance by key + * + * This is a utility method to get a single instance with a given key value. + * + * @param string $k Key to use to lookup + * @param mixed $v Value to lookup + * + * @return QnA_Answer object found, or null for no hits + * + */ + function staticGet($k, $v=null) + { + return Memcached_DataObject::staticGet('QnA_Answer', $k, $v); + } + + /** + * Get an instance by compound key + * + * This is a utility method to get a single instance with a given set of + * key-value pairs. Usually used for the primary key for a compound key; thus + * the name. + * + * @param array $kv array of key-value mappings + * + * @return QA_Answer object found, or null for no hits + * + */ + function pkeyGet($kv) + { + return Memcached_DataObject::pkeyGet('QnA_Answer', $kv); + } + + /** + * The One True Thingy that must be defined and declared. + */ + public static function schemaDef() + { + return array( + 'description' => 'Record of answers to questions', + 'fields' => array( + 'id' => array( + 'type' => 'char', + 'length' => 36, + 'not null' => true, 'description' => 'UUID of the response'), + 'uri' => array( + 'type' => 'varchar', + 'length' => 255, + 'not null' => true, + 'description' => 'UUID to the answer notice' + ), + 'question_id' => array( + 'type' => 'char', + 'length' => 36, + 'not null' => true, + 'description' => 'UUID of question being responded to' + ), + 'content' => array('type' => 'text'), // got a better name? + 'best' => array('type' => 'int', 'size' => 'tiny'), + 'revisions' => array('type' => 'int'), + 'profile_id' => array('type' => 'int'), + 'created' => array('type' => 'datetime', 'not null' => true), + ), + 'primary key' => array('id'), + 'unique keys' => array( + 'question_uri_key' => array('uri'), + 'question_id_profile_id_key' => array('question_id', 'profile_id'), + ), + 'indexes' => array( + 'profile_id_question_id_index' => array('profile_id', 'question_id'), + ) + ); + } + + /** + * Get an answer based on a notice + * + * @param Notice $notice Notice to check for + * + * @return QnA_Answer found response or null + */ + function getByNotice($notice) + { + $answer = self::staticGet('uri', $notice->uri); + if (empty($answer)) { + throw new Exception("No answer with URI {$this->notice->uri}"); + } + return $answer; + } + + /** + * Get the notice that belongs to this answer + * + * @return Notice + */ + function getNotice() + { + return Notice::staticGet('uri', $this->uri); + } + + function bestUrl() + { + return $this->getNotice()->bestUrl(); + } + + /** + * Get the Question this is an answer to + * + * @return QnA_Question + */ + function getQuestion() + { + $question = QnA_Question::staticGet('id', $this->question_id); + if (empty($question)) { + throw new Exception("No question with ID {$this->question_id}"); + } + return $question; + } + + function getProfile() + { + $profile = Profile::staticGet('id', $this->profile_id); + if (empty($profile)) { + throw new Exception("No profile with ID {$this->profile_id}"); + } + return $profile; + } + + function asHTML() + { + return self::toHTML( + $this->getProfile(), + $this->getQuestion(), + $this + ); + } + + function asString() + { + return self::toString( + $this->getProfile(), + $this->getQuestion(), + $this + ); + } + + static function toHTML($profile, $question, $answer) + { + $notice = $question->getNotice(); + + $fmt = 'answer by %3$s'; + $fmt .= '%4$s'; + + return sprintf( + $fmt, + htmlspecialchars($notice->bestUrl()), + htmlspecialchars($profile->profileurl), + htmlspecialchars($profile->getBestName()), + htmlspecialchars($answer->content) + ); + } + + static function toString($profile, $question, $answer) + { + $notice = $question->getNotice(); + + $fmt = _m( + '%1$s answered the question "%2$s": %3$s' + ); + + return sprintf( + $fmt, + htmlspecialchars($profile->getBestName()), + htmlspecialchars($question->title), + htmlspecialchars($answer->content) + ); + } + + /** + * Save a new answer notice + * + * @param Profile $profile + * @param Question $Question the question being answered + * @param array + * + * @return Notice saved notice + */ + static function saveNew($profile, $question, $text, $options = null) + { + if (empty($options)) { + $options = array(); + } + + $answer = new QnA_Answer(); + $answer->id = UUID::gen(); + $answer->profile_id = $profile->id; + $answer->question_id = $question->id; + $answer->revisions = 0; + $answer->best = 0; + $answer->content = $text; + $answer->created = common_sql_now(); + $answer->uri = common_local_url( + 'qnashowanswer', + array('id' => $answer->id) + ); + + common_log(LOG_DEBUG, "Saving answer: $answer->id, $answer->uri"); + $answer->insert(); + + $content = sprintf( + _m('answered "%s"'), + $question->title + ); + + $link = '' . htmlspecialchars($question->title) . ''; + // TRANS: Rendered version of the notice content answering a question. + // TRANS: %s a link to the question with question title as the link content. + $rendered = sprintf(_m('answered "%s"'), $link); + + $tags = array(); + $replies = array(); + + $options = array_merge( + array( + 'urls' => array(), + 'content' => $content, + 'rendered' => $rendered, + 'tags' => $tags, + 'replies' => $replies, + 'reply_to' => $question->getNotice()->id, + 'object_type' => self::OBJECT_TYPE + ), + $options + ); + + if (!array_key_exists('uri', $options)) { + $options['uri'] = $answer->uri; + } + + $saved = Notice::saveNew( + $profile->id, + $content, + array_key_exists('source', $options) ? + $options['source'] : 'web', + $options + ); + + return $saved; + } +} diff --git a/plugins/QnA/classes/QnA_Question.php b/plugins/QnA/classes/QnA_Question.php new file mode 100644 index 0000000000..2403857d28 --- /dev/null +++ b/plugins/QnA/classes/QnA_Question.php @@ -0,0 +1,345 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2011, StatusNet, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +/** + * For storing a question + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * @see DB_DataObject + */ + +class QnA_Question extends Managed_DataObject +{ + const OBJECT_TYPE = 'http://activityschema.org/object/question'; + + public $__table = 'qna_question'; // table name + public $id; // char(36) primary key not null -> UUID + public $uri; + public $profile_id; // int -> profile.id + public $title; // text + public $description; // text + public $closed; // int (boolean) whether a question is closed + public $created; // datetime + + /** + * Get an instance by key + * + * This is a utility method to get a single instance with a given key value. + * + * @param string $k Key to use to lookup + * @param mixed $v Value to lookup + * + * @return QnA_Question object found, or null for no hits + * + */ + function staticGet($k, $v=null) + { + return Memcached_DataObject::staticGet('QnA_Question', $k, $v); + } + + /** + * Get an instance by compound key + * + * This is a utility method to get a single instance with a given set of + * key-value pairs. Usually used for the primary key for a compound key; thus + * the name. + * + * @param array $kv array of key-value mappings + * + * @return Bookmark object found, or null for no hits + * + */ + function pkeyGet($kv) + { + return Memcached_DataObject::pkeyGet('QnA_Question', $kv); + } + + /** + * The One True Thingy that must be defined and declared. + */ + public static function schemaDef() + { + return array( + 'description' => 'Per-notice question data for QNA plugin', + 'fields' => array( + 'id' => array( + 'type' => 'char', + 'length' => 36, + 'not null' => true, + 'description' => 'UUID' + ), + 'uri' => array( + 'type' => 'varchar', + 'length' => 255, + 'not null' => true + ), + 'profile_id' => array('type' => 'int'), + 'title' => array('type' => 'text'), + 'closed' => array('type' => 'int', 'size' => 'tiny'), + 'description' => array('type' => 'text'), + 'created' => array( + 'type' => 'datetime', + 'not null' => true + ), + ), + 'primary key' => array('id'), + 'unique keys' => array( + 'question_uri_key' => array('uri'), + ), + ); + } + + /** + * Get a question based on a notice + * + * @param Notice $notice Notice to check for + * + * @return Question found question or null + */ + function getByNotice($notice) + { + return self::staticGet('uri', $notice->uri); + } + + function getNotice() + { + return Notice::staticGet('uri', $this->uri); + } + + function bestUrl() + { + return $this->getNotice()->bestUrl(); + } + + function getProfile() + { + $profile = Profile::staticGet('id', $this->profile_id); + if (empty($profile)) { + throw new Exception("No profile with ID {$this->profile_id}"); + } + return $profile; + } + + /** + * Get the answer from a particular user to this question, if any. + * + * @param Profile $profile + * + * @return Answer object or null + */ + function getAnswer(Profile $profile) + { + $a = new QnA_Answer(); + $a->question_id = $this->id; + $a->profile_id = $profile->id; + $a->find(); + if ($a->fetch()) { + return $a; + } else { + return null; + } + } + + function getAnswers() + { + $a = new QnA_Answer(); + $a->question_id = $this->id; + $cnt = $a->find(); + if (!empty($cnt)) { + return $a; + } else { + return null; + } + } + + function countAnswers() + { + $a = new QnA_Answer(); + $a->question_id = $this->id; + return $a-count(); + } + + static function fromNotice($notice) + { + return QnA_Question::staticGet('uri', $notice->uri); + } + + function asHTML() + { + return self::toHTML( + $this->getProfile(), + $this, + $this->getAnswers() + ); + } + + function asString() + { + return self::toString( + $this->getProfile(), + $this, + $this->getAnswers() + ); + } + + static function toHTML($profile, $question, $answer) + { + $notice = $question->getNotice(); + + $fmt = '
'; + $fmt .= '%2$s'; + $fmt .= '%3$s'; + $fmt .= 'asked by %5$s'; + $fmt .= '
'; + + $q = sprintf( + $fmt, + htmlspecialchars($notice->bestUrl()), + htmlspecialchars($question->title), + htmlspecialchars($question->description), + htmlspecialchars($profile->profileurl), + htmlspecialchars($profile->getBestName()) + ); + + $ans = array(); + + $ans[] = '
'; + + while($answer->fetch()) { + $ans[] = $answer->asHTML(); + } + + $ans[] .= '
'; + + return $q . implode($ans); + } + + static function toString($profile, $question, $answers) + { + $fmt = _m( + '%1$s asked the question "%2$s": %3$s' + ); + + return sprintf( + $fmt, + htmlspecialchars($profile->getBestName()), + htmlspecialchars($question->title), + htmlspecialchars($question->description) + ); + } + + /** + * Save a new question notice + * + * @param Profile $profile + * @param string $question + * @param string $title + * @param string $description + * @param array $option // and whatnot + * + * @return Notice saved notice + */ + static function saveNew($profile, $title, $description, $options = array()) + { + $q = new QnA_Question(); + + $q->id = UUID::gen(); + $q->profile_id = $profile->id; + $q->title = $title; + $q->description = $description; + + if (array_key_exists('created', $options)) { + $q->created = $options['created']; + } else { + $q->created = common_sql_now(); + } + + if (array_key_exists('uri', $options)) { + $q->uri = $options['uri']; + } else { + $q->uri = common_local_url( + 'qnashowquestion', + array('id' => $q->id) + ); + } + + common_log(LOG_DEBUG, "Saving question: $q->id $q->uri"); + $q->insert(); + + // TRANS: Notice content creating a question. + // TRANS: %1$s is the title of the question, %2$s is a link to the question. + $content = sprintf( + _m('question: %1$s %2$s'), + $title, + $q->uri + ); + + $link = '' . htmlspecialchars($title) . ''; + // TRANS: Rendered version of the notice content creating a question. + // TRANS: %s a link to the question as link description. + $rendered = sprintf(_m('Question: %s'), $link); + + $tags = array('question'); + $replies = array(); + + $options = array_merge( + array( + 'urls' => array(), + 'rendered' => $rendered, + 'tags' => $tags, + 'replies' => $replies, + 'object_type' => self::OBJECT_TYPE + ), + $options + ); + + if (!array_key_exists('uri', $options)) { + $options['uri'] = $q->uri; + } + + $saved = Notice::saveNew( + $profile->id, + $content, + array_key_exists('source', $options) ? + $options['source'] : 'web', + $options + ); + + return $saved; + } +} diff --git a/plugins/QnA/classes/QnA_Vote.php b/plugins/QnA/classes/QnA_Vote.php new file mode 100644 index 0000000000..ad579666b8 --- /dev/null +++ b/plugins/QnA/classes/QnA_Vote.php @@ -0,0 +1,160 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2011, StatusNet, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +/** + * For storing votes on question and answers + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * @see DB_DataObject + */ +class QnA_Vote extends Managed_DataObject +{ + const UP = 'http://activitystrea.ms/schema/1.0/like'; + const DOWN = 'http://activityschema.org/object/dislike'; // Gar! + + public $__table = 'qna_vote'; // table name + public $id; // char(36) primary key not null -> UUID + public $question_id; // char(36) -> question.id UUID + public $answer_id; // char(36) -> question.id UUID + public $type; // tinyint -> vote: up (1) or down (-1) + public $profile_id; // int -> question.id + public $created; // datetime + + /** + * Get an instance by key + * + * This is a utility method to get a single instance with a given key value. + * + * @param string $k Key to use to lookup + * @param mixed $v Value to lookup + * + * @return QnA_Vote object found, or null for no hits + * + */ + function staticGet($k, $v=null) + { + return Memcached_DataObject::staticGet('QnA_Vote', $k, $v); + } + + /** + * Get an instance by compound key + * + * This is a utility method to get a single instance with a given set of + * key-value pairs. Usually used for the primary key for a compound key; thus + * the name. + * + * @param array $kv array of key-value mappings + * + * @return QnA_Vote object found, or null for no hits + * + */ + function pkeyGet($kv) + { + return Memcached_DataObject::pkeyGet('QnA_Vote', $kv); + } + + /** + * The One True Thingy that must be defined and declared. + */ + public static function schemaDef() + { + return array( + 'description' => 'For storing votes on questions and answers', + 'fields' => array( + 'id' => array( + 'type' => 'char', + 'length' => 36, + 'not null' => true, + 'description' => 'UUID of the vote' + ), + 'question_id' => array( + 'type' => 'char', + 'length' => 36, + 'not null' => true, + 'description' => 'UUID of question being voted on' + ), + 'answer_id' => array( + 'type' => 'char', + 'length' => 36, + 'not null' => true, + 'description' => 'UUID of answer being voted on' + ), + 'vote' => array('type' => 'int', 'size' => 'tiny'), + 'profile_id' => array('type' => 'int'), + 'created' => array('type' => 'datetime', 'not null' => true), + ), + 'primary key' => array('id'), + 'indexes' => array( + 'profile_id_question_Id_index' => array( + 'profile_id', + 'question_id' + ), + 'profile_id_question_Id_index' => array( + 'profile_id', + 'answer_id' + ) + ) + ); + } + + /** + * Save a vote on a question or answer + * + * @param Profile $profile + * @param QnA_Question the question being voted on + * @param QnA_Answer the answer being voted on + * @param vote + * @param array + * + * @return Void + */ + static function save($profile, $question, $answer, $vote) + { + $v = new QnA_Vote(); + $v->id = UUID::gen(); + $v->profile_id = $profile->id; + $v->question_id = $question->id; + $v->answer_id = $answer->id; + $v->vote = $vote; + $v->created = common_sql_now(); + + common_log(LOG_DEBUG, "Saving vote: $v->id $v->vote"); + + $v->insert(); + } +} diff --git a/plugins/QnA/css/qna.css b/plugins/QnA/css/qna.css new file mode 100644 index 0000000000..4701b5ab03 --- /dev/null +++ b/plugins/QnA/css/qna.css @@ -0,0 +1 @@ +/* stubb for q&a css */ diff --git a/plugins/QnA/lib/qnaanswerform.php b/plugins/QnA/lib/qnaanswerform.php new file mode 100644 index 0000000000..8d78213d7c --- /dev/null +++ b/plugins/QnA/lib/qnaanswerform.php @@ -0,0 +1,122 @@ +. + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Form to add a new answer to a question + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +class QnaanswerForm extends Form +{ + protected $question; + + /** + * Construct a new answer form + * + * @param QnA_Question $question + * @param HTMLOutputter $out output channel + * + * @return void + */ + function __construct(QnA_Question $question, HTMLOutputter $out) + { + parent::__construct($out); + $this->question = $question; + } + + /** + * ID of the form + * + * @return int ID of the form + */ + function id() + { + return 'answer-form'; + } + + /** + * class of the form + * + * @return string class of the form + */ + function formClass() + { + return 'form_settings ajax'; + } + + /** + * Action of the form + * + * @return string URL of the action + */ + function action() + { + return common_local_url('qnanewanswer'); + } + + /** + * Data elements of the form + * + * @return void + */ + function formData() + { + $question = $this->question; + $out = $this->out; + $id = "question-" . $question->id; + + $out->element('p', 'answer', $question->title); + $out->hidden('id', $id); + $out->element('input', array('type' => 'text', 'name' => 'answer')); + } + + /** + * Action elements + * + * @return void + */ + function formActions() + { + // TRANS: Button text for submitting a poll response. + $this->out->submit('submit', _m('BUTTON', 'Submit')); + } +} + diff --git a/plugins/QnA/lib/qnaquestionform.php b/plugins/QnA/lib/qnaquestionform.php new file mode 100644 index 0000000000..9d0c2aad59 --- /dev/null +++ b/plugins/QnA/lib/qnaquestionform.php @@ -0,0 +1,137 @@ +. + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Form to add a new question + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +class QnaquestionForm extends Form +{ + protected $title; + protected $description; + + /** + * Construct a new question form + * + * @param HTMLOutputter $out output channel + * + * @return void + */ + function __construct($out = null, $title = null, $description = null, $options = null) + { + parent::__construct($out); + $this->title = $title; + $this->description = $description; + } + + /** + * ID of the form + * + * @return int ID of the form + */ + function id() + { + return 'newquestion-form'; + } + + /** + * class of the form + * + * @return string class of the form + */ + function formClass() + { + return 'form_settings ajax-notice'; + } + + /** + * Action of the form + * + * @return string URL of the action + */ + function action() + { + return common_local_url('qnanewquestion'); + } + + /** + * Data elements of the form + * + * @return void + */ + function formData() + { + $this->out->elementStart('fieldset', array('id' => 'newquestion-data')); + $this->out->elementStart('ul', 'form_data'); + + $this->li(); + $this->out->input( + 'title', + _m('Title'), + $this->title, + _m('Title of your question') + ); + $this->unli(); + $this->li(); + $this->out->textarea( + 'description', + _m('Description'), + $this->description, + _m('Your question in detail') + ); + $this->unli(); + + $this->out->elementEnd('ul'); + $this->out->elementEnd('fieldset'); + } + + /** + * Action elements + * + * @return void + */ + function formActions() + { + // TRANS: Button text for saving a new question. + $this->out->submit('submit', _m('BUTTON', 'Save')); + } +} diff --git a/plugins/QnA/lib/qnareviseanswerform.php b/plugins/QnA/lib/qnareviseanswerform.php new file mode 100644 index 0000000000..48f47e5e98 --- /dev/null +++ b/plugins/QnA/lib/qnareviseanswerform.php @@ -0,0 +1,122 @@ +. + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Form to revise a question + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +class QnareviseanswerForm extends Form +{ + protected $question; + protected $answer; + + /** + * Construct a new answer form + * + * @param QnA_Answer $answer + * @param HTMLOutputter $out output channel + * + * @return void + */ + function __construct(QnA_Answer $answer, HTMLOutputter $out) + { + parent::__construct($out); + $this->question = $answer->getQuestion(); + $this->answer = $answer; + } + + /** + * ID of the form + * + * @return int ID of the form + */ + function id() + { + return 'answered-form'; + } + + /** + * class of the form + * + * @return string class of the form + */ + function formClass() + { + return 'form_settings ajax'; + } + + /** + * Action of the form + * + * @return string URL of the action + */ + function action() + { + return common_local_url('qnareviseanswer', array('id' => $this->question->id)); + } + + /** + * Data elements of the form + * + * @return void + */ + function formData() + { + $question = $this->question; + $out = $this->out; + $id = "question-" . $question->id; + + $out->element('p', 'Your answer to:', $question->title); + $out->textarea('answerText', 'You said:', $this->answer->content); + } + + /** + * Action elements + * + * @return void + */ + function formActions() + { + // TRANS: Button text for submitting a poll response. + $this->out->submit('submit', _m('BUTTON', 'Submit')); + } +} diff --git a/plugins/QnA/lib/qnavoteform.php b/plugins/QnA/lib/qnavoteform.php new file mode 100644 index 0000000000..f6976c8834 --- /dev/null +++ b/plugins/QnA/lib/qnavoteform.php @@ -0,0 +1,121 @@ +. + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Form to add a new answer to a question + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +class QnavoteForm extends Form +{ + protected $question; + + /** + * Construct a new answer form + * + * @param QnA_Question $question + * @param HTMLOutputter $out output channel + * + * @return void + */ + function __construct(QnA_Question $question, HTMLOutputter $out) + { + parent::__construct($out); + $this->question = $question; + } + + /** + * ID of the form + * + * @return int ID of the form + */ + function id() + { + return 'answer-form'; + } + + /** + * class of the form + * + * @return string class of the form + */ + function formClass() + { + return 'form_settings ajax'; + } + + /** + * Action of the form + * + * @return string URL of the action + */ + function action() + { + return common_local_url('qnavote', array('id' => $this->question->id)); + } + + /** + * Data elements of the form + * + * @return void + */ + function formData() + { + $question = $this->question; + $out = $this->out; + $id = "question-" . $question->id; + + $out->element('p', 'answer', $question->question); + $out->element('input', array('type' => 'text', 'name' => 'vote')); + } + + /** + * Action elements + * + * @return void + */ + function formActions() + { + // TRANS: Button text for submitting a poll response. + $this->out->submit('submit', _m('BUTTON', 'Submit')); + } +} + diff --git a/plugins/QnA/locale/QnA.pot b/plugins/QnA/locale/QnA.pot new file mode 100644 index 0000000000..43fa2f3b1a --- /dev/null +++ b/plugins/QnA/locale/QnA.pot @@ -0,0 +1,173 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. TRANS: Title for Question page. +#: actions/qnanewquestion.php:62 +msgid "New question" +msgstr "" + +#: actions/qnanewquestion.php:81 +msgid "You must be logged in to post a question." +msgstr "" + +#. TRANS: Client exception thrown trying to create a question without a title. +#: actions/qnanewquestion.php:129 +msgid "Question must have a title." +msgstr "" + +#. TRANS: Page title after sending a notice. +#: actions/qnanewquestion.php:149 +msgid "Question posted" +msgstr "" + +#: actions/qnashowanswer.php:67 actions/qnashowanswer.php:80 +msgid "No such answer." +msgstr "" + +#: actions/qnashowanswer.php:73 +msgid "No question for this answer." +msgstr "" + +#. TRANS: Client exception thrown trying to view a question of a non-existing user. +#: actions/qnashowanswer.php:86 actions/qnashowquestion.php:83 +msgid "No such user." +msgstr "" + +#. TRANS: Server exception thrown trying to view a question for a user for which the profile could not be loaded. +#: actions/qnashowanswer.php:92 actions/qnashowquestion.php:90 +msgid "User without a profile." +msgstr "" + +#. TRANS: Page title. +#. TRANS: %1$s is the user who answered a question, %2$s is the question. +#: actions/qnashowanswer.php:114 +#, php-format +msgid "1$%s's answer to \"%2$s\"" +msgstr "" + +#. TRANS: Client exception thrown trying to view a non-existing question. +#: actions/qnashowquestion.php:68 +msgid "No such question." +msgstr "" + +#. TRANS: Client exception thrown trying to view a non-existing question notice. +#: actions/qnashowquestion.php:76 +msgid "No such question notice." +msgstr "" + +#. TRANS: Page title for a question. +#. TRANS: %1$s is the nickname of the user who asked the question, %2$s is the question. +#: actions/qnashowquestion.php:114 +#, php-format +msgid "%1$s's question: %2$s" +msgstr "" + +#. TRANS: Page title for and answer to a question. +#: actions/qnanewanswer.php:63 actions/qnavote.php:63 +msgid "Answer" +msgstr "" + +#. TRANS: Client exception thrown trying to answer a question while not logged in. +#: actions/qnanewanswer.php:85 actions/qnavote.php:84 +msgid "You must be logged in to answer to a question." +msgstr "" + +#. TRANS: Client exception thrown trying to respond to a non-existing question. +#: actions/qnanewanswer.php:103 actions/qnavote.php:96 +msgid "Invalid or missing question." +msgstr "" + +#. TRANS: Page title after sending an answer. +#: actions/qnanewanswer.php:158 actions/qnavote.php:150 +msgid "Answers" +msgstr "" + +#: QnAPlugin.php:159 +msgid "Question and Answers micro-app." +msgstr "" + +#: QnAPlugin.php:165 +msgid "Question" +msgstr "" + +#: QnAPlugin.php:307 +#, php-format +msgid "Unexpected type for QnA plugin: %s." +msgstr "" + +#: QnAPlugin.php:338 +msgid "Question data is missing." +msgstr "" + +#: classes/QnA_Answer.php:225 +#, php-format +msgid "%1$s answered the question \"%2$s\": %3$s" +msgstr "" + +#. TRANS: Rendered version of the notice content answering a question. +#. TRANS: %s a link to the question with question title as the link content. +#: classes/QnA_Answer.php:268 classes/QnA_Answer.php:275 +#, php-format +msgid "answered \"%s\"" +msgstr "" + +#: classes/QnA_Question.php:255 +#, php-format +msgid "%1$s asked the question \"%2$s\": %3$s" +msgstr "" + +#: classes/QnA_Question.php:307 +#, php-format +msgid "question: %1$s %2$s" +msgstr "" + +#. TRANS: Rendered version of the notice content creating a question. +#. TRANS: %s a link to the question as link description. +#: classes/QnA_Question.php:315 +#, php-format +msgid "Question: %s" +msgstr "" + +#. TRANS: Button text for submitting a poll response. +#: lib/qnareviseanswerform.php:120 lib/qnavoteform.php:118 +#: lib/qnaanswerform.php:119 +msgctxt "BUTTON" +msgid "Submit" +msgstr "" + +#: lib/qnaquestionform.php:109 +msgid "Title" +msgstr "" + +#: lib/qnaquestionform.php:111 +msgid "Title of your question" +msgstr "" + +#: lib/qnaquestionform.php:117 +msgid "Description" +msgstr "" + +#: lib/qnaquestionform.php:119 +msgid "Your question in detail" +msgstr "" + +#. TRANS: Button text for saving a new question. +#: lib/qnaquestionform.php:135 +msgctxt "BUTTON" +msgid "Save" +msgstr "" diff --git a/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po b/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po new file mode 100644 index 0000000000..b8db5e56f9 --- /dev/null +++ b/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po @@ -0,0 +1,147 @@ +# Translation of StatusNet - QnA to Macedonian (Македонски) +# Exported from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - QnA\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:10+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-03 13:41:44+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-qna\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: Title for Question page. +msgid "New question" +msgstr "Ново прашање" + +msgid "You must be logged in to post a question." +msgstr "Мора да сте најавени за да поставувате прашања." + +#. TRANS: Client exception thrown trying to create a question without a title. +msgid "Question must have a title." +msgstr "Прашањето мора да има наслов." + +#. TRANS: Page title after sending a notice. +msgid "Question posted" +msgstr "Прашањето е поставено" + +msgid "No such answer." +msgstr "Нема таков одговор." + +msgid "No question for this answer." +msgstr "Нема прашање за овој одговор." + +#. TRANS: Client exception thrown trying to view a question of a non-existing user. +msgid "No such user." +msgstr "Нема таков корисник." + +#. TRANS: Server exception thrown trying to view a question for a user for which the profile could not be loaded. +msgid "User without a profile." +msgstr "Корисникот е без профил." + +#. TRANS: Page title. +#. TRANS: %1$s is the user who answered a question, %2$s is the question. +#, fuzzy, php-format +msgid "1$%s's answer to \"%2$s\"" +msgstr "Одговорот на %s на прашањето „%s“" + +#. TRANS: Client exception thrown trying to view a non-existing question. +msgid "No such question." +msgstr "Нема такво прашање." + +#. TRANS: Client exception thrown trying to view a non-existing question notice. +msgid "No such question notice." +msgstr "Нема таква забелешка со прашање." + +#. TRANS: Page title for a question. +#. TRANS: %1$s is the nickname of the user who asked the question, %2$s is the question. +#, php-format +msgid "%1$s's question: %2$s" +msgstr "Прашање на %1$s: %2$s" + +#. TRANS: Page title for and answer to a question. +msgid "Answer" +msgstr "Одговор" + +#. TRANS: Client exception thrown trying to answer a question while not logged in. +msgid "You must be logged in to answer to a question." +msgstr "Мора да сте најавени за да одговарате на прашања." + +#. TRANS: Client exception thrown trying to respond to a non-existing question. +msgid "Invalid or missing question." +msgstr "Неважечко или непостоечко прашање." + +#. TRANS: Page title after sending an answer. +msgid "Answers" +msgstr "Одговори" + +msgid "Question and Answers micro-app." +msgstr "Приложен микропрограм за прашања и одговори." + +msgid "Question" +msgstr "Прашање" + +#, php-format +msgid "Unexpected type for QnA plugin: %s." +msgstr "Неочекуван тип на приклучок за прашања и одговори: %s." + +#, fuzzy +msgid "Question data is missing." +msgstr "Прашалните податоци недостасуваат" + +#, php-format +msgid "%1$s answered the question \"%2$s\": %3$s" +msgstr "%1$s одговори на прашањето „%2$s“: %3$s" + +#. TRANS: Rendered version of the notice content answering a question. +#. TRANS: %s a link to the question with question title as the link content. +#, php-format +msgid "answered \"%s\"" +msgstr "одговори на „%s“" + +#, php-format +msgid "%1$s asked the question \"%2$s\": %3$s" +msgstr "%1$s го постави прашањето „%2$s“: %3$s" + +#, php-format +msgid "question: %1$s %2$s" +msgstr "прашање: %1$s %2$s" + +#. TRANS: Rendered version of the notice content creating a question. +#. TRANS: %s a link to the question as link description. +#, php-format +msgid "Question: %s" +msgstr "Прашање: %s" + +#. TRANS: Button text for submitting a poll response. +msgctxt "BUTTON" +msgid "Submit" +msgstr "Поднеси" + +msgid "Title" +msgstr "Наслов" + +msgid "Title of your question" +msgstr "Наслов на прашањето" + +msgid "Description" +msgstr "Опис" + +msgid "Your question in detail" +msgstr "Вашето прашање поподробно" + +#. TRANS: Button text for saving a new question. +msgctxt "BUTTON" +msgid "Save" +msgstr "Зачувај" diff --git a/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po b/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po new file mode 100644 index 0000000000..34b8b7d4c6 --- /dev/null +++ b/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po @@ -0,0 +1,148 @@ +# Translation of StatusNet - QnA to Dutch (Nederlands) +# Exported from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - QnA\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:11+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-03 13:41:44+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-qna\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Title for Question page. +msgid "New question" +msgstr "Nieuwe vraag" + +msgid "You must be logged in to post a question." +msgstr "" +"U moet aangemeld zijn om een vraag te kunnen stellen te kunnen stellen." + +#. TRANS: Client exception thrown trying to create a question without a title. +msgid "Question must have a title." +msgstr "U moet de vraag een naam geven." + +#. TRANS: Page title after sending a notice. +msgid "Question posted" +msgstr "De vraag is gesteld" + +msgid "No such answer." +msgstr "Dat antwoord bestaat niet." + +msgid "No question for this answer." +msgstr "Er is geen vraag voor dit antwoord." + +#. TRANS: Client exception thrown trying to view a question of a non-existing user. +msgid "No such user." +msgstr "Deze gebruiker bestaat niet." + +#. TRANS: Server exception thrown trying to view a question for a user for which the profile could not be loaded. +msgid "User without a profile." +msgstr "Gebruiker zonder profiel." + +#. TRANS: Page title. +#. TRANS: %1$s is the user who answered a question, %2$s is the question. +#, fuzzy, php-format +msgid "1$%s's answer to \"%2$s\"" +msgstr "Antwoord van %s op \"%s\"" + +#. TRANS: Client exception thrown trying to view a non-existing question. +msgid "No such question." +msgstr "De vraag bestaat niet." + +#. TRANS: Client exception thrown trying to view a non-existing question notice. +msgid "No such question notice." +msgstr "De vraagmededeling bestaat niet." + +#. TRANS: Page title for a question. +#. TRANS: %1$s is the nickname of the user who asked the question, %2$s is the question. +#, php-format +msgid "%1$s's question: %2$s" +msgstr "Vraag van %1$s: %2$s" + +#. TRANS: Page title for and answer to a question. +msgid "Answer" +msgstr "Antwoorden" + +#. TRANS: Client exception thrown trying to answer a question while not logged in. +msgid "You must be logged in to answer to a question." +msgstr "U moet aangemeld zijn om een vraag te kunnen beantwoorden." + +#. TRANS: Client exception thrown trying to respond to a non-existing question. +msgid "Invalid or missing question." +msgstr "Ongeldige of ontbrekende vraag." + +#. TRANS: Page title after sending an answer. +msgid "Answers" +msgstr "Antwoorden" + +msgid "Question and Answers micro-app." +msgstr "Microapplicatie voor vragen en antwoorden." + +msgid "Question" +msgstr "Vraag" + +#, php-format +msgid "Unexpected type for QnA plugin: %s." +msgstr "Onverwacht type voor plug-in Vraag en Antwoord: %s." + +#, fuzzy +msgid "Question data is missing." +msgstr "De vraaggegevens ontbreken." + +#, php-format +msgid "%1$s answered the question \"%2$s\": %3$s" +msgstr "%1$s heeft de vraag \"%2$s\" beantwoord: %3$s" + +#. TRANS: Rendered version of the notice content answering a question. +#. TRANS: %s a link to the question with question title as the link content. +#, php-format +msgid "answered \"%s\"" +msgstr "heeft geantwoord \"%s\"" + +#, php-format +msgid "%1$s asked the question \"%2$s\": %3$s" +msgstr "%1$s heeft de vraag \"%2$s\" gesteld: %3$s" + +#, php-format +msgid "question: %1$s %2$s" +msgstr "vraag: %1$s %2$s" + +#. TRANS: Rendered version of the notice content creating a question. +#. TRANS: %s a link to the question as link description. +#, php-format +msgid "Question: %s" +msgstr "Vraag: %s" + +#. TRANS: Button text for submitting a poll response. +msgctxt "BUTTON" +msgid "Submit" +msgstr "Opslaan" + +msgid "Title" +msgstr "Naam" + +msgid "Title of your question" +msgstr "Naam van uw vraag" + +msgid "Description" +msgstr "Beschrijving" + +msgid "Your question in detail" +msgstr "Details van uw vraag" + +#. TRANS: Button text for saving a new question. +msgctxt "BUTTON" +msgid "Save" +msgstr "Opslaan" diff --git a/plugins/RSSCloud/LoggingAggregator.php b/plugins/RSSCloud/LoggingAggregator.php index c7d7a40e3b..26fde9c3e2 100644 --- a/plugins/RSSCloud/LoggingAggregator.php +++ b/plugins/RSSCloud/LoggingAggregator.php @@ -82,7 +82,7 @@ class LoggingAggregatorAction extends Action parent::handle($args); if (empty($this->url)) { - $this->showError(_('A URL parameter is required.')); + $this->showError(_m('A URL parameter is required.')); return; } diff --git a/plugins/RSSCloud/locale/RSSCloud.pot b/plugins/RSSCloud/locale/RSSCloud.pot index 6774f641fe..bb587ca9da 100644 --- a/plugins/RSSCloud/locale/RSSCloud.pot +++ b/plugins/RSSCloud/locale/RSSCloud.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,10 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: LoggingAggregator.php:85 +msgid "A URL parameter is required." +msgstr "" + #: LoggingAggregator.php:93 msgid "This resource requires an HTTP GET." msgstr "" diff --git a/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po index f3fd767393..e8bd186811 100644 --- a/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po @@ -11,18 +11,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:40+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:11+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "A URL parameter is required." +msgstr "" + msgid "This resource requires an HTTP GET." msgstr "Diese Ressource erfordert eine HTTP-GET-Anfrage." diff --git a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po index a0898c4459..8e30cf7418 100644 --- a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po @@ -9,18 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:40+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:11+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgid "A URL parameter is required." +msgstr "" + msgid "This resource requires an HTTP GET." msgstr "Cette ressource nécessite une requête HTTP GET." diff --git a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po index 12481f2693..be0cac0f98 100644 --- a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po @@ -9,18 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:40+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:11+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "A URL parameter is required." +msgstr "" + msgid "This resource requires an HTTP GET." msgstr "Iste ressource require un HTTP GET." diff --git a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po index 88988ca15f..dae271c59e 100644 --- a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po @@ -9,18 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:40+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:11+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +msgid "A URL parameter is required." +msgstr "Се бара параметар за URL." + msgid "This resource requires an HTTP GET." msgstr "Овој ресурс бара HTTP GET." diff --git a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po index 826238466d..a48716f0b1 100644 --- a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po @@ -9,18 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:40+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:12+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "A URL parameter is required." +msgstr "Er is een URL-parameter vereist." + msgid "This resource requires an HTTP GET." msgstr "Deze bron heeft een HTTP GET nodig." diff --git a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po index 2f762118ab..2706811a44 100644 --- a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po @@ -9,18 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:40+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:12+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "A URL parameter is required." +msgstr "" + msgid "This resource requires an HTTP GET." msgstr "Ang pinagkunang ito ay nangangailangan ng HTTP GET." diff --git a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po index ce9ba8c4c1..7529ea0a87 100644 --- a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po @@ -9,19 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:40+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:12+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\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" +msgid "A URL parameter is required." +msgstr "" + msgid "This resource requires an HTTP GET." msgstr "Цей ресурс вимагає форми HTTP GET." diff --git a/plugins/Realtime/locale/Realtime.pot b/plugins/Realtime/locale/Realtime.pot index 85ea4e8102..8c15f959c7 100644 --- a/plugins/Realtime/locale/Realtime.pot +++ b/plugins/Realtime/locale/Realtime.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po index 8e66ca6cdd..c8f819b5ae 100644 --- a/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:04+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po index 5360b9fe30..013ecfc088 100644 --- a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:04+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po index 40e13cbe7c..279b66da4d 100644 --- a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:04+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po index aef1a6d327..b69e8a76ef 100644 --- a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:04+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po index b7cb7d3494..f683e49cd0 100644 --- a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:04+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po index 07923a5189..5e09576978 100644 --- a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:04+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po index 4f6855edfd..fd7a808e60 100644 --- a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:05+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po index 3f2386af58..ffccc3a8c0 100644 --- a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:05+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po index ac4d6a405a..db27f5ed96 100644 --- a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:05+0000\n" "Language-Team: Nepali \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ne\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po index b4c2e69af4..ac4b40edd2 100644 --- a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:05+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po index 4b4b7ad888..08abd055b6 100644 --- a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:05+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po index 3927fa9761..812fd78546 100644 --- a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:05+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Recaptcha/RecaptchaPlugin.php b/plugins/Recaptcha/RecaptchaPlugin.php index 5a33e7132e..adbd022e80 100644 --- a/plugins/Recaptcha/RecaptchaPlugin.php +++ b/plugins/Recaptcha/RecaptchaPlugin.php @@ -93,7 +93,7 @@ class RecaptchaPlugin extends Plugin if (!$resp->is_valid) { if($this->display_errors) { - $action->showForm(sprintf(_("(reCAPTCHA error: %s)", $resp->error))); + $action->showForm(sprintf(_m("(reCAPTCHA error: %s)", $resp->error))); } $action->showForm(_m("Captcha does not match!")); return false; diff --git a/plugins/Recaptcha/locale/Recaptcha.pot b/plugins/Recaptcha/locale/Recaptcha.pot index 026f283501..dcf889976a 100644 --- a/plugins/Recaptcha/locale/Recaptcha.pot +++ b/plugins/Recaptcha/locale/Recaptcha.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po index a15eb31c7e..b04e2aaee2 100644 --- a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:05+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po index 291e1c776a..7ced1fd011 100644 --- a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:06+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po index 772ffe3083..1136603633 100644 --- a/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:06+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po index d112560251..7329df0353 100644 --- a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:06+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po index 09a0501960..994e93cba2 100644 --- a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:06+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po index 3680ac656d..6b429a5e2e 100644 --- a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:37+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:06+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po index da7ea9db57..f300f79f8a 100644 --- a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:06+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po index f203f063f8..c201de04d6 100644 --- a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:37+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:06+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po index a04c7cde7b..8dcf18e479 100644 --- a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:37+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:06+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po index 28de2da4fc..ca7420496e 100644 --- a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:37+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:06+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po index 39858658c1..8aadb55ec6 100644 --- a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:37+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:06+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/RegisterThrottle/locale/RegisterThrottle.pot b/plugins/RegisterThrottle/locale/RegisterThrottle.pot index 018f7f90d0..4797cddeb9 100644 --- a/plugins/RegisterThrottle/locale/RegisterThrottle.pot +++ b/plugins/RegisterThrottle/locale/RegisterThrottle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po index bb1c99231a..d040838427 100644 --- a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:37+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:07+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po index d683528cf5..e2e7c2f09f 100644 --- a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:37+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:07+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po index 4d4563695d..5623546bb7 100644 --- a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:37+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:07+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po index 2f358133a7..1603aa45a7 100644 --- a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:37+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:07+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po index 4ba797310c..f80a568599 100644 --- a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:37+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:07+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po index 5b9b0fc011..a58ca29e85 100644 --- a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:38+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:07+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po index 9f5eac3b24..90fa983ee4 100644 --- a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:38+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:07+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RequireValidatedEmail/confirmfirstemail.php b/plugins/RequireValidatedEmail/confirmfirstemail.php index 1f22487a68..974a95a7cf 100644 --- a/plugins/RequireValidatedEmail/confirmfirstemail.php +++ b/plugins/RequireValidatedEmail/confirmfirstemail.php @@ -66,7 +66,7 @@ class ConfirmfirstemailAction extends Action $user = common_current_user(); if (!empty($user)) { - throw new ClientException(_('You are already logged in.')); + throw new ClientException(_m('You are already logged in.')); } $this->code = $this->trimmed('code'); @@ -74,25 +74,25 @@ class ConfirmfirstemailAction extends Action $this->confirm = Confirm_address::staticGet('code', $this->code); if (empty($this->confirm)) { - throw new ClientException(_('Confirmation code not found.')); + throw new ClientException(_m('Confirmation code not found.')); return; } $this->user = User::staticGet('id', $this->confirm->user_id); if (empty($this->user)) { - throw new ServerException(_('No user for that confirmation code.')); + throw new ServerException(_m('No user for that confirmation code.')); } $type = $this->confirm->address_type; if ($type != 'email') { - throw new ServerException(sprintf(_('Unrecognized address type %s.'), $type)); + throw new ServerException(sprintf(_m('Unrecognized address type %s.'), $type)); } if (!empty($this->user->email) && $this->user->email == $confirm->address) { // TRANS: Client error for an already confirmed email/jabber/sms address. - throw new ClientException(_('That address has already been confirmed.')); + throw new ClientException(_m('That address has already been confirmed.')); } if ($this->isPost()) { @@ -103,10 +103,10 @@ class ConfirmfirstemailAction extends Action $confirm = $this->trimmed('confirm'); if (strlen($password) < 6) { - throw new ClientException(_('Password too short.')); + throw new ClientException(_m('Password too short.')); return; } else if (0 != strcmp($password, $confirm)) { - throw new ClientException(_("Passwords don't match.")); + throw new ClientException(_m("Passwords do not match.")); return; } @@ -162,7 +162,7 @@ class ConfirmfirstemailAction extends Action function showContent() { $this->element('p', 'instructions', - sprintf(_('You have confirmed the email address for your new user account %s. '. + sprintf(_m('You have confirmed the email address for your new user account %s. '. 'Use the form below to set your new password.'), $this->user->nickname)); @@ -172,7 +172,7 @@ class ConfirmfirstemailAction extends Action function title() { - return _('Set a password'); + return _m('Set a password'); } } @@ -188,7 +188,7 @@ class ConfirmFirstEmailForm extends Form function formLegend() { - return _('Confirm email'); + return _m('Confirm email'); } function action() @@ -206,18 +206,18 @@ class ConfirmFirstEmailForm extends Form { $this->out->elementStart('ul', 'form_data'); $this->out->elementStart('li'); - $this->out->password('password', _('New password'), - _('6 or more characters.')); + $this->out->password('password', _m('New password'), + _m('6 or more characters.')); $this->out->elementEnd('li'); $this->out->elementStart('li'); - $this->out->password('confirm', _('Confirm'), - _('Same as password above.')); + $this->out->password('confirm', _m('Confirm'), + _m('Same as password above.')); $this->out->elementEnd('li'); $this->out->elementEnd('ul'); } function formActions() { - $this->out->submit('save', _('Save')); + $this->out->submit('save', _m('Save')); } } diff --git a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot index 6b7b2cc616..adc66babea 100644 --- a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot +++ b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -27,3 +27,68 @@ msgstr "" #: RequireValidatedEmailPlugin.php:245 msgid "Disables posting without a validated email address." msgstr "" + +#: confirmfirstemail.php:69 +msgid "You are already logged in." +msgstr "" + +#: confirmfirstemail.php:77 +msgid "Confirmation code not found." +msgstr "" + +#: confirmfirstemail.php:84 +msgid "No user for that confirmation code." +msgstr "" + +#: confirmfirstemail.php:90 +#, php-format +msgid "Unrecognized address type %s." +msgstr "" + +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: confirmfirstemail.php:95 +msgid "That address has already been confirmed." +msgstr "" + +#: confirmfirstemail.php:106 +msgid "Password too short." +msgstr "" + +#: confirmfirstemail.php:109 +msgid "Passwords do not match." +msgstr "" + +#: confirmfirstemail.php:165 +#, php-format +msgid "" +"You have confirmed the email address for your new user account %s. Use the " +"form below to set your new password." +msgstr "" + +#: confirmfirstemail.php:175 +msgid "Set a password" +msgstr "" + +#: confirmfirstemail.php:191 +msgid "Confirm email" +msgstr "" + +#: confirmfirstemail.php:209 +msgid "New password" +msgstr "" + +#: confirmfirstemail.php:210 +msgid "6 or more characters." +msgstr "" + +#: confirmfirstemail.php:213 +msgid "Confirm" +msgstr "" + +#: confirmfirstemail.php:214 +msgid "Same as password above." +msgstr "" + +#: confirmfirstemail.php:221 +msgid "Save" +msgstr "" diff --git a/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po index 40825fb053..a171af4917 100644 --- a/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:38+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:23+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" @@ -29,3 +29,53 @@ msgstr "Du musst eine E-Mail-Adresse angeben, um dich zu registrieren." msgid "Disables posting without a validated email address." msgstr "Deaktiviert Posten ohne gültige E-Mail-Adresse." + +msgid "You are already logged in." +msgstr "" + +msgid "Confirmation code not found." +msgstr "" + +msgid "No user for that confirmation code." +msgstr "" + +#, php-format +msgid "Unrecognized address type %s." +msgstr "" + +#. TRANS: Client error for an already confirmed email/jabber/sms address. +msgid "That address has already been confirmed." +msgstr "" + +msgid "Password too short." +msgstr "" + +msgid "Passwords do not match." +msgstr "" + +#, php-format +msgid "" +"You have confirmed the email address for your new user account %s. Use the " +"form below to set your new password." +msgstr "" + +msgid "Set a password" +msgstr "" + +msgid "Confirm email" +msgstr "" + +msgid "New password" +msgstr "" + +msgid "6 or more characters." +msgstr "" + +msgid "Confirm" +msgstr "" + +msgid "Same as password above." +msgstr "" + +msgid "Save" +msgstr "" diff --git a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po index c1b7e7f39c..40d32d9ada 100644 --- a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:38+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:23+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" @@ -30,3 +30,53 @@ msgstr "Vous devez fournir une adresse électronique avant de vous enregistrer." msgid "Disables posting without a validated email address." msgstr "" "Désactive le postage pour ceux qui n’ont pas d’adresse électronique valide." + +msgid "You are already logged in." +msgstr "" + +msgid "Confirmation code not found." +msgstr "" + +msgid "No user for that confirmation code." +msgstr "" + +#, php-format +msgid "Unrecognized address type %s." +msgstr "" + +#. TRANS: Client error for an already confirmed email/jabber/sms address. +msgid "That address has already been confirmed." +msgstr "" + +msgid "Password too short." +msgstr "" + +msgid "Passwords do not match." +msgstr "" + +#, php-format +msgid "" +"You have confirmed the email address for your new user account %s. Use the " +"form below to set your new password." +msgstr "" + +msgid "Set a password" +msgstr "" + +msgid "Confirm email" +msgstr "" + +msgid "New password" +msgstr "" + +msgid "6 or more characters." +msgstr "" + +msgid "Confirm" +msgstr "" + +msgid "Same as password above." +msgstr "" + +msgid "Save" +msgstr "" diff --git a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po index 0fa999f6f5..e9a06dde21 100644 --- a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:38+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" @@ -29,3 +29,53 @@ msgstr "Tu debe fornir un adresse de e-mail pro poter crear un conto." msgid "Disables posting without a validated email address." msgstr "Disactiva le publication de messages sin adresse de e-mail validate." + +msgid "You are already logged in." +msgstr "" + +msgid "Confirmation code not found." +msgstr "" + +msgid "No user for that confirmation code." +msgstr "" + +#, php-format +msgid "Unrecognized address type %s." +msgstr "" + +#. TRANS: Client error for an already confirmed email/jabber/sms address. +msgid "That address has already been confirmed." +msgstr "" + +msgid "Password too short." +msgstr "" + +msgid "Passwords do not match." +msgstr "" + +#, php-format +msgid "" +"You have confirmed the email address for your new user account %s. Use the " +"form below to set your new password." +msgstr "" + +msgid "Set a password" +msgstr "" + +msgid "Confirm email" +msgstr "" + +msgid "New password" +msgstr "" + +msgid "6 or more characters." +msgstr "" + +msgid "Confirm" +msgstr "" + +msgid "Same as password above." +msgstr "" + +msgid "Save" +msgstr "" diff --git a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po index 23c76d7134..81c6f09f54 100644 --- a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:38+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:09+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" @@ -31,3 +31,55 @@ msgstr "За да се регистрирате, ќе мора да наведе msgid "Disables posting without a validated email address." msgstr "Оневозможува објавување без потврдена е-пошта." + +msgid "You are already logged in." +msgstr "Веќе сте најавени." + +msgid "Confirmation code not found." +msgstr "Потврдниот код не е пронајден." + +msgid "No user for that confirmation code." +msgstr "Нема корисник за тој потврден код." + +#, php-format +msgid "Unrecognized address type %s." +msgstr "Непознат тип на адреса %s." + +#. TRANS: Client error for an already confirmed email/jabber/sms address. +msgid "That address has already been confirmed." +msgstr "Таа адреса е веќе потврдена." + +msgid "Password too short." +msgstr "Лозинката е прекратка." + +msgid "Passwords do not match." +msgstr "Лозинките не се совпаѓаат." + +#, php-format +msgid "" +"You have confirmed the email address for your new user account %s. Use the " +"form below to set your new password." +msgstr "" +"Ја потврдивте е-поштата за Вашата нова корисничка сметка %s. Задајте нова " +"лозинка во образецот подолу." + +msgid "Set a password" +msgstr "Задајте лозинка" + +msgid "Confirm email" +msgstr "Потврдете е-пошта" + +msgid "New password" +msgstr "Нова лозинка" + +msgid "6 or more characters." +msgstr "барем 6 знаци." + +msgid "Confirm" +msgstr "Потврди" + +msgid "Same as password above." +msgstr "Исто како лозинката погоре." + +msgid "Save" +msgstr "Зачувај" diff --git a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po index 0f8a548a32..a1ecfaa8f7 100644 --- a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:38+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:09+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" @@ -29,3 +29,55 @@ msgstr "U moet een e-mailadres opgeven om te kunnen registreren." msgid "Disables posting without a validated email address." msgstr "Schakelt berichten plaatsen zonder gevalideerd e-mailadres uit." + +msgid "You are already logged in." +msgstr "U bent al aangemeld." + +msgid "Confirmation code not found." +msgstr "De bevestigingscode is niet gevonden." + +msgid "No user for that confirmation code." +msgstr "Er is geen gebruiker voor die bevestigingscode." + +#, php-format +msgid "Unrecognized address type %s." +msgstr "Onbekend adrestype %s." + +#. TRANS: Client error for an already confirmed email/jabber/sms address. +msgid "That address has already been confirmed." +msgstr "Dit adres is al bevestigd." + +msgid "Password too short." +msgstr "Het wachtwoord is te kort." + +msgid "Passwords do not match." +msgstr "De wachtwoorden komen niet overeen." + +#, php-format +msgid "" +"You have confirmed the email address for your new user account %s. Use the " +"form below to set your new password." +msgstr "" +"U hebt het e-mailadres bevestigd voor uw nieuwe gebruiker %s. Gebruik het " +"formulier hieronder om uw nieuwe wachtwoord in te stellen." + +msgid "Set a password" +msgstr "Stel een wachtwoord in" + +msgid "Confirm email" +msgstr "E-mailadres bevestigen" + +msgid "New password" +msgstr "Nieuw wachtwoord" + +msgid "6 or more characters." +msgstr "Zes of meer tekens." + +msgid "Confirm" +msgstr "Bevestigen" + +msgid "Same as password above." +msgstr "Gelijk aan het wachtwoord hierboven." + +msgid "Save" +msgstr "Opslaan" diff --git a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po index 61186d419e..f0e7d0aa14 100644 --- a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:38+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" @@ -29,3 +29,53 @@ msgstr "Dapat kang magbigay ng isang tirahan ng e-liham upang makapagpatala." msgid "Disables posting without a validated email address." msgstr "" + +msgid "You are already logged in." +msgstr "" + +msgid "Confirmation code not found." +msgstr "" + +msgid "No user for that confirmation code." +msgstr "" + +#, php-format +msgid "Unrecognized address type %s." +msgstr "" + +#. TRANS: Client error for an already confirmed email/jabber/sms address. +msgid "That address has already been confirmed." +msgstr "" + +msgid "Password too short." +msgstr "" + +msgid "Passwords do not match." +msgstr "" + +#, php-format +msgid "" +"You have confirmed the email address for your new user account %s. Use the " +"form below to set your new password." +msgstr "" + +msgid "Set a password" +msgstr "" + +msgid "Confirm email" +msgstr "" + +msgid "New password" +msgstr "" + +msgid "6 or more characters." +msgstr "" + +msgid "Confirm" +msgstr "" + +msgid "Same as password above." +msgstr "" + +msgid "Save" +msgstr "" diff --git a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po index 4c90e89dd1..9cdc55beab 100644 --- a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:38+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" @@ -34,3 +34,53 @@ msgid "Disables posting without a validated email address." msgstr "" "Забороняє надсилання дописів, якщо користувач не має підтвердженої " "електронної адреси." + +msgid "You are already logged in." +msgstr "" + +msgid "Confirmation code not found." +msgstr "" + +msgid "No user for that confirmation code." +msgstr "" + +#, php-format +msgid "Unrecognized address type %s." +msgstr "" + +#. TRANS: Client error for an already confirmed email/jabber/sms address. +msgid "That address has already been confirmed." +msgstr "" + +msgid "Password too short." +msgstr "" + +msgid "Passwords do not match." +msgstr "" + +#, php-format +msgid "" +"You have confirmed the email address for your new user account %s. Use the " +"form below to set your new password." +msgstr "" + +msgid "Set a password" +msgstr "" + +msgid "Confirm email" +msgstr "" + +msgid "New password" +msgstr "" + +msgid "6 or more characters." +msgstr "" + +msgid "Confirm" +msgstr "" + +msgid "Same as password above." +msgstr "" + +msgid "Save" +msgstr "" diff --git a/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot index 0a8d18c958..5f9ae86108 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot +++ b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po index 1b742ebed2..a68c9f49ca 100644 --- a/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:39+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:09+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po index f976902c39..fdd701fa95 100644 --- a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:39+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:09+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po index 873c68e816..462c38af42 100644 --- a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:39+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:09+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po index ceca9269e7..d8681eb705 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:39+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:10+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po index aba664acd6..82e32976d1 100644 --- a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:39+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:10+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po index a1a77505a1..eabce63571 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:39+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:10+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po index 91206392ec..19f54fe359 100644 --- a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:39+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:10+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po index aa2dc12c6e..d15145ebc7 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:39+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:10+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po index 6b028a08e8..c8cd9a8cc8 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:39+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:10+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po index 076e30233f..d59b1413e8 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:39+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:10+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po index f2aa756d99..365dd26649 100644 --- a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:39+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:10+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po index d97b4f3f28..37842de64c 100644 --- a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:39+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:10+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/SQLProfile/locale/SQLProfile.pot b/plugins/SQLProfile/locale/SQLProfile.pot index 6c94bb4d41..5416837332 100644 --- a/plugins/SQLProfile/locale/SQLProfile.pot +++ b/plugins/SQLProfile/locale/SQLProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po index 514f5c65b6..0beb082895 100644 --- a/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:24+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po index 18d723dc62..5e4c406fad 100644 --- a/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:24+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po index efcb0bcc28..fa6ea343cb 100644 --- a/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:24+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po index 9787c9b545..8165a3b298 100644 --- a/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:24+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po index fae22afc55..351639c984 100644 --- a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:24+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po index 6727fd6d86..703c50c865 100644 --- a/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:24+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po index a5d3b24210..4a4250d4fb 100644 --- a/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:25+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po index f34c9e95c5..9ba3084e4d 100644 --- a/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:25+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/Sample/locale/Sample.pot b/plugins/Sample/locale/Sample.pot index b503d5f181..185722349f 100644 --- a/plugins/Sample/locale/Sample.pot +++ b/plugins/Sample/locale/Sample.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po index 35c42f6a72..f1f2960a4a 100644 --- a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:41+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:13+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po index 8f4771f975..5959283e0e 100644 --- a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:41+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:13+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po index db3951165c..1204cd369b 100644 --- a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:41+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:13+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po index e81d8a8b84..92877d9efe 100644 --- a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:41+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:13+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po b/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po index fcbc0f10f0..ccab0967e6 100644 --- a/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:41+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:13+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po index 5304113054..a4839e2c29 100644 --- a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:41+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:13+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po index e1b6c35095..d02d9a8611 100644 --- a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:41+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:13+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po index 2ea28fc5dd..53c8f08955 100644 --- a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:41+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:13+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po index 19f190b949..ba5f0d1fea 100644 --- a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:41+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:13+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po index 8ea9f98cff..aaf1775ab5 100644 --- a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:41+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:13+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po index 1d02a7d7c1..e4f9bb4574 100644 --- a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:41+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:14+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/SearchSub/locale/SearchSub.pot b/plugins/SearchSub/locale/SearchSub.pot index 07209904e7..4e33c5ff43 100644 --- a/plugins/SearchSub/locale/SearchSub.pot +++ b/plugins/SearchSub/locale/SearchSub.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -90,6 +90,27 @@ msgstr "" msgid "You are no longer subscribed to the search \"%s\"." msgstr "" +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +#: searchsubaction.php:78 +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when the session token is not okay. +#: searchsubaction.php:88 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +#: searchsubaction.php:99 +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +#: searchsubaction.php:109 +msgid "No such profile." +msgstr "" + #. TRANS: Page title when search subscription succeeded. #: searchsubaction.php:136 msgid "Subscribed" @@ -99,6 +120,11 @@ msgstr "" msgid "Unsubscribe from this search" msgstr "" +#: searchunsubform.php:107 +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "" + #. TRANS: Page title when search unsubscription succeeded. #: searchunsubaction.php:76 msgid "Unsubscribed" @@ -183,6 +209,11 @@ msgstr "" msgid "Subscribe to this search" msgstr "" +#: searchsubform.php:140 +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "" + #. TRANS: Message given having failed to cancel one of the search subs with 'track off' command. #: searchsubtrackoffcommand.php:24 #, php-format diff --git a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po index 87fbdb13d6..47f5cc1861 100644 --- a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:43+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:15:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -93,6 +93,23 @@ msgstr "Non poteva terminar un subscription al recerca de \"%s\"." msgid "You are no longer subscribed to the search \"%s\"." msgstr "Tu non es plus subscribite al recerca de \"%s\"." +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "" + #. TRANS: Page title when search subscription succeeded. msgid "Subscribed" msgstr "Subscribite" @@ -100,6 +117,11 @@ msgstr "Subscribite" msgid "Unsubscribe from this search" msgstr "Cancellar subscription a iste recerca" +#, fuzzy +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Subscription cancellate" + #. TRANS: Page title when search unsubscription succeeded. msgid "Unsubscribed" msgstr "Subscription cancellate" @@ -173,6 +195,11 @@ msgstr "Tu tracia recercas de: %s" msgid "Subscribe to this search" msgstr "Subscriber a iste recerca" +#, fuzzy +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Subscribite" + #. TRANS: Message given having failed to cancel one of the search subs with 'track off' command. #, php-format msgid "Error disabling search subscription for query \"%s\"." diff --git a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po index 6aceaabb54..f317a853ea 100644 --- a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:43+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:15:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -94,6 +94,23 @@ msgstr "Не можев да ја прекратам претплатата на msgid "You are no longer subscribed to the search \"%s\"." msgstr "Повеќе не сте претплатени на пребарувањето „%s“." +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +msgid "This action only accepts POST requests." +msgstr "Ова дејство прифаќа само POST-барања" + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "Се поајви проблем со Вашиот сесиски жетон. Обидете се повторно." + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Не сте најавени." + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "Нема таков профил." + #. TRANS: Page title when search subscription succeeded. msgid "Subscribed" msgstr "Претплатено" @@ -101,6 +118,10 @@ msgstr "Претплатено" msgid "Unsubscribe from this search" msgstr "Откажи претплата на ова пребарување" +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Откажи претплата" + #. TRANS: Page title when search unsubscription succeeded. msgid "Unsubscribed" msgstr "Претплатата е откажана" @@ -171,6 +192,10 @@ msgstr "Следите пребарувања на: %s" msgid "Subscribe to this search" msgstr "Претплати се на пребарувањево" +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Претплати се" + #. TRANS: Message given having failed to cancel one of the search subs with 'track off' command. #, php-format msgid "Error disabling search subscription for query \"%s\"." diff --git a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po index ca881c0518..3d53577716 100644 --- a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:43+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:15:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -93,6 +93,25 @@ msgstr "Het opzeggen van het abonnement op de zoekopdracht \"%s\" is mislukt." msgid "You are no longer subscribed to the search \"%s\"." msgstr "U hebt niet langer meer een abonnement op de zoekopdracht \"%s\"." +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +msgid "This action only accepts POST requests." +msgstr "Deze handeling accepteert alleen POST-verzoeken." + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, " +"alstublieft." + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Niet aangemeld." + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "Het profiel bestaat niet." + #. TRANS: Page title when search subscription succeeded. msgid "Subscribed" msgstr "Geabonneerd" @@ -100,6 +119,10 @@ msgstr "Geabonneerd" msgid "Unsubscribe from this search" msgstr "Abonnement op deze zoekopdracht opzeggen" +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Uitschrijven" + #. TRANS: Page title when search unsubscription succeeded. msgid "Unsubscribed" msgstr "Het abonnement is opgezegd" @@ -170,6 +193,10 @@ msgstr "U volgt zoekopdrachten naar: %s." msgid "Subscribe to this search" msgstr "Deze zoekopdracht volgen" +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Abonneren" + #. TRANS: Message given having failed to cancel one of the search subs with 'track off' command. #, php-format msgid "Error disabling search subscription for query \"%s\"." diff --git a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po index 67d963ddb3..9fc887de66 100644 --- a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:43+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:21+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:15:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -96,6 +96,23 @@ msgstr "" msgid "You are no longer subscribed to the search \"%s\"." msgstr "Hindi ka na nagpapasipi sa paghahanap ng \"%s\"." +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "" + #. TRANS: Page title when search subscription succeeded. msgid "Subscribed" msgstr "Nagpapasipi na" @@ -103,6 +120,11 @@ msgstr "Nagpapasipi na" msgid "Unsubscribe from this search" msgstr "Huwag nang magpasipi mula sa paghahanap na ito" +#, fuzzy +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Hindi na nagpapasipi" + #. TRANS: Page title when search unsubscription succeeded. msgid "Unsubscribed" msgstr "Hindi na nagpapasipi" @@ -179,6 +201,11 @@ msgstr "Sinusubaybayan mo ang mga paghahanap para sa: %s" msgid "Subscribe to this search" msgstr "Magpasipi para sa paghahanap na ito" +#, fuzzy +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Nagpapasipi na" + #. TRANS: Message given having failed to cancel one of the search subs with 'track off' command. #, php-format msgid "Error disabling search subscription for query \"%s\"." diff --git a/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po new file mode 100644 index 0000000000..49a1c5619d --- /dev/null +++ b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po @@ -0,0 +1,212 @@ +# Translation of StatusNet - SearchSub to Ukrainian (Українська) +# Exported from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SearchSub\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:21+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-03 13:41:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-searchsub\n" +"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " +"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" + +#. TRANS: Header for subscriptions overview for a user (first page). +#. TRANS: %s is a user nickname. +#, php-format +msgid "%s's search subscriptions" +msgstr "Збережені пошукові запити %s" + +#. TRANS: Header for subscriptions overview for a user (not first page). +#. TRANS: %1$s is a user nickname, %2$d is the page number. +#, php-format +msgid "%1$s's search subscriptions, page %2$d" +msgstr "Збережені пошукові запити %1$s, сторінка %2$d" + +#. TRANS: Page notice for page with an overview of all search subscriptions +#. TRANS: of the logged in user's own profile. +msgid "" +"You have subscribed to receive all notices on this site matching the " +"following searches:" +msgstr "" +"Ви підписалися на отримання всіх дописів на цьому сайті, що відповідають " +"наступним пошуковим параметрам:" + +#. TRANS: Page notice for page with an overview of all subscriptions of a user other +#. TRANS: than the logged in user. %s is the user nickname. +#, php-format +msgid "" +"%s has subscribed to receive all notices on this site matching the following " +"searches:" +msgstr "" +"%s підписаний на отримання всіх повідомлень на цьому сайті, що відповідають " +"наступним пошуковим параметрам:" + +#. TRANS: Search subscription list text when the logged in user has no search subscriptions. +msgid "" +"You are not subscribed to any text searches right now. You can push the " +"\"Subscribe\" button on any notice text search to automatically receive any " +"public messages on this site that match that search, even if you are not " +"subscribed to the poster." +msgstr "" +"Наразі ви не маєте підписок на жоден пошуковий запит. Натисніть на кнопку " +"«Підписатися» поруч із будь-яким дописом, що з’явиться у результатах пошуку, " +"щоб мати можливість отримувати автоматично всі дописи, що відповідають " +"зазначеним параметрам пошуку, тоді ви отримуватимете дописи користувачів, до " +"яких ви навіть не підписані." + +#. TRANS: Search subscription list text when looking at the subscriptions for a of a user other +#. TRANS: than the logged in user that has no search subscriptions. %s is the user nickname. +#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none +#. TRANS: as an anonymous user. %s is the user nickname. +#, php-format +msgid "%s is not subscribed to any searches." +msgstr "%s не підписаний до жодних пошуків." + +#. TRANS: Search subscription list item. %1$s is a URL to a notice search, +#. TRANS: %2$s are the search criteria, %3$s is a datestring. +#, php-format +msgid "\"%2$s\" since %3$s" +msgstr "«%2$s» протягом %3$s" + +#. TRANS: Error text shown a user tries to untrack a search query they're not subscribed to. +#, php-format +msgid "You are not tracking the search \"%s\"." +msgstr "Ви не відстежує пошук «%s»." + +#. TRANS: Message given having failed to cancel a search subscription by untrack command. +#, php-format +msgid "Could not end a search subscription for query \"%s\"." +msgstr "Неможливо закінчити пошукову підписку за запитом «%s»." + +#. TRANS: Message given having removed a search subscription by untrack command. +#, php-format +msgid "You are no longer subscribed to the search \"%s\"." +msgstr "Ви більше не підписані на пошук «%s»." + +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "" + +#. TRANS: Page title when search subscription succeeded. +msgid "Subscribed" +msgstr "Підписані" + +msgid "Unsubscribe from this search" +msgstr "Відмовитися від цього пошуку" + +#, fuzzy +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Відписано" + +#. TRANS: Page title when search unsubscription succeeded. +msgid "Unsubscribed" +msgstr "Відписано" + +#. TRANS: Error text shown a user tries to track a search query they're already subscribed to. +#, php-format +msgid "You are already tracking the search \"%s\"." +msgstr "Ви вже відслідковуєте пошук «%s»." + +#. TRANS: Message given having failed to set up a search subscription by track command. +#, php-format +msgid "Could not start a search subscription for query \"%s\"." +msgstr "Не вдалося запустити підписку на пошуковий запит «%s»." + +#. TRANS: Message given having added a search subscription by track command. +#, php-format +msgid "You are subscribed to the search \"%s\"." +msgstr "Ви підписані на пошук «%s»." + +#. TRANS: Plugin description. +msgid "Plugin to allow following all messages with a given search." +msgstr "" +"Додаток, який дозволяє відслідковувати дописи за певними параметрами пошуку." + +#. TRANS: SearchSub plugin menu item on user settings page. +msgctxt "MENU" +msgid "Searches" +msgstr "Пошуки" + +#. TRANS: SearchSub plugin tooltip for user settings menu item. +msgid "Configure search subscriptions" +msgstr "Впорядкувати пошукові запити" + +msgid "Search subscriptions" +msgstr "Підписки на пошукові запити" + +#. TRANS: Help message for IM/SMS command "track " +msgctxt "COMMANDHELP" +msgid "Start following notices matching the given search query." +msgstr "" +"Почати відслідковувати дописи, які відповідають зазначеним параметрам пошуку." + +#. TRANS: Help message for IM/SMS command "untrack " +msgctxt "COMMANDHELP" +msgid "Stop following notices matching the given search query." +msgstr "" +"Припинити відслідковувати дописи, які відповідають зазначеним параметрам " +"пошуку." + +#. TRANS: Help message for IM/SMS command "track off" +#. TRANS: Help message for IM/SMS command "untrack all" +msgctxt "COMMANDHELP" +msgid "Disable all tracked search subscriptions." +msgstr "Скасувати всі пошукові підписки." + +#. TRANS: Help message for IM/SMS command "tracks" +#. TRANS: Help message for IM/SMS command "tracking" +msgctxt "COMMANDHELP" +msgid "List all your search subscriptions." +msgstr "Список пошукових запитів, за якими ви слідкуєте." + +#. TRANS: Error text shown a user tries to disable all a search subscriptions with track off command, but has none. +msgid "You are not tracking any searches." +msgstr "Не ви відстежуєте жодні пошукові запити." + +#. TRANS: Message given having disabled all search subscriptions with 'track off'. +#, php-format +msgid "You are tracking searches for: %s" +msgstr "Ви відслідковуєте пошуки для: %s" + +msgid "Subscribe to this search" +msgstr "Підписатися до даного пошуку" + +#, fuzzy +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Підписані" + +#. TRANS: Message given having failed to cancel one of the search subs with 'track off' command. +#, php-format +msgid "Error disabling search subscription for query \"%s\"." +msgstr "Помилка при скасуванні пошукової підписки «%s»." + +#. TRANS: Message given having disabled all search subscriptions with 'track off'. +msgid "Disabled all your search subscriptions." +msgstr "Вимкнути всі пошукові підписки." diff --git a/plugins/SearchSub/searchsubaction.php b/plugins/SearchSub/searchsubaction.php index 67bc178df6..0234feef40 100644 --- a/plugins/SearchSub/searchsubaction.php +++ b/plugins/SearchSub/searchsubaction.php @@ -75,7 +75,7 @@ class SearchsubAction extends Action 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.')); + $this->clientError(_m('This action only accepts POST requests.')); return false; } @@ -85,7 +85,7 @@ class SearchsubAction extends Action 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.'. + $this->clientError(_m('There was a problem with your session token.'. ' Try again, please.')); return false; } @@ -95,8 +95,8 @@ class SearchsubAction 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.')); + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. + $this->clientError(_m('Not logged in.')); return false; } @@ -106,7 +106,7 @@ class SearchsubAction extends Action if (empty($this->search)) { // TRANS: Client error displayed trying to subscribe to a non-existing profile. - $this->clientError(_('No such profile.')); + $this->clientError(_m('No such profile.')); return false; } diff --git a/plugins/SearchSub/searchsubform.php b/plugins/SearchSub/searchsubform.php index 8078cdde1b..7b05377397 100644 --- a/plugins/SearchSub/searchsubform.php +++ b/plugins/SearchSub/searchsubform.php @@ -137,6 +137,6 @@ class SearchSubForm extends Form function formActions() { - $this->out->submit('submit', _('Subscribe'), 'submit', null, _m('Subscribe to this search')); + $this->out->submit('submit', _m('BUTTON','Subscribe'), 'submit', null, _m('Subscribe to this search')); } } diff --git a/plugins/SearchSub/searchunsubform.php b/plugins/SearchSub/searchunsubform.php index 296b74f4a1..f90531f6aa 100644 --- a/plugins/SearchSub/searchunsubform.php +++ b/plugins/SearchSub/searchunsubform.php @@ -104,6 +104,6 @@ class SearchUnsubForm extends SearchSubForm function formActions() { - $this->out->submit('submit', _('Unsubscribe'), 'submit', null, _m('Unsubscribe from this search')); + $this->out->submit('submit', _m('BUTTON','Unsubscribe'), 'submit', null, _m('Unsubscribe from this search')); } } diff --git a/plugins/ShareNotice/locale/ShareNotice.pot b/plugins/ShareNotice/locale/ShareNotice.pot index 21a555d99a..a7a6a41f94 100644 --- a/plugins/ShareNotice/locale/ShareNotice.pot +++ b/plugins/ShareNotice/locale/ShareNotice.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po index d9ebedc3d8..ed12671ffd 100644 --- a/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:43+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:17+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po index 58508f0681..32b16850ec 100644 --- a/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:17+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po index f975655fd6..f6ef041576 100644 --- a/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:17+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po index dfe3a92151..c003b0f942 100644 --- a/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:17+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po index ca337a85b7..13ed2bdc29 100644 --- a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:18+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po index 0de3f4f826..8f5644f29b 100644 --- a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:18+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po index 18ae3d86f4..51724ff241 100644 --- a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:18+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po index 84f572983a..54e90dbd83 100644 --- a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:18+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po index 6e427f6cec..4f2ca2c5ee 100644 --- a/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:18+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po index df25b04e5d..2c4aaabcc4 100644 --- a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:18+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po index 12e684f49a..6907f590b0 100644 --- a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:18+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/SimpleUrl/locale/SimpleUrl.pot b/plugins/SimpleUrl/locale/SimpleUrl.pot index d2366b4bc4..30d6e9b0ba 100644 --- a/plugins/SimpleUrl/locale/SimpleUrl.pot +++ b/plugins/SimpleUrl/locale/SimpleUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po index abb8ec3bc6..1d84a25d55 100644 --- a/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:18+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po index 164ca5755e..7cbcaec798 100644 --- a/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:18+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po index 99f2025775..96c96db090 100644 --- a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po index 98175f970d..b3f720cb49 100644 --- a/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po index 4ccb05571d..58bf564572 100644 --- a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po index 381379c25d..50726cf6e7 100644 --- a/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po index a02975e0f1..39c72fbb3f 100644 --- a/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po index 5d91371496..bd59088c88 100644 --- a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po index 88e415d61d..8627f8aff0 100644 --- a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po index 926ee15b24..a58e1aaf54 100644 --- a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po index dc9c6c0692..4b63d5a5a7 100644 --- a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po index 59b673aa3f..3456388cca 100644 --- a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po index 7e151415c3..d7cd1906c7 100644 --- a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po index 33474c30cf..b615395a9f 100644 --- a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po index 7c163f8be6..7a2d904979 100644 --- a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po index 0785258984..2f0d997731 100644 --- a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po index a72b2fd54f..875a1e0825 100644 --- a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:20+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/Sitemap/locale/Sitemap.pot b/plugins/Sitemap/locale/Sitemap.pot index 0aad8fc2cc..efd4df1d30 100644 --- a/plugins/Sitemap/locale/Sitemap.pot +++ b/plugins/Sitemap/locale/Sitemap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po index 302f3397b5..aeb839039a 100644 --- a/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:21+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po index ceb65846cf..5767ad5e5f 100644 --- a/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:21+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po index fcf3c264dd..3d8c0cddb3 100644 --- a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:21+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po index 7ef289cc95..ea612f34b1 100644 --- a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po index 447021376f..67f0e9c8a2 100644 --- a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po index 6fc08a84ca..c962bcbc76 100644 --- a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po index 022e43937e..951dde1607 100644 --- a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:21+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po index 277a8c7402..26e077de66 100644 --- a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:21+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po index 38de5854b7..350ef649b9 100644 --- a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/SlicedFavorites/locale/SlicedFavorites.pot b/plugins/SlicedFavorites/locale/SlicedFavorites.pot index b06fa5b055..48c18de963 100644 --- a/plugins/SlicedFavorites/locale/SlicedFavorites.pot +++ b/plugins/SlicedFavorites/locale/SlicedFavorites.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po index 818bd29f05..6ddd28a270 100644 --- a/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:22+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po index 46ef38b2c7..0219accd68 100644 --- a/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:22+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po index 5fe148a537..82416d54e7 100644 --- a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:22+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po index ac6a0ed225..fc9213cc05 100644 --- a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:22+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po index d2458cb36b..b77ed3377f 100644 --- a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:22+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po index 6bab68029e..459125eea0 100644 --- a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:22+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po index dbe6b473da..2235307c1e 100644 --- a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:22+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po index 512f20d9ab..69ae6ab419 100644 --- a/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:23+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po index 42d8621bab..7310249e9d 100644 --- a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po index 8c717a3b55..e0238af03a 100644 --- a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SphinxSearch/locale/SphinxSearch.pot b/plugins/SphinxSearch/locale/SphinxSearch.pot index a99ad2a690..565e46d271 100644 --- a/plugins/SphinxSearch/locale/SphinxSearch.pot +++ b/plugins/SphinxSearch/locale/SphinxSearch.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po index f2bd62e932..af39c3e3db 100644 --- a/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:23+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po index ed04bda3da..704a4282a0 100644 --- a/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:23+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po index 6893432344..d4ba83da85 100644 --- a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po index efc1da721f..02c0c65611 100644 --- a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:23+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po index ec873b4fd0..d68849130d 100644 --- a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:23+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po index 7738da887e..00eafeba0c 100644 --- a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:24+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po index a1a1dec25c..25885f24ae 100644 --- a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:24+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po index 461f045723..abd3b3738d 100644 --- a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:24+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot b/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot index a6cbdab185..fe447a2ef0 100644 --- a/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot +++ b/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po index 274bfa2cec..6ac6426004 100644 --- a/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:25+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po index 7706fe7300..ba54d6248d 100644 --- a/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:25+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po index 1cde174173..7654ef3592 100644 --- a/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:25+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po index d73c4ae0e2..92859c6800 100644 --- a/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:07:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:25+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po index 61eae4632d..654fcd6ad3 100644 --- a/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:25+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/SubMirror/actions/basemirror.php b/plugins/SubMirror/actions/basemirror.php index 6a9109d13a..9a01e2ddb7 100644 --- a/plugins/SubMirror/actions/basemirror.php +++ b/plugins/SubMirror/actions/basemirror.php @@ -133,6 +133,7 @@ abstract class BaseMirrorAction extends Action $this->user = common_current_user(); if (empty($this->user)) { + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_m('Not logged in.')); return false; } diff --git a/plugins/SubMirror/actions/mirrorsettings.php b/plugins/SubMirror/actions/mirrorsettings.php index 90bbf3dffb..d6e1ed5d1b 100644 --- a/plugins/SubMirror/actions/mirrorsettings.php +++ b/plugins/SubMirror/actions/mirrorsettings.php @@ -129,7 +129,7 @@ class MirrorSettingsAction extends SettingsAction header('Content-Type: text/html;charset=utf-8'); $this->elementStart('html'); $this->elementStart('head'); - $this->element('title', null, _('Provider add')); + $this->element('title', null, _m('Provider add')); $this->elementEnd('head'); $this->elementStart('body'); diff --git a/plugins/SubMirror/locale/SubMirror.pot b/plugins/SubMirror/locale/SubMirror.pot index 58375a0d6f..ad47da84af 100644 --- a/plugins/SubMirror/locale/SubMirror.pot +++ b/plugins/SubMirror/locale/SubMirror.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,11 +41,12 @@ msgstr "" msgid "There was a problem with your session token. Try again, please." msgstr "" -#: actions/basemirror.php:136 +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +#: actions/basemirror.php:137 msgid "Not logged in." msgstr "" -#: actions/basemirror.php:159 +#: actions/basemirror.php:160 msgid "Subscribed" msgstr "" @@ -78,6 +79,10 @@ msgid "" "timeline!" msgstr "" +#: actions/mirrorsettings.php:132 +msgid "Provider add" +msgstr "" + #: SubMirrorPlugin.php:93 msgid "Pull feeds into your timeline!" msgstr "" diff --git a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po index 4160cd5d34..0e6851e7bf 100644 --- a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:51+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:29+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 13:01:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -42,6 +42,7 @@ msgstr "Diese Aktion nimmt nur POST-Requests." msgid "There was a problem with your session token. Try again, please." msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut." +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Nicht angemeldet." @@ -71,6 +72,9 @@ msgid "" "timeline!" msgstr "" +msgid "Provider add" +msgstr "" + msgid "Pull feeds into your timeline!" msgstr "Ziehe Feeds in deine Zeitleiste!" diff --git a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po index 24b67fe31b..edd52d5112 100644 --- a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:51+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:29+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 13:01:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -45,6 +45,7 @@ msgstr "" "Un problème est survenu avec votre jeton de session. Veuillez essayer à " "nouveau." +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Non connecté." @@ -76,6 +77,9 @@ msgstr "" "Vous pouvez mettre en miroir dans votre agenda StatusNet les mises à jour de " "nombreux flux RSS et Atom !" +msgid "Provider add" +msgstr "" + msgid "Pull feeds into your timeline!" msgstr "Importez des flux d’information dans votre agenda !" diff --git a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po index 2fb4972bc9..c5c05f3d41 100644 --- a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:51+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:30+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -41,6 +41,7 @@ msgstr "Iste action accepta solmente le requestas de typo POST." msgid "There was a problem with your session token. Try again, please." msgstr "Occurreva un problema con le indicio de tu session. Per favor reproba." +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Tu non ha aperite un session." @@ -72,6 +73,9 @@ msgstr "" "Tu pote republicar actualisationes de multe syndicationes RSS e Atom in tu " "chronologia de StatusNet!" +msgid "Provider add" +msgstr "" + msgid "Pull feeds into your timeline!" msgstr "Importar syndicationes in tu chronologia!" diff --git a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po index 45168f0155..e5a02b4bcb 100644 --- a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:51+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:30+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -41,6 +41,7 @@ msgstr "Оваа постапка прифаќа само POST-барања." msgid "There was a problem with your session token. Try again, please." msgstr "Се појави проблем со жетонот на Вашата сесија. Обидете се подоцна." +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Не сте најавени." @@ -72,6 +73,9 @@ msgstr "" "Можете да отсликувате поднови од многу RSS- и Atom-канали во Вашата " "хронологија на StatusNet!" +msgid "Provider add" +msgstr "Адреса на услужникот" + msgid "Pull feeds into your timeline!" msgstr "Повлекувајте каналски емитувања во Вашата хронологија!" diff --git a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po index ef7e7c3acc..d0cf217ea3 100644 --- a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:51+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:30+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 13:01:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -43,6 +43,7 @@ msgstr "" "Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, " "alstublieft." +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Niet aangemeld." @@ -74,6 +75,9 @@ msgstr "" "U kunt statusupdates vanuit veel RSS- en Atomfeeds spiegelen in uit " "StatusNet-tijdlijn." +msgid "Provider add" +msgstr "Provider toevoegen" + msgid "Pull feeds into your timeline!" msgstr "Neem feeds op in uw tijdlijn!" diff --git a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po index 0afb8d6a2d..b0b140e504 100644 --- a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:51+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:30+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 13:01:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -42,6 +42,7 @@ msgstr "Ang galaw na ito ay tumatanggap lamang ng mga kahilingang POST." msgid "There was a problem with your session token. Try again, please." msgstr "May isang suliranin sa iyong token ng sesyon. Pakisubukan uli." +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Hindi nakalagda." @@ -73,6 +74,9 @@ msgstr "" "Maisasalamin mo ang mga pagsasapanahon mula sa maraming mga pakain ng RSS at " "Atom sa iyong guhit ng panahon ng StatusNet!" +msgid "Provider add" +msgstr "" + msgid "Pull feeds into your timeline!" msgstr "Hilahin ang mga pakain papasok sa iyong guhit ng panahon!" diff --git a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po index 2cceedd833..4b8ac65e91 100644 --- a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:51+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:30+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 13:01:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -24,16 +24,15 @@ msgstr "" #. TRANS: Client error displayed when entering an invalid URL for a feed. #. TRANS: %s is the invalid feed URL. -#, fuzzy, php-format +#, php-format msgid "Invalid feed URL: %s." -msgstr "Помилкова URL-адреса веб-стрічки." +msgstr "Помилкова URL-адреса стрічки: %s." #. TRANS: Error message returned to user when setting up feed mirroring, #. TRANS: but we were unable to resolve the given URL to a working feed. msgid "Invalid profile for mirroring." msgstr "Помилковий профіль для віддзеркалення." -#, fuzzy msgid "Cannot mirror a StatusNet group at this time." msgstr "На даний момент не можу віддзеркалювати спільноту на сайті StatusNet." @@ -43,6 +42,7 @@ msgstr "Ця дія приймає запити лише за формою POST. msgid "There was a problem with your session token. Try again, please." msgstr "Виникли певні проблеми з токеном сесії. Спробуйте знов, будь ласка." +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Ви не увійшли до системи." @@ -74,6 +74,9 @@ msgstr "" "Ви маєте можливість віддзеркалювати оновлення багатьох веб-стрічок формату " "RSS або Atom одразу до стрічки своїх дописів на сайті StatusNet!" +msgid "Provider add" +msgstr "" + msgid "Pull feeds into your timeline!" msgstr "Стягування веб-каналів до вашої стрічки повідомлень!" @@ -97,7 +100,7 @@ msgid "Add feed" msgstr "Додати веб-стрічку" msgid "Twitter username:" -msgstr "" +msgstr "Ім’я користувача Twitter:" msgctxt "LABEL" msgid "Remote feed:" @@ -126,10 +129,10 @@ msgid "Stop mirroring" msgstr "Зупинити віддзеркалення" msgid "Twitter" -msgstr "" +msgstr "Twitter" msgid "RSS or Atom feed" -msgstr "" +msgstr "Стрічка у форматі RSS або Atom" msgid "Select a feed provider" -msgstr "" +msgstr "Виберіть канал постачальника" diff --git a/plugins/SubscriptionThrottle/SubscriptionThrottlePlugin.php b/plugins/SubscriptionThrottle/SubscriptionThrottlePlugin.php index 114113360e..e898ce9ae0 100644 --- a/plugins/SubscriptionThrottle/SubscriptionThrottlePlugin.php +++ b/plugins/SubscriptionThrottle/SubscriptionThrottlePlugin.php @@ -71,7 +71,7 @@ class SubscriptionThrottlePlugin extends Plugin $subtime = strtotime($sub->created); $now = time(); if ($now - $subtime < $seconds) { - throw new Exception(_("Too many subscriptions. Take a break and try again later.")); + throw new Exception(_m("Too many subscriptions. Take a break and try again later.")); } } } @@ -97,7 +97,7 @@ class SubscriptionThrottlePlugin extends Plugin $jointime = strtotime($mem->created); $now = time(); if ($now - $jointime < $seconds) { - throw new Exception(_("Too many memberships. Take a break and try again later.")); + throw new Exception(_m("Too many memberships. Take a break and try again later.")); } } } diff --git a/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot index fe3b9b573a..db6994fde9 100644 --- a/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot +++ b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,14 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: SubscriptionThrottlePlugin.php:74 +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +#: SubscriptionThrottlePlugin.php:100 +msgid "Too many memberships. Take a break and try again later." +msgstr "" + #: SubscriptionThrottlePlugin.php:171 msgid "Configurable limits for subscriptions and group memberships." msgstr "" diff --git a/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po index 2347427810..24d7763079 100644 --- a/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po @@ -9,17 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +msgid "Too many memberships. Take a break and try again later." +msgstr "" + msgid "Configurable limits for subscriptions and group memberships." msgstr "Konfigurierbare Limits für Abonnements und Gruppenmitgliedschaften." diff --git a/plugins/SubscriptionThrottle/locale/es/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/es/LC_MESSAGES/SubscriptionThrottle.po index dd34af611e..758366a271 100644 --- a/plugins/SubscriptionThrottle/locale/es/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/es/LC_MESSAGES/SubscriptionThrottle.po @@ -9,18 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +msgid "Too many memberships. Take a break and try again later." +msgstr "" + msgid "Configurable limits for subscriptions and group memberships." msgstr "" "Límites configurables para las suscripciones y adhesiones a los grupos." diff --git a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po index 3111530e14..e6e574f0a0 100644 --- a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po @@ -9,17 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +msgid "Too many memberships. Take a break and try again later." +msgstr "" + msgid "Configurable limits for subscriptions and group memberships." msgstr "Limites configurables pour les abonnements et adhésions aux groupes." diff --git a/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po index 7f7ffe1f3e..9eb4aca936 100644 --- a/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po @@ -9,17 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +msgid "Too many memberships. Take a break and try again later." +msgstr "" + msgid "Configurable limits for subscriptions and group memberships." msgstr "הגבלות מינוי וחברות בקבוצות הניתנות להגדרה." diff --git a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po index 4dff6a123b..92ae0a3a5c 100644 --- a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po @@ -9,17 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +msgid "Too many memberships. Take a break and try again later." +msgstr "" + msgid "Configurable limits for subscriptions and group memberships." msgstr "Limites configurabile pro subscriptiones e membrato de gruppos." diff --git a/plugins/SubscriptionThrottle/locale/id/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/id/LC_MESSAGES/SubscriptionThrottle.po index 6be339d6bc..c35662b637 100644 --- a/plugins/SubscriptionThrottle/locale/id/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/id/LC_MESSAGES/SubscriptionThrottle.po @@ -9,18 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +msgid "Too many memberships. Take a break and try again later." +msgstr "" + msgid "Configurable limits for subscriptions and group memberships." msgstr "" "Batasan yang dapat disesuaikan untuk langganan dan keanggotaan kelompok." diff --git a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po index d4f0a0f346..c1fea762f5 100644 --- a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,17 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "Премногу претплати. Направете пауза и обидете се подоцна." + +msgid "Too many memberships. Take a break and try again later." +msgstr "Премногу членства. Направете пауза и обидете се подоцна." + msgid "Configurable limits for subscriptions and group memberships." msgstr "Прилагодливи ограничувања за претплата и членства во групи." diff --git a/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po new file mode 100644 index 0000000000..2572c885cf --- /dev/null +++ b/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - SubscriptionThrottle to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SubscriptionThrottle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:28+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-01 21:06:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Too many subscriptions. Take a break and try again later." +msgstr "Terlalu banyak langganan. Berehat seketika dan cuba lagi nanti." + +msgid "Too many memberships. Take a break and try again later." +msgstr "Terlalu banyak keahlian. Berehat seketika dan cuba lagi nanti." + +msgid "Configurable limits for subscriptions and group memberships." +msgstr "" diff --git a/plugins/SubscriptionThrottle/locale/nb/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/nb/LC_MESSAGES/SubscriptionThrottle.po index 084d360d04..6ef6d17e94 100644 --- a/plugins/SubscriptionThrottle/locale/nb/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/nb/LC_MESSAGES/SubscriptionThrottle.po @@ -9,17 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +msgid "Too many memberships. Take a break and try again later." +msgstr "" + msgid "Configurable limits for subscriptions and group memberships." msgstr "Konfigurerbare grenser for abonnement og gruppemedlemsskap." diff --git a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po index cb4be2d877..e275a99e16 100644 --- a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,17 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "Te veel abonnementen. Wacht even en probeer het later opnieuw." + +msgid "Too many memberships. Take a break and try again later." +msgstr "Te veel lidmaatschappen. Wacht even en probeer het later opnieuw." + msgid "Configurable limits for subscriptions and group memberships." msgstr "In te stellen limieten voor abonnementen en groepslidmaatschappen." diff --git a/plugins/SubscriptionThrottle/locale/pt/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/pt/LC_MESSAGES/SubscriptionThrottle.po index 4ec2381fe8..e1e743af26 100644 --- a/plugins/SubscriptionThrottle/locale/pt/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/pt/LC_MESSAGES/SubscriptionThrottle.po @@ -9,17 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +msgid "Too many memberships. Take a break and try again later." +msgstr "" + msgid "Configurable limits for subscriptions and group memberships." msgstr "Limites configuráveis para subscrições e adesões a grupos." diff --git a/plugins/SubscriptionThrottle/locale/ru/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ru/LC_MESSAGES/SubscriptionThrottle.po index e1b53efb8b..d5da6d081e 100644 --- a/plugins/SubscriptionThrottle/locale/ru/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ru/LC_MESSAGES/SubscriptionThrottle.po @@ -9,18 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +msgid "Too many memberships. Take a break and try again later." +msgstr "" + msgid "Configurable limits for subscriptions and group memberships." msgstr "Настраиваемые ограничения на подписки и членство в группах." diff --git a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po index 9aaed9204a..08ac30c000 100644 --- a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,18 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +msgid "Too many memberships. Take a break and try again later." +msgstr "" + msgid "Configurable limits for subscriptions and group memberships." msgstr "" "Maisasaayos na mga hangganan para sa mga pagtatanggap at mga kasapian sa " diff --git a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po index 5e64c29743..7764300d30 100644 --- a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,19 +9,25 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +msgid "Too many memberships. Take a break and try again later." +msgstr "" + msgid "Configurable limits for subscriptions and group memberships." msgstr "" "З допомогою цього додатку можна обмежувати кількість можливих підписок для " diff --git a/plugins/TabFocus/locale/TabFocus.pot b/plugins/TabFocus/locale/TabFocus.pot index fc4460c2de..5a0844b59a 100644 --- a/plugins/TabFocus/locale/TabFocus.pot +++ b/plugins/TabFocus/locale/TabFocus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po index 948ad71c64..8a955a9f66 100644 --- a/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:29+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po index a4638ff35f..502edfd3b4 100644 --- a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:29+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po index 59e45251ca..d076b28eec 100644 --- a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:29+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po index 811757a54f..b1cb1a54ee 100644 --- a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:29+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po index 27391e6f53..44da9fd005 100644 --- a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:29+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po index 8ef482826d..e0bafca910 100644 --- a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:29+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po index 0e34d742fe..7da1c2b5d4 100644 --- a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:29+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po index 4874b2638f..0a43d690dc 100644 --- a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:29+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po index d697218a10..ba19101702 100644 --- a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:29+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po index ac1effc394..62ec9f9459 100644 --- a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:29+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po index 57756ceda9..c813543d9d 100644 --- a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:29+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po index 20e6181a14..5eeffb188f 100644 --- a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:29+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po index e4535fad82..16189b75fd 100644 --- a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:30+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TagSub/locale/TagSub.pot b/plugins/TagSub/locale/TagSub.pot index 25baf3ba7c..48a9c1cab9 100644 --- a/plugins/TagSub/locale/TagSub.pot +++ b/plugins/TagSub/locale/TagSub.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -20,6 +20,11 @@ msgstr "" msgid "Unsubscribe from this tag" msgstr "" +#: tagunsubform.php:107 +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "" + #. TRANS: Plugin description. #: TagSubPlugin.php:128 msgid "Plugin to allow following all messages with a given tag." @@ -44,11 +49,37 @@ msgstr "" msgid "Subscribe to this tag" msgstr "" +#: tagsubform.php:140 +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "" + #. TRANS: Page title when tag unsubscription succeeded. #: tagunsubaction.php:76 msgid "Unsubscribed" msgstr "" +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +#: tagsubaction.php:78 +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when the session token is not okay. +#: tagsubaction.php:88 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +#: tagsubaction.php:99 +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +#: tagsubaction.php:109 +msgid "No such profile." +msgstr "" + #. TRANS: Page title when tag subscription succeeded. #: tagsubaction.php:136 msgid "Subscribed" @@ -85,9 +116,20 @@ msgid "" "following tags:" msgstr "" +#. TRANS: Tag subscription list text when the logged in user has no tag subscriptions. +#: tagsubsaction.php:118 +msgid "" +"You are not listening to any hash tags right now. You can push the " +"\"Subscribe\" button on any hashtag page to automatically receive any public " +"messages on this site that use that tag, even if you are not subscribed to " +"the poster." +msgstr "" + +#. TRANS: Tag subscription list text when looking at the subscriptions for a of a user other +#. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. -#: tagsubsaction.php:130 +#: tagsubsaction.php:124 tagsubsaction.php:130 #, php-format msgid "%s is not listening to any tags." msgstr "" diff --git a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po index 3ae020d2b2..098496f1d1 100644 --- a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:54+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:33+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:48+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -24,6 +24,11 @@ msgstr "" msgid "Unsubscribe from this tag" msgstr "Cancellar subscription a iste etiquetta" +#, fuzzy +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Subscription cancellate" + #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." msgstr "" @@ -45,10 +50,32 @@ msgstr "Subscriptiones a etiquettas" msgid "Subscribe to this tag" msgstr "Subscriber a iste etiquetta" +#, fuzzy +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Subscribite" + #. TRANS: Page title when tag unsubscription succeeded. msgid "Unsubscribed" msgstr "Subscription cancellate" +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "" + #. TRANS: Page title when tag subscription succeeded. msgid "Subscribed" msgstr "Subscribite" @@ -84,6 +111,16 @@ msgstr "" "%s ha subscribite a reciper tote le notas in iste sito que contine le " "sequente etiquettas:" +#. TRANS: Tag subscription list text when the logged in user has no tag subscriptions. +msgid "" +"You are not listening to any hash tags right now. You can push the " +"\"Subscribe\" button on any hashtag page to automatically receive any public " +"messages on this site that use that tag, even if you are not subscribed to " +"the poster." +msgstr "" + +#. TRANS: Tag subscription list text when looking at the subscriptions for a of a user other +#. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. #, php-format diff --git a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po index cb65ef71bc..756ec3aaa2 100644 --- a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:54+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:33+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:48+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unsubscribe from this tag" msgstr "Отпиши се од ознакава" +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Откажи претплата" + #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." msgstr "Приклучок што овозможува да ги следите сите пораки со извесна ознака." @@ -43,10 +47,31 @@ msgstr "Претплати на ознаки" msgid "Subscribe to this tag" msgstr "Претплати се на ознакава" +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Претплати се" + #. TRANS: Page title when tag unsubscription succeeded. msgid "Unsubscribed" msgstr "Претплатено" +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +msgid "This action only accepts POST requests." +msgstr "Ова дејство прифаќа само POST-барања" + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "Се поајви проблем со Вашиот сесиски жетон. Обидете се повторно." + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Не сте најавени." + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "Нема таков профил." + #. TRANS: Page title when tag subscription succeeded. msgid "Subscribed" msgstr "Претплатата е откажана" @@ -82,6 +107,20 @@ msgstr "" "%s се претплати да ги прима сите забелешки на ова мреж. место што ги содржат " "слендиве ознаки:" +#. TRANS: Tag subscription list text when the logged in user has no tag subscriptions. +msgid "" +"You are not listening to any hash tags right now. You can push the " +"\"Subscribe\" button on any hashtag page to automatically receive any public " +"messages on this site that use that tag, even if you are not subscribed to " +"the poster." +msgstr "" +"Моментално не следите никакви тарабни ознаки. Можете да го притиснете " +"копчето „Претплати се“ на секоја страница со тарабна ознака за автоматски да " +"добивате јавни пораки од мреж. место што ја имаат таа ознака, дури и ако не " +"сте претплатени на објавувачот." + +#. TRANS: Tag subscription list text when looking at the subscriptions for a of a user other +#. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. #, php-format diff --git a/plugins/TagSub/locale/ms/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ms/LC_MESSAGES/TagSub.po new file mode 100644 index 0000000000..2fe2fc9853 --- /dev/null +++ b/plugins/TagSub/locale/ms/LC_MESSAGES/TagSub.po @@ -0,0 +1,124 @@ +# Translation of StatusNet - TagSub to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TagSub\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:33+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-03 13:41:48+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-tagsub\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Unsubscribe from this tag" +msgstr "" + +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Berhenti melanggan" + +#. TRANS: Plugin description. +msgid "Plugin to allow following all messages with a given tag." +msgstr "" + +#. TRANS: SubMirror plugin menu item on user settings page. +msgctxt "MENU" +msgid "Tags" +msgstr "Tag" + +#. TRANS: SubMirror plugin tooltip for user settings menu item. +msgid "Configure tag subscriptions" +msgstr "" + +msgid "Tag subscriptions" +msgstr "Langganan tag" + +msgid "Subscribe to this tag" +msgstr "" + +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "" + +#. TRANS: Page title when tag unsubscription succeeded. +msgid "Unsubscribed" +msgstr "Sudah berhenti melanggan." + +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Belum log masuk." + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "Profil ini tidak wujud." + +#. TRANS: Page title when tag subscription succeeded. +msgid "Subscribed" +msgstr "Dilanggan" + +#. TRANS: Header for subscriptions overview for a user (first page). +#. TRANS: %s is a user nickname. +#, php-format +msgid "%s's tag subscriptions" +msgstr "Langganan tag %s" + +#. TRANS: Header for subscriptions overview for a user (not first page). +#. TRANS: %1$s is a user nickname, %2$d is the page number. +#, php-format +msgid "%1$s's tag subscriptions, page %2$d" +msgstr "Langganan tag %1$s, mukasurat %2$d" + +#. TRANS: Page notice for page with an overview of all tag subscriptions +#. TRANS: of the logged in user's own profile. +msgid "" +"You have subscribed to receive all notices on this site containing the " +"following tags:" +msgstr "" + +#. TRANS: Page notice for page with an overview of all subscriptions of a user other +#. TRANS: than the logged in user. %s is the user nickname. +#, php-format +msgid "" +"%s has subscribed to receive all notices on this site containing the " +"following tags:" +msgstr "" + +#. TRANS: Tag subscription list text when the logged in user has no tag subscriptions. +msgid "" +"You are not listening to any hash tags right now. You can push the " +"\"Subscribe\" button on any hashtag page to automatically receive any public " +"messages on this site that use that tag, even if you are not subscribed to " +"the poster." +msgstr "" + +#. TRANS: Tag subscription list text when looking at the subscriptions for a of a user other +#. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. +#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none +#. TRANS: as an anonymous user. %s is the user nickname. +#, php-format +msgid "%s is not listening to any tags." +msgstr "%s tidak mendengari mana-mana tag pun." + +#, php-format +msgid "#%s since %s" +msgstr "#%s sejak %s" diff --git a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po index a44537274f..ee790b8f9d 100644 --- a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:54+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:48+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unsubscribe from this tag" msgstr "Abonnement op dit label beëindigen" +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Uitschrijven" + #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." msgstr "" @@ -45,10 +49,33 @@ msgstr "Labelabonnementen" msgid "Subscribe to this tag" msgstr "Op dit label abonneren" +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Abonneren" + #. TRANS: Page title when tag unsubscription succeeded. msgid "Unsubscribed" msgstr "Het abonnement is opgezegd" +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +msgid "This action only accepts POST requests." +msgstr "Deze handeling accepteert alleen POST-verzoeken." + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, " +"alstublieft." + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Niet aangemeld." + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "Het profiel bestaat niet." + #. TRANS: Page title when tag subscription succeeded. msgid "Subscribed" msgstr "Geabonneerd" @@ -84,6 +111,20 @@ msgstr "" "%s heeft een abonnement genomen op alle mededelingen van deze site die de " "volgende labels bevatten:" +#. TRANS: Tag subscription list text when the logged in user has no tag subscriptions. +msgid "" +"You are not listening to any hash tags right now. You can push the " +"\"Subscribe\" button on any hashtag page to automatically receive any public " +"messages on this site that use that tag, even if you are not subscribed to " +"the poster." +msgstr "" +"U hebt op het moment geen abonnementen op labels. U kunt op iedere " +"labelpagina klikken op de knop \"Abonneren\" om automatisch alle publieke " +"berichten voor dat label in uw tijdlijn bezorgd te krijgen, zelfs als u niet " +"geabonneerd bent op de gebruiker die de mededeling heeft geplaatst." + +#. TRANS: Tag subscription list text when looking at the subscriptions for a of a user other +#. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. #, php-format diff --git a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po index 44821aa385..5fedaa5363 100644 --- a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:54+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:33+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:48+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -24,6 +24,10 @@ msgstr "" msgid "Unsubscribe from this tag" msgstr "Huwag nang magpasipi mula sa tatak na ito" +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Pahintuin na ang pagtanggap ng sipi" + #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." msgstr "" @@ -45,10 +49,31 @@ msgstr "Mga pagpapasipi ng tatak" msgid "Subscribe to this tag" msgstr "Magpasipi para sa tatak na ito" +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Pumayag na tumanggap ng sipi" + #. TRANS: Page title when tag unsubscription succeeded. msgid "Unsubscribed" msgstr "Hindi na nagpapasipi" +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "" + #. TRANS: Page title when tag subscription succeeded. msgid "Subscribed" msgstr "Nagpapasipi na" @@ -84,6 +109,16 @@ msgstr "" "Si %s ay nagpasipi upang makatanggap ng lahat ng mga pabatid sa sityong ito " "na naglalaman ng sumusunod na mga tatak:" +#. TRANS: Tag subscription list text when the logged in user has no tag subscriptions. +msgid "" +"You are not listening to any hash tags right now. You can push the " +"\"Subscribe\" button on any hashtag page to automatically receive any public " +"messages on this site that use that tag, even if you are not subscribed to " +"the poster." +msgstr "" + +#. TRANS: Tag subscription list text when looking at the subscriptions for a of a user other +#. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. #, php-format diff --git a/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po new file mode 100644 index 0000000000..6f5f50281a --- /dev/null +++ b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po @@ -0,0 +1,129 @@ +# Translation of StatusNet - TagSub to Ukrainian (Українська) +# Exported from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TagSub\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:33+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-03 13:41:48+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-tagsub\n" +"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " +"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" + +msgid "Unsubscribe from this tag" +msgstr "Відписатися від цього теґу" + +#, fuzzy +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Відписано" + +#. TRANS: Plugin description. +msgid "Plugin to allow following all messages with a given tag." +msgstr "Додаток, який дозволяє відслідковувати дописи позначені певним теґом" + +#. TRANS: SubMirror plugin menu item on user settings page. +msgctxt "MENU" +msgid "Tags" +msgstr "Теґи" + +#. TRANS: SubMirror plugin tooltip for user settings menu item. +msgid "Configure tag subscriptions" +msgstr "Налаштування підписок на теґи" + +msgid "Tag subscriptions" +msgstr "Підписки на теґи" + +msgid "Subscribe to this tag" +msgstr "Підписатися на цей теґ" + +#, fuzzy +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Підписано" + +#. TRANS: Page title when tag unsubscription succeeded. +msgid "Unsubscribed" +msgstr "Відписано" + +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "" + +#. TRANS: Page title when tag subscription succeeded. +msgid "Subscribed" +msgstr "Підписано" + +#. TRANS: Header for subscriptions overview for a user (first page). +#. TRANS: %s is a user nickname. +#, php-format +msgid "%s's tag subscriptions" +msgstr "Підписки на теґи %s" + +#. TRANS: Header for subscriptions overview for a user (not first page). +#. TRANS: %1$s is a user nickname, %2$d is the page number. +#, php-format +msgid "%1$s's tag subscriptions, page %2$d" +msgstr "Підписки на теґи %1$s, сторінка %2$d" + +#. TRANS: Page notice for page with an overview of all tag subscriptions +#. TRANS: of the logged in user's own profile. +msgid "" +"You have subscribed to receive all notices on this site containing the " +"following tags:" +msgstr "" +"Ви підписалися на отримання всіх дописів на цьому сайті, що позначені теґами:" + +#. TRANS: Page notice for page with an overview of all subscriptions of a user other +#. TRANS: than the logged in user. %s is the user nickname. +#, php-format +msgid "" +"%s has subscribed to receive all notices on this site containing the " +"following tags:" +msgstr "" +"%s підписаний на отримання всіх дописів на цьому сайті, що позначені теґами:" + +#. TRANS: Tag subscription list text when the logged in user has no tag subscriptions. +msgid "" +"You are not listening to any hash tags right now. You can push the " +"\"Subscribe\" button on any hashtag page to automatically receive any public " +"messages on this site that use that tag, even if you are not subscribed to " +"the poster." +msgstr "" + +#. TRANS: Tag subscription list text when looking at the subscriptions for a of a user other +#. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. +#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none +#. TRANS: as an anonymous user. %s is the user nickname. +#, php-format +msgid "%s is not listening to any tags." +msgstr "%s не підписаний до жодних тегів" + +#, php-format +msgid "#%s since %s" +msgstr "#%s протягом %s" diff --git a/plugins/TagSub/tagsubaction.php b/plugins/TagSub/tagsubaction.php index 2e4e25d6e1..18335f4cc8 100644 --- a/plugins/TagSub/tagsubaction.php +++ b/plugins/TagSub/tagsubaction.php @@ -75,7 +75,7 @@ class TagsubAction extends Action 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.')); + $this->clientError(_m('This action only accepts POST requests.')); return false; } @@ -85,7 +85,7 @@ class TagsubAction extends Action 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.'. + $this->clientError(_m('There was a problem with your session token.'. ' Try again, please.')); return false; } @@ -95,8 +95,8 @@ class TagsubAction 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.')); + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. + $this->clientError(_m('Not logged in.')); return false; } @@ -106,7 +106,7 @@ class TagsubAction extends Action if (empty($this->tag)) { // TRANS: Client error displayed trying to subscribe to a non-existing profile. - $this->clientError(_('No such profile.')); + $this->clientError(_m('No such profile.')); return false; } diff --git a/plugins/TagSub/tagsubform.php b/plugins/TagSub/tagsubform.php index 108558be24..169ccc4adb 100644 --- a/plugins/TagSub/tagsubform.php +++ b/plugins/TagSub/tagsubform.php @@ -137,6 +137,6 @@ class TagSubForm extends Form function formActions() { - $this->out->submit('submit', _('Subscribe'), 'submit', null, _m('Subscribe to this tag')); + $this->out->submit('submit', _m('BUTTON','Subscribe'), 'submit', null, _m('Subscribe to this tag')); } } diff --git a/plugins/TagSub/tagsubsaction.php b/plugins/TagSub/tagsubsaction.php index f11935229b..21ddf5035f 100644 --- a/plugins/TagSub/tagsubsaction.php +++ b/plugins/TagSub/tagsubsaction.php @@ -115,13 +115,13 @@ class TagSubsAction extends GalleryAction $current_user = common_current_user(); if ($this->user->id === $current_user->id) { // TRANS: Tag subscription list text when the logged in user has no tag subscriptions. - $message = _('You\'re not listening to any hash tags right now. You can push the "Subscribe" button ' . + $message = _m('You are not listening to any hash tags right now. You can push the "Subscribe" button ' . 'on any hashtag page to automatically receive any public messages on this site that use that ' . - 'tag, even if you\'re not subscribed to the poster.'); + 'tag, even if you are not subscribed to the poster.'); } else { // TRANS: Tag subscription list text when looking at the subscriptions for a of a user other // TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. - $message = sprintf(_('%s is not listening to any tags.'), $this->user->nickname); + $message = sprintf(_m('%s is not listening to any tags.'), $this->user->nickname); } } else { diff --git a/plugins/TagSub/tagunsubform.php b/plugins/TagSub/tagunsubform.php index 0b44648071..d26e99a3e5 100644 --- a/plugins/TagSub/tagunsubform.php +++ b/plugins/TagSub/tagunsubform.php @@ -104,6 +104,6 @@ class TagUnsubForm extends TagSubForm function formActions() { - $this->out->submit('submit', _('Unsubscribe'), 'submit', null, _m('Unsubscribe from this tag')); + $this->out->submit('submit', _m('BUTTON','Unsubscribe'), 'submit', null, _m('Unsubscribe from this tag')); } } diff --git a/plugins/Template/TemplatePlugin.php b/plugins/Template/TemplatePlugin.php index 80625c5b70..c013f9f4d1 100644 --- a/plugins/Template/TemplatePlugin.php +++ b/plugins/Template/TemplatePlugin.php @@ -285,7 +285,7 @@ class TemplateAction extends Action header('WWW-Authenticate: Basic realm="StatusNet API"'); // cancelled the browser login form - $this->clientError(_('Authentication error!'), $code = 401); + $this->clientError(_m('Authentication error!'), $code = 401); } else { @@ -299,7 +299,7 @@ class TemplateAction extends Action // verify that user is admin if (!($user->id == 1)) - $this->clientError(_('Only User #1 can update the template.'), $code = 401); + $this->clientError(_m('Only User #1 can update the template.'), $code = 401); // open the old template $tpl_file = $this->templateFolder() . '/index.html'; @@ -316,7 +316,7 @@ class TemplateAction extends Action } else { // bad username and password - $this->clientError(_('Authentication error!'), $code = 401); + $this->clientError(_m('Authentication error!'), $code = 401); } diff --git a/plugins/TightUrl/locale/TightUrl.pot b/plugins/TightUrl/locale/TightUrl.pot index fdbd8ed4f8..1abc0bd315 100644 --- a/plugins/TightUrl/locale/TightUrl.pot +++ b/plugins/TightUrl/locale/TightUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po index 4d4a7f927c..7ce22657d8 100644 --- a/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:54+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:32+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po index 75edc40fbe..610f41530c 100644 --- a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:32+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po index 354893191a..80f893c708 100644 --- a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:32+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po index 33370ed1e5..4bb52f836a 100644 --- a/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:32+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po index 48e3090ed9..9ac714a226 100644 --- a/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:32+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po index b80f1238ce..c49006532a 100644 --- a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:32+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po index 9aa8fce78a..1328d0450a 100644 --- a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:32+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po index 13f0528e64..3994cafc1e 100644 --- a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:32+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po index fd48ad6b44..b1b00ea89d 100644 --- a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:32+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po new file mode 100644 index 0000000000..9ff50a2656 --- /dev/null +++ b/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - TightUrl to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TightUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:32+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-tighturl\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "Menggunakan khidmat pemendekan URL %1$s." diff --git a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po index 894b6020a5..b46277fb15 100644 --- a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:33+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po index 86fb9e8419..90778b0e52 100644 --- a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po index a7a451dc79..9718e1a06f 100644 --- a/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:33+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po index d48c45f9b1..65e7f70986 100644 --- a/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:33+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po index c32a91f2c5..89bea8df34 100644 --- a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:33+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po index a0f7c51e64..40cc2b8b06 100644 --- a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:33+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po index c948b58510..c2e6235354 100644 --- a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:33+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TinyMCE/locale/TinyMCE.pot b/plugins/TinyMCE/locale/TinyMCE.pot index cc868d1400..ca8da2633b 100644 --- a/plugins/TinyMCE/locale/TinyMCE.pot +++ b/plugins/TinyMCE/locale/TinyMCE.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po index f441c8bd5a..2f2ce5bb8a 100644 --- a/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:33+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po index bf458f00dc..7ca659c45b 100644 --- a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:33+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po index baa6b2428b..9c3c6dd20f 100644 --- a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:33+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po index cc7c96bffd..39839ad13b 100644 --- a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po index ab96ae202f..874fe36178 100644 --- a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po index ef7c434eff..77f0225811 100644 --- a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po index 2d3ac59415..615b309d78 100644 --- a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po index 2fe575d811..d5d766250a 100644 --- a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po new file mode 100644 index 0000000000..4af4e4b4a0 --- /dev/null +++ b/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - TinyMCE to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TinyMCE\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-tinymce\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Use TinyMCE library to allow rich text editing in the browser." +msgstr "" +"Gunakan perpustakaan TinyMCE untuk membolehkan penyuntingan teks beraneka " +"(rich text) dalam pelayar ini." diff --git a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po index da6cae6821..d2f21049ce 100644 --- a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po index 229a43c9f9..fbff2b2d51 100644 --- a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po index 13d5398292..950942a166 100644 --- a/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po index 3170423b3a..c9dfc7eaaa 100644 --- a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po index 26f72e6ef2..d402ba55bb 100644 --- a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po index 8bc58dbeb8..14c26b86d2 100644 --- a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po index 2968dcc9f9..88cb9be72b 100644 --- a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TwitterBridge/TwitterBridgePlugin.php b/plugins/TwitterBridge/TwitterBridgePlugin.php index b6658b13a6..29192cf53b 100644 --- a/plugins/TwitterBridge/TwitterBridgePlugin.php +++ b/plugins/TwitterBridge/TwitterBridgePlugin.php @@ -530,4 +530,13 @@ class TwitterBridgePlugin extends Plugin return true; } + + function onStartGetProfileUri($profile, &$uri) + { + if (preg_match('!^https?://twitter.com/!', $profile->profileurl)) { + $uri = $profile->profileurl; + return false; + } + return true; + } } diff --git a/plugins/TwitterBridge/locale/TwitterBridge.pot b/plugins/TwitterBridge/locale/TwitterBridge.pot index 0d79eb7d14..14c2d0f01c 100644 --- a/plugins/TwitterBridge/locale/TwitterBridge.pot +++ b/plugins/TwitterBridge/locale/TwitterBridge.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -119,22 +119,25 @@ msgid "Twitter preferences saved." msgstr "" #: twitterauthorization.php:126 -msgid "You can't register if you don't agree to the license." +msgid "You cannot register if you do not agree to the license." msgstr "" #: twitterauthorization.php:135 msgid "Something weird happened." msgstr "" -#: twitterauthorization.php:181 twitterauthorization.php:229 -#: twitterauthorization.php:300 -msgid "Couldn't link your Twitter account." +#: twitterauthorization.php:181 +msgid "Could not link your Twitter account." msgstr "" #: twitterauthorization.php:201 msgid "Couldn't link your Twitter account: oauth_token mismatch." msgstr "" +#: twitterauthorization.php:229 twitterauthorization.php:300 +msgid "Couldn't link your Twitter account." +msgstr "" + #: twitterauthorization.php:312 #, php-format msgid "" @@ -171,7 +174,16 @@ msgid "New nickname" msgstr "" #: twitterauthorization.php:392 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "" + +#: twitterauthorization.php:395 +msgctxt "LABEL" +msgid "Email" +msgstr "" + +#: twitterauthorization.php:396 +msgid "Used only for updates, announcements, and password recovery" msgstr "" #: twitterauthorization.php:404 diff --git a/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po index a2f5f64bde..f4648acf0d 100644 --- a/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:07:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:40+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -99,18 +99,22 @@ msgstr "" msgid "Twitter preferences saved." msgstr "" -msgid "You can't register if you don't agree to the license." +msgid "You cannot register if you do not agree to the license." msgstr "" msgid "Something weird happened." msgstr "" -msgid "Couldn't link your Twitter account." -msgstr "" +#, fuzzy +msgid "Could not link your Twitter account." +msgstr "Kevreadenn gant ho kont Twitter" msgid "Couldn't link your Twitter account: oauth_token mismatch." msgstr "" +msgid "Couldn't link your Twitter account." +msgstr "" + #, php-format msgid "" "This is the first time you've logged into %s so we must connect your Twitter " @@ -139,7 +143,14 @@ msgstr "Krouiñ un implijer nevez gant al lesanv-se." msgid "New nickname" msgstr "Lesanv nevez" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "" + +msgctxt "LABEL" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery" msgstr "" msgid "Create" diff --git a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po index 472e89b89f..5a00e8ee19 100644 --- a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:07:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:40+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -107,13 +107,15 @@ msgstr "No s'han pogut desar les preferències del Twitter." msgid "Twitter preferences saved." msgstr "S'han desat les preferències del Twitter." -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "No podeu registrar-vos-hi si no accepteu la llicència." msgid "Something weird happened." msgstr "Ha passat quelcom estrany." -msgid "Couldn't link your Twitter account." +#, fuzzy +msgid "Could not link your Twitter account." msgstr "No s'ha pogut enllaçar amb el compte del Twitter." msgid "Couldn't link your Twitter account: oauth_token mismatch." @@ -121,6 +123,9 @@ msgstr "" "No s'ha pogut enllaçar amb el vostre compte del Twitter: no coincidència de " "l'oath_token." +msgid "Couldn't link your Twitter account." +msgstr "No s'ha pogut enllaçar amb el compte del Twitter." + #, php-format msgid "" "This is the first time you've logged into %s so we must connect your Twitter " @@ -155,9 +160,17 @@ msgstr "Crea un usuari nom amb aquest sobrenom." msgid "New nickname" msgstr "Nou sobrenom" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 lletres en minúscules o nombres, sense puntuació o espais" +msgctxt "LABEL" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery" +msgstr "" + msgid "Create" msgstr "Crea" diff --git a/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po index ad4add6436..a6c224109e 100644 --- a/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:07:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:40+0000\n" "Language-Team: Persian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -99,18 +99,22 @@ msgstr "نمی‌توان ترجیحات توییتر را ذخیره کرد." msgid "Twitter preferences saved." msgstr "تنظیمات توییتر ذخیره شد." -msgid "You can't register if you don't agree to the license." +msgid "You cannot register if you do not agree to the license." msgstr "" msgid "Something weird happened." msgstr "" -msgid "Couldn't link your Twitter account." -msgstr "" +#, fuzzy +msgid "Could not link your Twitter account." +msgstr "حساب کاربری توییتر متصل شد" msgid "Couldn't link your Twitter account: oauth_token mismatch." msgstr "" +msgid "Couldn't link your Twitter account." +msgstr "" + #, php-format msgid "" "This is the first time you've logged into %s so we must connect your Twitter " @@ -139,7 +143,14 @@ msgstr "ایجاد یک کاربر جدید با این نام مستعار." msgid "New nickname" msgstr "نام مستعار جدید" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "" + +msgctxt "LABEL" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery" msgstr "" msgid "Create" diff --git a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po index 03ecdbb7bb..31b0d1a3da 100644 --- a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:07:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:40+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -108,13 +108,15 @@ msgstr "Impossible de sauvegarder les préférences Twitter." msgid "Twitter preferences saved." msgstr "Préférences Twitter enregistrées." -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "Vous ne pouvez pas vous inscrire si vous n’acceptez pas la licence." msgid "Something weird happened." msgstr "Quelque chose de bizarre s’est passé." -msgid "Couldn't link your Twitter account." +#, fuzzy +msgid "Could not link your Twitter account." msgstr "Impossible de lier votre compte Twitter." msgid "Couldn't link your Twitter account: oauth_token mismatch." @@ -122,6 +124,9 @@ msgstr "" "Impossible de lier votre compte Twitter : le jeton d’authentification ne " "correspond pas." +msgid "Couldn't link your Twitter account." +msgstr "Impossible de lier votre compte Twitter." + #, php-format msgid "" "This is the first time you've logged into %s so we must connect your Twitter " @@ -157,9 +162,17 @@ msgstr "Créer un nouvel utilisateur avec ce pseudonyme." msgid "New nickname" msgstr "Nouveau pseudonyme" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces" +msgctxt "LABEL" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery" +msgstr "" + msgid "Create" msgstr "Créer" diff --git a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po index 723c1469df..9520141a46 100644 --- a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:07:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:40+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -105,18 +105,23 @@ msgstr "Non poteva salveguardar le preferentias de Twitter." msgid "Twitter preferences saved." msgstr "Preferentias de Twitter salveguardate." -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "Tu non pote crear un conto si tu non accepta le licentia." msgid "Something weird happened." msgstr "Qualcosa de bizarre occurreva." -msgid "Couldn't link your Twitter account." +#, fuzzy +msgid "Could not link your Twitter account." msgstr "Non poteva ligar a tu conto de Twitter." msgid "Couldn't link your Twitter account: oauth_token mismatch." msgstr "Non poteva ligar a tu conto de Twitter: oauth_token non corresponde." +msgid "Couldn't link your Twitter account." +msgstr "Non poteva ligar a tu conto de Twitter." + #, php-format msgid "" "This is the first time you've logged into %s so we must connect your Twitter " @@ -151,9 +156,17 @@ msgstr "Crear un nove usator con iste pseudonymo." msgid "New nickname" msgstr "Nove pseudonymo" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 minusculas o numeros, sin punctuation o spatios" +msgctxt "LABEL" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery" +msgstr "" + msgid "Create" msgstr "Crear" @@ -284,7 +297,6 @@ msgid "Sign in with Twitter" msgstr "Aperir session con Twitter" #. TRANS: Mail subject after forwarding notices to Twitter has stopped working. -#, fuzzy msgid "Your Twitter bridge has been disabled" msgstr "Tu ponte a Twitter ha essite disactivate." diff --git a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po index 040f13c1a7..89d4e1cf38 100644 --- a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:07:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:41+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -105,13 +105,13 @@ msgstr "Не можев да ги зачувам нагодувањата за T msgid "Twitter preferences saved." msgstr "Нагодувањата за Twitter се зачувани." -msgid "You can't register if you don't agree to the license." +msgid "You cannot register if you do not agree to the license." msgstr "Не можете да се регистрирате ако не се согласувате со лиценцата." msgid "Something weird happened." msgstr "Се случи нешто чудно." -msgid "Couldn't link your Twitter account." +msgid "Could not link your Twitter account." msgstr "Не можам да ја поврзам Вашата сметка на Twitter." msgid "Couldn't link your Twitter account: oauth_token mismatch." @@ -119,6 +119,9 @@ msgstr "" "Не можев да ја поврзам Вашата сметка на Twitter: несогласување со " "oauth_token." +msgid "Couldn't link your Twitter account." +msgstr "Не можам да ја поврзам Вашата сметка на Twitter." + #, php-format msgid "" "This is the first time you've logged into %s so we must connect your Twitter " @@ -141,7 +144,7 @@ msgid "" "email address, IM address, and phone number." msgstr "" "Мојот текст и податотеки се достапни под %s, освен следниве приватни " -"податоци: лозинка, е-пошта, IM-адреса и телефонски број." +"податоци: лозинка, е-пошта, НП-адреса и телефонски број." msgid "Create new account" msgstr "Создај нова сметка" @@ -152,8 +155,15 @@ msgstr "Создај нов корисник со овој прекар." msgid "New nickname" msgstr "Нов прекар" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 мали букви или бројки, без интерпункциски знаци и празни места" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "1-64 мали букви или бројки, без интерпункциски знаци и празни места." + +msgctxt "LABEL" +msgid "Email" +msgstr "Е-пошта" + +msgid "Used only for updates, announcements, and password recovery" +msgstr "Се користи само за подновувања, објави и повраќање на лозинка." msgid "Create" msgstr "Создај" @@ -286,9 +296,8 @@ msgid "Sign in with Twitter" msgstr "Најава со Twitter" #. TRANS: Mail subject after forwarding notices to Twitter has stopped working. -#, fuzzy msgid "Your Twitter bridge has been disabled" -msgstr "Вашиот мост до Twitter е оневозможен." +msgstr "Вашиот мост до Twitter е оневозможен" #. TRANS: Mail body after forwarding notices to Twitter has stopped working. #. TRANS: %1$ is the name of the user the mail is sent to, %2$s is a URL to the diff --git a/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po new file mode 100644 index 0000000000..1bde43c425 --- /dev/null +++ b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po @@ -0,0 +1,311 @@ +# Translation of StatusNet - TwitterBridge to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TwitterBridge\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:41+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-01 21:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-twitterbridge\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Twitter settings" +msgstr "Tetapan Twitter" + +msgid "" +"Connect your Twitter account to share your updates with your Twitter friends " +"and vice-versa." +msgstr "" +"Sambungkan akaun Twitter anda untuk berkongsi kemaskini dengan rakan-rakan " +"Twitter anda." + +msgid "Twitter account" +msgstr "Akaun Twitter" + +msgid "Connected Twitter account" +msgstr "Akaun Twitter disambungkan" + +msgid "Disconnect my account from Twitter" +msgstr "Putuskan akaun saya dari Twitter" + +msgid "Disconnecting your Twitter could make it impossible to log in! Please " +msgstr "Jika Twitter anda diputuskan, mungkin tak boleh log masuk! Tolong " + +msgid "set a password" +msgstr "tetapkan kata laluan" + +msgid " first." +msgstr " terlebih dahulu." + +#. TRANS: %1$s is the current website name. +#, php-format +msgid "" +"Keep your %1$s account but disconnect from Twitter. You can use your %1$s " +"password to log in." +msgstr "" + +msgid "Disconnect" +msgstr "Putuskan" + +msgid "Preferences" +msgstr "Keutamaan" + +msgid "Automatically send my notices to Twitter." +msgstr "Hantarkan notis saya secara automatik ke Twitter." + +msgid "Send local \"@\" replies to Twitter." +msgstr "Hantarkan balasan \"@\" setempat ke Twitter." + +msgid "Subscribe to my Twitter friends here." +msgstr "Langgan kawan-kawan Twitter saya di sini." + +msgid "Import my friends timeline." +msgstr "Import garis masa kawan-kawan saya." + +msgid "Save" +msgstr "Simpan" + +msgid "Add" +msgstr "Tambahkan" + +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +msgid "Unexpected form submission." +msgstr "" + +msgid "No Twitter connection to remove." +msgstr "Tiada sambungan Twitter untuk digugurkan." + +msgid "Couldn't remove Twitter user." +msgstr "Pengguna Twitter tidak dapat digugurkan." + +msgid "Twitter account disconnected." +msgstr "" + +msgid "Couldn't save Twitter preferences." +msgstr "" + +msgid "Twitter preferences saved." +msgstr "" + +msgid "You cannot register if you do not agree to the license." +msgstr "" + +msgid "Something weird happened." +msgstr "" + +#, fuzzy +msgid "Could not link your Twitter account." +msgstr "Log masuk dengan akaun Twitter anda" + +msgid "Couldn't link your Twitter account: oauth_token mismatch." +msgstr "" + +msgid "Couldn't link your Twitter account." +msgstr "" + +#, php-format +msgid "" +"This is the first time you've logged into %s so we must connect your Twitter " +"account to a local account. You can either create a new account, or connect " +"with your existing account, if you have one." +msgstr "" + +msgid "Twitter Account Setup" +msgstr "Persediaan Akaun Twitter" + +msgid "Connection options" +msgstr "Pilihan sambungan" + +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" + +msgid "Create new account" +msgstr "Buka akaun baru" + +msgid "Create a new user with this nickname." +msgstr "" + +msgid "New nickname" +msgstr "" + +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "" + +msgctxt "LABEL" +msgid "Email" +msgstr "E-mel" + +msgid "Used only for updates, announcements, and password recovery" +msgstr "" + +msgid "Create" +msgstr "Cipta" + +msgid "Connect existing account" +msgstr "Sambungkan akaun yang sedia ada" + +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Twitter account." +msgstr "" + +msgid "Existing nickname" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Connect" +msgstr "" + +msgid "Registration not allowed." +msgstr "" + +msgid "Not a valid invitation code." +msgstr "" + +msgid "Nickname not allowed." +msgstr "" + +msgid "Nickname already in use. Try another one." +msgstr "" + +msgid "Error registering user." +msgstr "" + +msgid "Error connecting user to Twitter." +msgstr "" + +msgid "Invalid username or password." +msgstr "" + +msgid "Twitter" +msgstr "Twitter" + +msgid "Twitter bridge settings" +msgstr "Tetapan pengantara Twitter" + +msgid "Invalid consumer key. Max length is 255 characters." +msgstr "Kunci pengguna tidak sah. Panjang maksimum 255 aksara." + +msgid "Invalid consumer secret. Max length is 255 characters." +msgstr "Rahsia pengguna tidak sah. Panjang maksimum 255 aksara." + +msgid "Twitter application settings" +msgstr "" + +msgid "Consumer key" +msgstr "Kunci pengguna" + +msgid "Consumer key assigned by Twitter" +msgstr "Kunci pengguna yang diperuntukkan oleh Twitter" + +msgid "Consumer secret" +msgstr "Rahsia pengguna" + +msgid "Consumer secret assigned by Twitter" +msgstr "Rahsia pengguna yang diperuntukkan oleh Twitter" + +msgid "Note: a global consumer key and secret are set." +msgstr "Perhatian: kunci dan rahsia pengguna global telah ditetapkan." + +msgid "Integration source" +msgstr "Sumber penyepaduan" + +msgid "Name of your Twitter application" +msgstr "Nama aplikasi Twitter anda" + +msgid "Options" +msgstr "Pilihan" + +msgid "Enable \"Sign-in with Twitter\"" +msgstr "Hidupkan \"Daftar masuk dengan Twitter\"" + +msgid "Allow users to login with their Twitter credentials" +msgstr "Benarkan pengguna log masuk dengan watikah Twitter" + +msgid "Enable Twitter import" +msgstr "Bolehkan import dari Twitter" + +msgid "" +"Allow users to import their Twitter friends' timelines. Requires daemons to " +"be manually configured." +msgstr "" +"Benarkan pengguna mengimport garis masa kawan-kawannya di Twitter. Untuk " +"itu, daemon perlu ditataletak secara manual." + +msgid "Save Twitter settings" +msgstr "Simpan tetapan Twitter" + +msgid "Login or register using Twitter" +msgstr "Log masuk atau berdaftar dengan menggunakan Twitter" + +msgid "Twitter integration options" +msgstr "Pilihan penyepaduan Twitter" + +msgid "Twitter bridge configuration" +msgstr "Tatarajah pengantara Twitter" + +msgid "" +"The Twitter \"bridge\" plugin allows integration of a StatusNet instance " +"with Twitter." +msgstr "" +"Pemalam \"penghubung\" Twitter membolehkan penyepaduan peristiwa StatusNet " +"dengan Twitter." + +msgid "Already logged in." +msgstr "Sudah log masuk." + +msgid "Twitter Login" +msgstr "Log masuk Twitter" + +msgid "Login with your Twitter account" +msgstr "Log masuk dengan akaun Twitter anda" + +msgid "Sign in with Twitter" +msgstr "Daftar masuk dengan Twitter" + +#. TRANS: Mail subject after forwarding notices to Twitter has stopped working. +msgid "Your Twitter bridge has been disabled" +msgstr "" + +#. TRANS: Mail body after forwarding notices to Twitter has stopped working. +#. TRANS: %1$ is the name of the user the mail is sent to, %2$s is a URL to the +#. TRANS: Twitter settings, %3$s is the StatusNet sitename. +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. We no longer seem to have permission to update your Twitter " +"status. Did you maybe revoke %3$s's access?\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s" +msgstr "" + +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#, php-format +msgid "RT @%1$s %2$s" +msgstr "RT @%1$s %2$s" diff --git a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po index 6e6106c637..2365211dea 100644 --- a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:07:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:41+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -107,13 +107,13 @@ msgstr "Het was niet mogelijk de Twittervoorkeuren op te slaan." msgid "Twitter preferences saved." msgstr "De Twitterinstellingen zijn opgeslagen." -msgid "You can't register if you don't agree to the license." +msgid "You cannot register if you do not agree to the license." msgstr "U kunt zich niet registreren als u niet met de licentie akkoord gaat." msgid "Something weird happened." msgstr "Er is iets vreemds gebeurd." -msgid "Couldn't link your Twitter account." +msgid "Could not link your Twitter account." msgstr "Het was niet mogelijk uw Twittergebruiker te koppelen." msgid "Couldn't link your Twitter account: oauth_token mismatch." @@ -121,6 +121,9 @@ msgstr "" "Het was niet mogelijk uw Twittergebruiker te koppelen: het oauth_token kwam " "niet overeen." +msgid "Couldn't link your Twitter account." +msgstr "Het was niet mogelijk uw Twittergebruiker te koppelen." + #, php-format msgid "" "This is the first time you've logged into %s so we must connect your Twitter " @@ -154,8 +157,15 @@ msgstr "Nieuwe gebruiker aanmaken met deze gebruikersnaam." msgid "New nickname" msgstr "Nieuwe gebruikersnaam" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties." + +msgctxt "LABEL" +msgid "Email" +msgstr "E-mail" + +msgid "Used only for updates, announcements, and password recovery" +msgstr "Alleen gebruikt voor updates, aankondigingen en wachtwoordherstel." msgid "Create" msgstr "Aanmaken" @@ -290,9 +300,8 @@ msgid "Sign in with Twitter" msgstr "Aanmelden met Twitter" #. TRANS: Mail subject after forwarding notices to Twitter has stopped working. -#, fuzzy msgid "Your Twitter bridge has been disabled" -msgstr "Uw koppeling naar Twitter is uitgeschakeld." +msgstr "Uw koppeling naar Twitter is uitgeschakeld" #. TRANS: Mail body after forwarding notices to Twitter has stopped working. #. TRANS: %1$ is the name of the user the mail is sent to, %2$s is a URL to the diff --git a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po index 917be154e9..fd833650c8 100644 --- a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:07:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:41+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -101,18 +101,23 @@ msgstr "Twitter tercihleri kaydedilemedi." msgid "Twitter preferences saved." msgstr "Twitter tercihleriniz kaydedildi." -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." msgid "Something weird happened." msgstr "Garip bir şeyler oldu." -msgid "Couldn't link your Twitter account." -msgstr "" +#, fuzzy +msgid "Could not link your Twitter account." +msgstr "Twitter hesabınızla giriş yapın" msgid "Couldn't link your Twitter account: oauth_token mismatch." msgstr "" +msgid "Couldn't link your Twitter account." +msgstr "" + #, php-format msgid "" "This is the first time you've logged into %s so we must connect your Twitter " @@ -146,11 +151,19 @@ msgstr "Bu kullanıcı adıyla yeni bir kullanıcı oluştur." msgid "New nickname" msgstr "Yeni kullanıcı adı" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" "1-64 tane küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin " "verilmez" +msgctxt "LABEL" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery" +msgstr "" + msgid "Create" msgstr "Oluştur" diff --git a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po index f32eecccc2..8dfd573b20 100644 --- a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:07:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:41+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -106,19 +106,24 @@ msgstr "Не можу зберегти налаштування Twitter." msgid "Twitter preferences saved." msgstr "Налаштування Twitter збережено." -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "Ви не зможете зареєструватись, якщо не погодитесь з умовами ліцензії." msgid "Something weird happened." msgstr "Сталося щось незрозуміле." -msgid "Couldn't link your Twitter account." +#, fuzzy +msgid "Could not link your Twitter account." msgstr "Не вдається підключити ваш акаунт Twitter." msgid "Couldn't link your Twitter account: oauth_token mismatch." msgstr "" "Не вдається підключити ваш акаунт Twitter: невідповідність oauth_token." +msgid "Couldn't link your Twitter account." +msgstr "Не вдається підключити ваш акаунт Twitter." + #, php-format msgid "" "This is the first time you've logged into %s so we must connect your Twitter " @@ -152,10 +157,18 @@ msgstr "Створити нового користувача з цим нікн msgid "New nickname" msgstr "Новий нікнейм" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" "1-64 літери нижнього регістру і цифри, ніякої пунктуації або інтервалів" +msgctxt "LABEL" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery" +msgstr "" + msgid "Create" msgstr "Створити" @@ -287,7 +300,6 @@ msgid "Sign in with Twitter" msgstr "Увійти з акаунтом Twitter" #. TRANS: Mail subject after forwarding notices to Twitter has stopped working. -#, fuzzy msgid "Your Twitter bridge has been disabled" msgstr "Ваш місток до Twitter було відключено." diff --git a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po index 310d634aeb..28acf61c51 100644 --- a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:07:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:41+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -102,18 +102,23 @@ msgstr "无法保存 Twitter 参数设置。" msgid "Twitter preferences saved." msgstr "已保存 Twitter 参数设置。" -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "你必须同意许可协议才能注册。" msgid "Something weird happened." msgstr "发生了很诡异的事情。" -msgid "Couldn't link your Twitter account." +#, fuzzy +msgid "Could not link your Twitter account." msgstr "无法连接你的 Twitter 帐号。" msgid "Couldn't link your Twitter account: oauth_token mismatch." msgstr "无法连接你的 Twitter 帐号:oauth_token 不符。" +msgid "Couldn't link your Twitter account." +msgstr "无法连接你的 Twitter 帐号。" + #, php-format msgid "" "This is the first time you've logged into %s so we must connect your Twitter " @@ -146,9 +151,17 @@ msgstr "以此昵称创建新帐户" msgid "New nickname" msgstr "新昵称" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1 到 64 个小写字母或数字,不包含标点或空格" +msgctxt "LABEL" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery" +msgstr "" + msgid "Create" msgstr "创建" diff --git a/plugins/TwitterBridge/twitterauthorization.php b/plugins/TwitterBridge/twitterauthorization.php index 972fa527d4..e45b677e17 100644 --- a/plugins/TwitterBridge/twitterauthorization.php +++ b/plugins/TwitterBridge/twitterauthorization.php @@ -123,7 +123,7 @@ class TwitterauthorizationAction extends Action if ($this->arg('create')) { if (!$this->boolean('license')) { - $this->showForm(_m('You can\'t register if you don\'t agree to the license.'), + $this->showForm(_m('You cannot register if you do not agree to the license.'), $this->trimmed('newname')); return; } @@ -178,7 +178,7 @@ class TwitterauthorizationAction extends Action ); common_log(LOG_INFO, 'Twitter bridge - ' . $msg); $this->serverError( - _m('Couldn\'t link your Twitter account.') + _m('Could not link your Twitter account.') ); } @@ -389,11 +389,11 @@ class TwitterauthorizationAction extends Action $this->elementStart('li'); $this->input('newname', _m('New nickname'), ($this->username) ? $this->username : '', - _m('1-64 lowercase letters or numbers, no punctuation or spaces')); + _m('1-64 lowercase letters or numbers, no punctuation or spaces.')); $this->elementEnd('li'); $this->elementStart('li'); - $this->input('email', _('Email'), $this->getEmail(), - _('Used only for updates, announcements, '. + $this->input('email', _m('LABEL','Email'), $this->getEmail(), + _m('Used only for updates, announcements, '. 'and password recovery')); $this->elementEnd('li'); @@ -678,6 +678,4 @@ class TwitterauthorizationAction extends Action } return true; } - } - diff --git a/plugins/UserFlag/adminprofileflag.php b/plugins/UserFlag/adminprofileflag.php index df0450f66a..1aafa3c1bf 100644 --- a/plugins/UserFlag/adminprofileflag.php +++ b/plugins/UserFlag/adminprofileflag.php @@ -61,7 +61,8 @@ class AdminprofileflagAction extends Action // User must be logged in. if (!common_logged_in()) { - $this->clientError(_('Not logged in.')); + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. + $this->clientError(_m('Not logged in.')); return; } @@ -85,7 +86,7 @@ class AdminprofileflagAction extends Action // User must have the right to review flags if (!$user->hasRight(UserFlagPlugin::REVIEWFLAGS)) { - $this->clientError(_('You cannot review profile flags.')); + $this->clientError(_m('You cannot review profile flags.')); return false; } diff --git a/plugins/UserFlag/locale/UserFlag.pot b/plugins/UserFlag/locale/UserFlag.pot index a54bb27ef4..e7c6e3ea18 100644 --- a/plugins/UserFlag/locale/UserFlag.pot +++ b/plugins/UserFlag/locale/UserFlag.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -54,20 +54,29 @@ msgstr "" msgid "Clear all flags" msgstr "" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +#: adminprofileflag.php:65 +msgid "Not logged in." +msgstr "" + +#: adminprofileflag.php:89 +msgid "You cannot review profile flags." +msgstr "" + #. TRANS: Title for page with a list of profiles that were flagged for review. -#: adminprofileflag.php:125 +#: adminprofileflag.php:126 msgid "Flagged profiles" msgstr "" #. TRANS: Header for moderation menu with action buttons for flagged profiles (like 'sandbox', 'silence', ...). -#: adminprofileflag.php:242 +#: adminprofileflag.php:243 msgid "Moderate" msgstr "" #. TRANS: Message displayed on a profile if it has been flagged. #. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. #. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. -#: adminprofileflag.php:388 +#: adminprofileflag.php:389 #, php-format msgid "Flagged by %1$s and %2$d other" msgid_plural "Flagged by %1$s and %2$d others" @@ -76,7 +85,7 @@ msgstr[1] "" #. TRANS: Message displayed on a profile if it has been flagged. #. TRANS: %s is a comma separated list of at most 5 user nicknames that flagged. -#: adminprofileflag.php:392 +#: adminprofileflag.php:393 #, php-format msgid "Flagged by %s" msgstr "" diff --git a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po index 9674e47029..172265d1a2 100644 --- a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:02+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:43+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -53,6 +53,13 @@ msgstr "Esborra" msgid "Clear all flags" msgstr "Esborra tots els senyals" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "" + +msgid "You cannot review profile flags." +msgstr "" + #. TRANS: Title for page with a list of profiles that were flagged for review. msgid "Flagged profiles" msgstr "Perfils senyalats" diff --git a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po index d7ebd18b0a..dc872c0695 100644 --- a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:02+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:43+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -53,6 +53,13 @@ msgstr "Löschen" msgid "Clear all flags" msgstr "Alle Markierungen löschen" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "" + +msgid "You cannot review profile flags." +msgstr "" + #. TRANS: Title for page with a list of profiles that were flagged for review. msgid "Flagged profiles" msgstr "Markierte Profile" diff --git a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po index 8e60fa0de1..40101f61eb 100644 --- a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:03+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:43+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -53,6 +53,13 @@ msgstr "Effacer" msgid "Clear all flags" msgstr "Effacer tous les marquages" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "" + +msgid "You cannot review profile flags." +msgstr "" + #. TRANS: Title for page with a list of profiles that were flagged for review. msgid "Flagged profiles" msgstr "Profils marqués" diff --git a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po index 36affc0d4c..d516b0f392 100644 --- a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:03+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:43+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -52,6 +52,13 @@ msgstr "Rader" msgid "Clear all flags" msgstr "Rader tote le marcas" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "" + +msgid "You cannot review profile flags." +msgstr "" + #. TRANS: Title for page with a list of profiles that were flagged for review. msgid "Flagged profiles" msgstr "Profilos marcate" diff --git a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po index e799e60fdc..00e1ea3a39 100644 --- a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:03+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:43+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -53,6 +53,13 @@ msgstr "Отстрани" msgid "Clear all flags" msgstr "Отстрани ги сите ознаки" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Не сте најавени." + +msgid "You cannot review profile flags." +msgstr "Не можете да прегледувате профилни знаменца." + #. TRANS: Title for page with a list of profiles that were flagged for review. msgid "Flagged profiles" msgstr "Означени профили" diff --git a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po index 9c1d2ac123..5ee678f19f 100644 --- a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:03+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:43+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -53,6 +53,13 @@ msgstr "Wissen" msgid "Clear all flags" msgstr "Alle markeringen wissen" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Niet aangemeld." + +msgid "You cannot review profile flags." +msgstr "U kunt gemarkeerde profielen niet controleren." + #. TRANS: Title for page with a list of profiles that were flagged for review. msgid "Flagged profiles" msgstr "Gemarkeerde profielen" diff --git a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po index 077447bb27..28d2c6937e 100644 --- a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:03+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:43+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -53,6 +53,13 @@ msgstr "Limpar" msgid "Clear all flags" msgstr "Limpar todas as sinalizações" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "" + +msgid "You cannot review profile flags." +msgstr "" + #. TRANS: Title for page with a list of profiles that were flagged for review. msgid "Flagged profiles" msgstr "Perfis sinalizados" diff --git a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po index a37f7add66..f7969de34c 100644 --- a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:03+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:43+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -54,6 +54,13 @@ msgstr "Очистить" msgid "Clear all flags" msgstr "Очистить все флаги" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "" + +msgid "You cannot review profile flags." +msgstr "" + #. TRANS: Title for page with a list of profiles that were flagged for review. msgid "Flagged profiles" msgstr "Отмеченные профили" diff --git a/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po new file mode 100644 index 0000000000..d3bb3ac421 --- /dev/null +++ b/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po @@ -0,0 +1,103 @@ +# Translation of StatusNet - UserFlag to Tagalog (Tagalog) +# Exported from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserFlag\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:43+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-03 13:41:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-userflag\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: AJAX form title for a flagged profile. +msgid "Flagged for review" +msgstr "Iwinatawat para sa muling pagsusuri" + +#. TRANS: Body text for AJAX form when a profile has been flagged for review. +#. TRANS: Message added to a profile if it has been flagged for review. +msgid "Flagged" +msgstr "Iwinatawat" + +#. TRANS: Plugin description. +msgid "" +"This plugin allows flagging of profiles for review and reviewing flagged " +"profiles." +msgstr "" +"Ang pamasak na ito nagpapahintulot ng pagwawatawat ng mga balangkas na " +"susuriing muli at pagsusuring muli ng ibinandilang mga balangkas." + +#. TRANS: Form title for flagging a profile for review. +msgid "Flag" +msgstr "Iwatawat" + +#. TRANS: Form description. +msgid "Flag profile for review." +msgstr "Balangkas ng watawat na susuriing muli." + +#. TRANS: Form title for action on a profile. +msgid "Clear" +msgstr "Hawiin" + +msgid "Clear all flags" +msgstr "Hawiin ang lahat ng mga watawat" + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Hindi nakalagda." + +msgid "You cannot review profile flags." +msgstr "Hindi ka maaaring magsuring muli ng mga watawat ng balangkas." + +#. TRANS: Title for page with a list of profiles that were flagged for review. +msgid "Flagged profiles" +msgstr "Iwinatawat na mga balangkas" + +#. TRANS: Header for moderation menu with action buttons for flagged profiles (like 'sandbox', 'silence', ...). +msgid "Moderate" +msgstr "Katamtaman" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. +#, php-format +msgid "Flagged by %1$s and %2$d other" +msgid_plural "Flagged by %1$s and %2$d others" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %s is a comma separated list of at most 5 user nicknames that flagged. +#, php-format +msgid "Flagged by %s" +msgstr "Iwinatawat ni %s" + +#. TRANS: Server exception given when flags could not be cleared. +#, php-format +msgid "Couldn't clear flags for profile \"%s\"." +msgstr "Hindi mahawi ang mga watawat para sa balangkas na \"%s\"." + +#. TRANS: Title for AJAX form to indicated that flags were removed. +msgid "Flags cleared" +msgstr "Nahawi ang mga watawat" + +#. TRANS: Body element for "flags cleared" form. +msgid "Cleared" +msgstr "Nahawi na" + +#. TRANS: Server exception. +#, php-format +msgid "Couldn't flag profile \"%d\" for review." +msgstr "" +"Hindi maiwatawat ang watawat ng balangkas na \"%d\" para sa muling pagsusuri." diff --git a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po index d746fcf9c8..1d7ce6bb57 100644 --- a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:03+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:43+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -54,6 +54,13 @@ msgstr "Зняти" msgid "Clear all flags" msgstr "Зняти всі позначки" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "" + +msgid "You cannot review profile flags." +msgstr "" + #. TRANS: Title for page with a list of profiles that were flagged for review. msgid "Flagged profiles" msgstr "Відмічені профілі" diff --git a/plugins/UserLimit/UserLimitPlugin.php b/plugins/UserLimit/UserLimitPlugin.php index ab3187299e..ad2c6e363e 100644 --- a/plugins/UserLimit/UserLimitPlugin.php +++ b/plugins/UserLimit/UserLimitPlugin.php @@ -71,7 +71,8 @@ class UserLimitPlugin extends Plugin $cnt = $cls->count(); if ($cnt >= $this->maxUsers) { - $msg = sprintf(_('Cannot register; maximum number of users (%d) reached.'), + // @todo FIXME: i18n issue. Needs plural. + $msg = sprintf(_m('Cannot register; maximum number of users (%d) reached.'), $this->maxUsers); throw new ClientException($msg); diff --git a/plugins/UserLimit/locale/UserLimit.pot b/plugins/UserLimit/locale/UserLimit.pot index a65352f7e2..29567ebb1f 100644 --- a/plugins/UserLimit/locale/UserLimit.pot +++ b/plugins/UserLimit/locale/UserLimit.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,11 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: UserLimitPlugin.php:89 +#: UserLimitPlugin.php:75 +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + +#: UserLimitPlugin.php:90 msgid "Limit the number of users who can register." msgstr "" diff --git a/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po index bf9621b9e5..5e64c1d328 100644 --- a/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:44+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Bevenniñ an niver a implijerien a c'hall en em enskrivañ" diff --git a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po index f2b01a39c3..c36b61b24a 100644 --- a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:44+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Beschränkung der Anzahl von Benutzern, die sich registrieren können." diff --git a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po index cadf0b8fdb..b524e93ceb 100644 --- a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:44+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Limitarla cantidad de usuarios que pueden registrarse." diff --git a/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po index eff579461c..073b2c7971 100644 --- a/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:44+0000\n" "Language-Team: Persian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=1; plural=0;\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "محدودکردن تعداد کاربرانی که می‌توانید ثبت نام کنند." diff --git a/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po index 6e2d04dd5a..353d3e9830 100644 --- a/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:44+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Rajoita niiden käyttäjien lukumäärää, jotka voivat rekisteröityä." diff --git a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po index efae2d2349..586203cf4c 100644 --- a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:44+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Limiter le nombre d’utilisateurs qui peuvent s’inscrire." diff --git a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po index bea5efe44c..e21eca7b64 100644 --- a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:44+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Limitar o número de usuarios que se poden rexistrar." diff --git a/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po index 67f494e720..64e11a4e52 100644 --- a/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "הגבלת מספר המשתמשים שיכולים להירשם." diff --git a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po index 55e24018e3..85da65f5ed 100644 --- a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Limitar le numero de usatores que pote registrar se." diff --git a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po index f5e46225f1..c2cc41abb1 100644 --- a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=1; plural=0;\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Batasi jumlah pengguna yang boleh mendaftar." diff --git a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po index 54ebadc0ec..bedec1c7d9 100644 --- a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "D'Zuel vun de Benotzer, déi sech registréiere kënnen, limitéieren." diff --git a/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po index 5bd6b2f82a..16996f8185 100644 --- a/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Latvian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lv\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n != " "0) ? 1 : 2 );\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Ierobežotais lietotāju skaits, kuri var reģistrēties." diff --git a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po index 26a8ca5a78..bd171f27b4 100644 --- a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po @@ -9,17 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" +"Регистрацијата не може да се изврши. Достигнат е максималниот број на " +"корисници (%d)." + msgid "Limit the number of users who can register." msgstr "Ограничување на бројот на корисници што можат да се регистрираат." diff --git a/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po new file mode 100644 index 0000000000..e129a850a3 --- /dev/null +++ b/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - UserLimit to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserLimit\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-userlimit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "Tidak boleh berdaftar; bilangan pengguna maksimum (%d) dicapai." + +msgid "Limit the number of users who can register." +msgstr "Hadkan jumlah pengguna yang boleh berdaftar." diff --git a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po index 32b4b94f52..7626d4606e 100644 --- a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Begrens antallet brukere som kan registrere seg." diff --git a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po index 3b589d265c..3722dfacab 100644 --- a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po @@ -9,17 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" +"Registreren is niet mogelijk. Het maximale aantal gebruikers (%d) is bereikt." + msgid "Limit the number of users who can register." msgstr "Limiteert het aantal gebruikers dat kan registreren." diff --git a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po index 22fac03dc0..9bf131778c 100644 --- a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Limitar o número de utilizadores que se podem registar." diff --git a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po index 0fc39b94ed..4f229fae95 100644 --- a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Limitar o número de usuários que podem se registrar." diff --git a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po index 1f0488d4d3..d28c081ae8 100644 --- a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po @@ -9,19 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "" "Ограничение количества пользователей, которые могут зарегистрироваться." diff --git a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po index 8e9d17b22d..bdf6987d51 100644 --- a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po @@ -9,17 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:45+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" +"Hindi maipatala; naabot na ang pinakamataas na bilang ng mga tagagamit (%d)." + msgid "Limit the number of users who can register." msgstr "Hangganan ng bilang ng mga tagagamit na makakapagpatala." diff --git a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po index b86308f64b..ceb70ec369 100644 --- a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=1; plural=0;\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Kayıt olabilecek kullanıcı sayısını sınırla." diff --git a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po index d257cdabef..66a795ea0e 100644 --- a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:46+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Обмеження кількості користувачів, котрі можуть зареєструватися." diff --git a/plugins/WikiHashtags/WikiHashtagsPlugin.php b/plugins/WikiHashtags/WikiHashtagsPlugin.php index c6c976b8f4..46ae4bc068 100644 --- a/plugins/WikiHashtags/WikiHashtagsPlugin.php +++ b/plugins/WikiHashtags/WikiHashtagsPlugin.php @@ -81,16 +81,16 @@ class WikiHashtagsPlugin extends Plugin $action->raw($html); $action->elementStart('p'); $action->element('a', array('href' => $editurl, - 'title' => sprintf(_('Edit the article for #%s on WikiHashtags'), $tag)), - _('Edit')); + 'title' => sprintf(_m('Edit the article for #%s on WikiHashtags'), $tag)), + _m('Edit')); $action->element('a', array('href' => 'http://www.gnu.org/copyleft/fdl.html', - 'title' => _('Shared under the terms of the GNU Free Documentation License'), + 'title' => _m('Shared under the terms of the GNU Free Documentation License'), 'rel' => 'license'), 'GNU FDL'); $action->elementEnd('p'); } else { $action->element('a', array('href' => $editurl), - sprintf(_('Start the article for #%s on WikiHashtags'), $tag)); + sprintf(_m('Start the article for #%s on WikiHashtags'), $tag)); } $action->elementEnd('div'); diff --git a/plugins/WikiHashtags/locale/WikiHashtags.pot b/plugins/WikiHashtags/locale/WikiHashtags.pot index 64b1377389..dce931bc93 100644 --- a/plugins/WikiHashtags/locale/WikiHashtags.pot +++ b/plugins/WikiHashtags/locale/WikiHashtags.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,24 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: WikiHashtagsPlugin.php:84 +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +#: WikiHashtagsPlugin.php:85 +msgid "Edit" +msgstr "" + +#: WikiHashtagsPlugin.php:87 +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#: WikiHashtagsPlugin.php:93 +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + #: WikiHashtagsPlugin.php:110 msgid "" "Gets hashtag descriptions from \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po index dd89dccc7f..40fc7b501f 100644 --- a/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po @@ -9,18 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po index 903b4528db..b5dc017217 100644 --- a/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po @@ -9,18 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/he/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/he/LC_MESSAGES/WikiHashtags.po index eaa19419ef..7df369e883 100644 --- a/plugins/WikiHashtags/locale/he/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/he/LC_MESSAGES/WikiHashtags.po @@ -9,18 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po index 9c15a7a537..7112d64b35 100644 --- a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po @@ -9,18 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/id/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/id/LC_MESSAGES/WikiHashtags.po index 2c866734cc..73c5fcb89b 100644 --- a/plugins/WikiHashtags/locale/id/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/id/LC_MESSAGES/WikiHashtags.po @@ -9,18 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=1; plural=0;\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po index 3ab01a098f..bc83296655 100644 --- a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po @@ -9,18 +9,34 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:46+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "Уредете ја статијата за #%s на WikiHashtags" + +msgid "Edit" +msgstr "Уреди" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" +"Споделувањето подлежи на условите на ГНУ-овата лиценца за слободна " +"документација" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "Започнете ја статијата за #%s на WikiHashtags" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po new file mode 100644 index 0000000000..5089ff9d75 --- /dev/null +++ b/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po @@ -0,0 +1,43 @@ +# Translation of StatusNet - WikiHashtags to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - WikiHashtags\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:36+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-03-31 21:41:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-wikihashtags\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "Sunting rencana untuk #%s di WikiHashtags" + +msgid "Edit" +msgstr "Sunting" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "Dikongsikan di bawah terma-terma Lesen Dokumentasi Bebas GNU" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "Cipta rencana untuk #%s di WikiHashtags" + +msgid "" +"Gets hashtag descriptions from WikiHashtags." +msgstr "" +"Mendapatkan keterangan hashtag dari WikiHashtags." diff --git a/plugins/WikiHashtags/locale/nb/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/nb/LC_MESSAGES/WikiHashtags.po index daa2b42123..baec6d4d64 100644 --- a/plugins/WikiHashtags/locale/nb/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/nb/LC_MESSAGES/WikiHashtags.po @@ -9,18 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po index 97b66314db..5261011712 100644 --- a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po @@ -9,18 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:36+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:41:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "Het artikel voor #%s op WikiHashtags bewerken" + +msgid "Edit" +msgstr "Bewerken" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "Gedeeld onder de voorwaarden van de GNU Free Documentation License" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "Het artikel voor #%s op WikiHashtags aanmaken" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/pt/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/pt/LC_MESSAGES/WikiHashtags.po index e03d173a18..aadc18e7bc 100644 --- a/plugins/WikiHashtags/locale/pt/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/pt/LC_MESSAGES/WikiHashtags.po @@ -9,18 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/pt_BR/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/pt_BR/LC_MESSAGES/WikiHashtags.po index 7cb080a737..3ad9315eec 100644 --- a/plugins/WikiHashtags/locale/pt_BR/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/pt_BR/LC_MESSAGES/WikiHashtags.po @@ -9,19 +9,33 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/ru/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ru/LC_MESSAGES/WikiHashtags.po index 5558035717..929eef3de8 100644 --- a/plugins/WikiHashtags/locale/ru/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ru/LC_MESSAGES/WikiHashtags.po @@ -9,19 +9,33 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po index 8de78b0943..743cabfc66 100644 --- a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po @@ -9,18 +9,34 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:46+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:50+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "Baguhin ang artikulo para sa #%s na nasa WikiHashtags" + +msgid "Edit" +msgstr "Baguhin" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" +"Ibinabahagi sa ilalim ng mga pagsasaad ng Lisensiya ng Malayang " +"Dokumentasyon ng GNU" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "Simulan ang artikulo para sa #%s na nasa WikiHashtags" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/tr/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/tr/LC_MESSAGES/WikiHashtags.po index 55f04432ed..782c2ebd14 100644 --- a/plugins/WikiHashtags/locale/tr/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/tr/LC_MESSAGES/WikiHashtags.po @@ -9,18 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=1; plural=0;\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po index e946066239..d1223be086 100644 --- a/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po @@ -9,19 +9,33 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHowProfile/locale/WikiHowProfile.pot b/plugins/WikiHowProfile/locale/WikiHowProfile.pot index 98b80812c5..4d738ef069 100644 --- a/plugins/WikiHowProfile/locale/WikiHowProfile.pot +++ b/plugins/WikiHowProfile/locale/WikiHowProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po index 024d30bbde..00b9df29d3 100644 --- a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:36+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po index 056672afdc..6a4b98b1f0 100644 --- a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:36+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po index 9fbcf5e2c5..845b603e33 100644 --- a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:36+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po new file mode 100644 index 0000000000..9b07452d7c --- /dev/null +++ b/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po @@ -0,0 +1,37 @@ +# Translation of StatusNet - WikiHowProfile to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - WikiHowProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:36+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "" +"Fetches avatar and other profile information for WikiHow users when setting " +"up an account via OpenID." +msgstr "" +"Mengambil avatar dan maklumat profil yang lain untuk pengguna WikiHow " +"apabila membuka akaun melalui OpenID." + +#, php-format +msgid "Invalid avatar URL %s." +msgstr "URL avatar %s tidak sah." + +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Avatar tidak dapat diambil dari %s." diff --git a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po index ccd55bcda1..190d9726e6 100644 --- a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:36+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po index 9dd5ca142f..35a22a3f5f 100644 --- a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:36+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po index 899f540018..0d15329a36 100644 --- a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:36+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po index 8e0e8cc0b9..ee83e0b761 100644 --- a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:36+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po index a8ab4a6c39..af655920ec 100644 --- a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:37+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/XCache/locale/XCache.pot b/plugins/XCache/locale/XCache.pot index c6226a8f78..8ac29f6e63 100644 --- a/plugins/XCache/locale/XCache.pot +++ b/plugins/XCache/locale/XCache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/XCache/locale/br/LC_MESSAGES/XCache.po b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po index 57fca64184..1ea6f461e7 100644 --- a/plugins/XCache/locale/br/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:37+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po index 6955b53bfa..31213f5a31 100644 --- a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:37+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po b/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po index dffbb164aa..e670932490 100644 --- a/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:37+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po index 63a35520db..d981d1d54c 100644 --- a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:37+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po index 3fe9e6cda9..97c143164c 100644 --- a/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:37+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/he/LC_MESSAGES/XCache.po b/plugins/XCache/locale/he/LC_MESSAGES/XCache.po index 2ebb4d02d7..85c89a6662 100644 --- a/plugins/XCache/locale/he/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/he/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:07+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:37+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po index 69582bc4a8..47a1a8c77b 100644 --- a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:07+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:37+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/id/LC_MESSAGES/XCache.po b/plugins/XCache/locale/id/LC_MESSAGES/XCache.po index 3d1e611feb..05c3feb9c4 100644 --- a/plugins/XCache/locale/id/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/id/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:07+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:37+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po index c08192a5ce..5276a1b094 100644 --- a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:07+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:37+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po new file mode 100644 index 0000000000..1110ac9843 --- /dev/null +++ b/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - XCache to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - XCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:38+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-xcache\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "" +"Use the XCache variable cache to " +"cache query results." +msgstr "" +"Gunakan ''cache'' pembolehubah XCache untuk menyimpan hasil pertanyaan dalam ''cache''." diff --git a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po index 1bed48bf19..267a24f0c3 100644 --- a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:07+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:38+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po index 76ff253e73..bc52e7541f 100644 --- a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:07+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:38+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po b/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po index 01c46e3265..757cacdd3c 100644 --- a/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:07+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:38+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po index b20f75b2a8..9210a390cb 100644 --- a/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:07+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:38+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po index a7d68c18f3..9df02fac0a 100644 --- a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:07+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:38+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po index 818cb4c2ad..15c8c7a6fd 100644 --- a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:07+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:38+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po index a349226e4c..d1abd353ca 100644 --- a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:07+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:38+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po index 3d1796cdea..9a84c7fcc8 100644 --- a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:07+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:38+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/Xmpp/XmppPlugin.php b/plugins/Xmpp/XmppPlugin.php index 2002541782..f7df6812cf 100644 --- a/plugins/Xmpp/XmppPlugin.php +++ b/plugins/Xmpp/XmppPlugin.php @@ -354,8 +354,9 @@ class XmppPlugin extends ImPlugin $xs->text(" "); $xs->element('a', array( 'href'=>common_local_url('conversation', - array('id' => $notice->conversation)).'#notice-'.$notice->id - ),sprintf(_('[%s]'),$notice->id)); + array('id' => $notice->conversation)).'#notice-'.$notice->id), + // TRANS: %s is a notice ID. + sprintf(_m('[%s]'),$notice->id)); $xs->elementEnd('body'); $xs->elementEnd('html'); diff --git a/plugins/Xmpp/locale/Xmpp.pot b/plugins/Xmpp/locale/Xmpp.pot index c88d438dfa..42ed40660f 100644 --- a/plugins/Xmpp/locale/Xmpp.pot +++ b/plugins/Xmpp/locale/Xmpp.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -24,7 +24,13 @@ msgstr "" msgid "XMPP/Jabber/GTalk" msgstr "" -#: XmppPlugin.php:429 +#. TRANS: %s is a notice ID. +#: XmppPlugin.php:359 +#, php-format +msgid "[%s]" +msgstr "" + +#: XmppPlugin.php:430 msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po index f034d942a7..b5f520ba82 100644 --- a/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:08+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:39+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:41:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" @@ -27,6 +27,11 @@ msgstr "Inviar me un message pro publicar un nota" msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/GTalk" +#. TRANS: %s is a notice ID. +#, php-format +msgid "[%s]" +msgstr "" + msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po index 9ae4ae315b..518ef37ced 100644 --- a/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:50+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" @@ -27,6 +27,11 @@ msgstr "Испрати ми порака за да објавам забелеш msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/GTalk" +#. TRANS: %s is a notice ID. +#, php-format +msgid "[%s]" +msgstr "[%s]" + msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/ms/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/ms/LC_MESSAGES/Xmpp.po new file mode 100644 index 0000000000..224eff826b --- /dev/null +++ b/plugins/Xmpp/locale/ms/LC_MESSAGES/Xmpp.po @@ -0,0 +1,40 @@ +# Translation of StatusNet - Xmpp to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Xmpp\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:39+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-03-31 21:41:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-xmpp\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Send me a message to post a notice" +msgstr "Hantarkan pesanan kepada saya untuk mengirim notis" + +msgid "XMPP/Jabber/GTalk" +msgstr "XMPP/Jabber/GTalk" + +#. TRANS: %s is a notice ID. +#, php-format +msgid "[%s]" +msgstr "[%s]" + +msgid "" +"The XMPP plugin allows users to send and receive notices over the XMPP/" +"Jabber network." +msgstr "" +"Pemalam XMPP membolehkan pengguna menghantar dan menerima notis menerusi " +"rangkaian XMPP/Jabber." diff --git a/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po index ed7f195427..23d937cbe3 100644 --- a/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:08+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:39+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:41:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" @@ -27,6 +27,11 @@ msgstr "Mij een bericht sturen om een mededeling te verzenden" msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/Google Talk" +#. TRANS: %s is a notice ID. +#, php-format +msgid "[%s]" +msgstr "[%s]" + msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/pt/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/pt/LC_MESSAGES/Xmpp.po index 87e2bc20b1..06a788e745 100644 --- a/plugins/Xmpp/locale/pt/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/pt/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:08+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:39+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:41:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" @@ -27,6 +27,11 @@ msgstr "Envia-me uma mensagem para postar uma notícia" msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/GTalk" +#. TRANS: %s is a notice ID. +#, php-format +msgid "[%s]" +msgstr "" + msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/sv/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/sv/LC_MESSAGES/Xmpp.po index 904273a981..b5a862337a 100644 --- a/plugins/Xmpp/locale/sv/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/sv/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:08+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:39+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:41:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" @@ -27,6 +27,11 @@ msgstr "" msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/GTalk" +#. TRANS: %s is a notice ID. +#, php-format +msgid "[%s]" +msgstr "" + msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po index c59072bcd1..58e9dbd447 100644 --- a/plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:07:39+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:49+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:42:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" @@ -27,6 +27,11 @@ msgstr "Padalhan ako ng isang mensahe upang makapagpaskil ng isang pabatid" msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/GTalk" +#. TRANS: %s is a notice ID. +#, php-format +msgid "[%s]" +msgstr "[%s]" + msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/uk/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/uk/LC_MESSAGES/Xmpp.po index 2a4af69065..1971185395 100644 --- a/plugins/Xmpp/locale/uk/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/uk/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:08+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:39+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:41:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" @@ -28,6 +28,11 @@ msgstr "Надішліть мені повідомлення, щоб опубл msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/GTalk" +#. TRANS: %s is a notice ID. +#, php-format +msgid "[%s]" +msgstr "" + msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/YammerImport/locale/YammerImport.pot b/plugins/YammerImport/locale/YammerImport.pot index c6203ec2c9..320bb060f8 100644 --- a/plugins/YammerImport/locale/YammerImport.pot +++ b/plugins/YammerImport/locale/YammerImport.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po index 82f0f9c6d0..c67c4f92d5 100644 --- a/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:42+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po index a911dfe33c..17faea5d1a 100644 --- a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:42+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po index 1da81d50e4..727110c887 100644 --- a/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:43+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po index 341a05392a..1c007ad5d6 100644 --- a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:43+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po index 2d36ba6124..f5de1ddcde 100644 --- a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:43+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/ms/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ms/LC_MESSAGES/YammerImport.po new file mode 100644 index 0000000000..381a6d3127 --- /dev/null +++ b/plugins/YammerImport/locale/ms/LC_MESSAGES/YammerImport.po @@ -0,0 +1,207 @@ +# Translation of StatusNet - YammerImport to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - YammerImport\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:43+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-yammerimport\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Connect to Yammer" +msgstr "" + +msgid "Yammer Import" +msgstr "Import dari Yammer" + +msgid "" +"This Yammer import tool is still undergoing testing, and is incomplete in " +"some areas. Currently user subscriptions and group memberships are not " +"transferred; in the future this may be supported for imports done by " +"verified administrators on the Yammer side." +msgstr "" + +msgid "Paused from admin panel." +msgstr "Berhenti dari panel pentadbir." + +msgid "Yammer import" +msgstr "Import dari Yammer" + +msgid "Yammer" +msgstr "Yammer" + +msgid "Expertise:" +msgstr "Kepakaran:" + +#, php-format +msgid "Invalid avatar URL %s." +msgstr "URL avatar %s tidak sah." + +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Avatar tidak dapat diambil dari %s." + +msgid "Start authentication" +msgstr "Mulakan pengesahan" + +msgid "Request authorization to connect to Yammer account" +msgstr "Minta kebenaran untuk bersambung dengan akaun Yammer" + +msgid "Change API key" +msgstr "Tukar kunci API" + +msgid "Initialize" +msgstr "Mulakan" + +msgid "No import running" +msgstr "Proses import tidak berjalan" + +msgid "Initiated Yammer server connection..." +msgstr "Sambungan pelayan Yammer dimulakan..." + +msgid "Awaiting authorization..." +msgstr "Menunggu kebenaran..." + +msgid "Connected." +msgstr "Bersambung." + +msgid "Import user accounts" +msgstr "Import akaun pengguna" + +#, php-format +msgid "Importing %d user..." +msgid_plural "Importing %d users..." +msgstr[0] "" + +#, php-format +msgid "Imported %d user." +msgid_plural "Imported %d users." +msgstr[0] "" + +msgid "Import user groups" +msgstr "" + +#, php-format +msgid "Importing %d group..." +msgid_plural "Importing %d groups..." +msgstr[0] "" + +#, php-format +msgid "Imported %d group." +msgid_plural "Imported %d groups." +msgstr[0] "" + +msgid "Prepare public notices for import" +msgstr "" + +#, php-format +msgid "Preparing %d notice..." +msgid_plural "Preparing %d notices..." +msgstr[0] "" + +#, php-format +msgid "Prepared %d notice." +msgid_plural "Prepared %d notices." +msgstr[0] "" + +msgid "Import public notices" +msgstr "" + +#, php-format +msgid "Importing %d notice..." +msgid_plural "Importing %d notices..." +msgstr[0] "" + +#, php-format +msgid "Imported %d notice." +msgid_plural "Imported %d notices." +msgstr[0] "" + +msgid "Done" +msgstr "Siap" + +msgid "Import is complete!" +msgstr "Proses import selesai!" + +msgid "Import status" +msgstr "" + +msgid "Waiting..." +msgstr "Menunggu..." + +msgid "Reset import state" +msgstr "" + +msgid "Pause import" +msgstr "Hentikan import" + +#, php-format +msgid "Encountered error \"%s\"" +msgstr "" + +msgid "Paused" +msgstr "Terhenti" + +msgid "Continue" +msgstr "Sambung" + +msgid "Abort import" +msgstr "" + +msgid "" +"Follow this link to confirm authorization at Yammer; you will be prompted to " +"log in if necessary:" +msgstr "" + +msgid "Open Yammer authentication window" +msgstr "" + +msgid "Copy the verification code you are given below:" +msgstr "" + +msgid "Verification code:" +msgstr "" + +msgid "Save code and begin import" +msgstr "" + +msgid "Yammer API registration" +msgstr "" + +msgid "" +"Before we can connect to your Yammer network, you will need to register the " +"importer as an application authorized to pull data on your behalf. This " +"registration will work only for your own network. Follow this link to " +"register the app at Yammer; you will be prompted to log in if necessary:" +msgstr "" + +msgid "Open Yammer application registration form" +msgstr "" + +msgid "Copy the consumer key and secret you are given into the form below:" +msgstr "" + +msgid "Consumer key:" +msgstr "Kunci pengguna:" + +msgid "Consumer secret:" +msgstr "Rahsia pengguna:" + +msgid "Save" +msgstr "Simpan" + +msgid "Save these consumer keys" +msgstr "Simpan kunci pengguna ini" diff --git a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po index 4d406a145f..b1251b1eef 100644 --- a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:43+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po index f0dfb96960..503a3de0d3 100644 --- a/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:43+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po new file mode 100644 index 0000000000..f7b615418c --- /dev/null +++ b/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po @@ -0,0 +1,229 @@ +# Translation of StatusNet - YammerImport to Tagalog (Tagalog) +# Exported from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - YammerImport\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:53+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-01 21:07:20+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-yammerimport\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Connect to Yammer" +msgstr "Umugnay sa Yammer" + +msgid "Yammer Import" +msgstr "Pang-angkat ng Yammer" + +msgid "" +"This Yammer import tool is still undergoing testing, and is incomplete in " +"some areas. Currently user subscriptions and group memberships are not " +"transferred; in the future this may be supported for imports done by " +"verified administrators on the Yammer side." +msgstr "" +"Ang kasangkapang pang-angkat na ito ng Yammer ay sumasailalim pa rin ng " +"pagsubok, at hindi buo sa loob ng ilang mga lugar. Pangkasalukuyang hindi " +"naililipat ang mga pagpapasipi ng tagagamit at pagsapi sa mga pangkat; " +"maaaring tangkilikin ito sa hinaharap para sa mga pag-aangkat na ginagawa ng " +"napatunayang mga tagapangasiwa na nasa gawi ng Yammer." + +msgid "Paused from admin panel." +msgstr "Pansamantalang itinigil mula sa inampalan ng tagapangasiwa." + +msgid "Yammer import" +msgstr "Pang-angkat ng Yammer" + +msgid "Yammer" +msgstr "Yammer" + +msgid "Expertise:" +msgstr "Kadalubhasaan:" + +#, php-format +msgid "Invalid avatar URL %s." +msgstr "Hindi katanggap-tanggap na URL ng abatar ang %s." + +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Hindi nagawang damputin ang abatar mula sa %s." + +msgid "Start authentication" +msgstr "Simulan ang pagpapatotoo" + +msgid "Request authorization to connect to Yammer account" +msgstr "Humiling ng pahintulot upang makaugnay sa akawnt ng Yammer" + +msgid "Change API key" +msgstr "Baguhin ang susi ng API" + +msgid "Initialize" +msgstr "Magpasimula" + +msgid "No import running" +msgstr "Walang tumatakbong pag-aangkat" + +msgid "Initiated Yammer server connection..." +msgstr "Pinasimulan ang pag-ugnay sa tagapaghain ng Yammer..." + +msgid "Awaiting authorization..." +msgstr "Naghihintay ng kapahintulutan..." + +msgid "Connected." +msgstr "Naiugnay na." + +msgid "Import user accounts" +msgstr "Angkatin ang mga akawnt ng tagagamit" + +#, php-format +msgid "Importing %d user..." +msgid_plural "Importing %d users..." +msgstr[0] "Inaangkat ang tagagamit ng %d... " +msgstr[1] "Inaangkat ang mga tagagamit ng %d..." + +#, php-format +msgid "Imported %d user." +msgid_plural "Imported %d users." +msgstr[0] "Naangkat na tagagamit ng %d." +msgstr[1] "Naangkat na mga tagagamit ng %d." + +msgid "Import user groups" +msgstr "Angkatin ang mga pangkat ng tagagamit" + +#, php-format +msgid "Importing %d group..." +msgid_plural "Importing %d groups..." +msgstr[0] "Inaangkat ang pangkat ng %d... " +msgstr[1] "Inaangkat ang mga pangkat ng %d..." + +#, php-format +msgid "Imported %d group." +msgid_plural "Imported %d groups." +msgstr[0] "Naangkat na pangkat ng %d." +msgstr[1] "Naangkat na mga pangkat ng %d." + +msgid "Prepare public notices for import" +msgstr "Ihanda ang aangkating mga pabatid na pangmadla" + +#, php-format +msgid "Preparing %d notice..." +msgid_plural "Preparing %d notices..." +msgstr[0] "" +msgstr[1] "" + +#, php-format +msgid "Prepared %d notice." +msgid_plural "Prepared %d notices." +msgstr[0] "" +msgstr[1] "" + +msgid "Import public notices" +msgstr "Angkatin ang mga pabatid na pangmadla" + +#, php-format +msgid "Importing %d notice..." +msgid_plural "Importing %d notices..." +msgstr[0] "" +msgstr[1] "" + +#, php-format +msgid "Imported %d notice." +msgid_plural "Imported %d notices." +msgstr[0] "" +msgstr[1] "" + +msgid "Done" +msgstr "Nagawa na" + +msgid "Import is complete!" +msgstr "Buo na ang pag-aangkat!" + +msgid "Import status" +msgstr "Katayuan ng pag-aangkat" + +msgid "Waiting..." +msgstr "Naghihintay..." + +msgid "Reset import state" +msgstr "Muling itakda ang katayuan ng pag-aangkat" + +msgid "Pause import" +msgstr "Pansamantalang itigil ang pag-aangkat" + +#, php-format +msgid "Encountered error \"%s\"" +msgstr "Nakatagpo ng kamaliang \"%s\"" + +msgid "Paused" +msgstr "Pansamantalang inihinto" + +msgid "Continue" +msgstr "Magpatuloy" + +msgid "Abort import" +msgstr "Pigilin ang pag-angkat" + +msgid "" +"Follow this link to confirm authorization at Yammer; you will be prompted to " +"log in if necessary:" +msgstr "" +"Sundan ang kawing na ito upang tiyakin ang pahintulot sa Yammer; ikay ay " +"uudyuking lumagdang papasok kung kailangan:" + +msgid "Open Yammer authentication window" +msgstr "Buksan ang bintana ng pagpapatotoo ng Yammer" + +msgid "Copy the verification code you are given below:" +msgstr "Kopyahin ang kodigo ng pagpapatotoo na ibinigay sa iyo sa ibaba:" + +msgid "Verification code:" +msgstr "Kodigo ng pagpapatotoo:" + +msgid "Save code and begin import" +msgstr "Sagipin ang kodigo at simulan ang pag-aangkat" + +msgid "Yammer API registration" +msgstr "Pagpapatala sa API ng Yammer" + +msgid "" +"Before we can connect to your Yammer network, you will need to register the " +"importer as an application authorized to pull data on your behalf. This " +"registration will work only for your own network. Follow this link to " +"register the app at Yammer; you will be prompted to log in if necessary:" +msgstr "" +"Bago kami maka-ugnay sa lambatan mo ng Yammer, kakailanganin mong ipatala " +"ang pang-angkat bilang isang aplikasyon na may pahintulot na humila ng dato " +"sa ilalim ng iyong pangalan. Ang pagpapatalang ito ay gagana lamang para sa " +"iyong lambatan. Sundan ang kawing na ito upang ipatala ang aplikasyon sa " +"Yammer; uudyukin kang lumagdang papasok kung kinakailangan:" + +msgid "Open Yammer application registration form" +msgstr "Buksan ang pormularyo ng pagpapatala ng aplikasyon ng Yammer" + +msgid "Copy the consumer key and secret you are given into the form below:" +msgstr "" +"Kopyahin ang susi at lihim ng tagaubos na ibinigay sa iyo papasok sa " +"pormularyong nasa ibaba:" + +msgid "Consumer key:" +msgstr "Susi ng tagaubos:" + +msgid "Consumer secret:" +msgstr "Lihim ng tagaubos:" + +msgid "Save" +msgstr "Sagipin" + +msgid "Save these consumer keys" +msgstr "Sagipin ang mga susing ito ng tagaubos" diff --git a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po index 3aee9757e4..462dacfa69 100644 --- a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:12+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:43+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po index 982672b4d2..85fec7f670 100644 --- a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:12+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:43+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/scripts/update_po_templates.php b/scripts/update_po_templates.php index a0ab5819d5..a5730e6d2f 100755 --- a/scripts/update_po_templates.php +++ b/scripts/update_po_templates.php @@ -43,6 +43,7 @@ xgettext \ --keyword="_m:1c,2,3,4t" \ --keyword="pgettext:1c,2" \ --keyword="npgettext:1c,2,3" \ + index.php \ actions/*.php \ classes/*.php \ lib/*.php \